# Google Dork: "-- table `users` | `category` | `structure`" ext:sql | ext:txt
# Title: Sensitive Directories
# Date: 2020-10-18
# Exploit Author: Tayfun AKYILDIZ
# LinkedIn: https://www.linkedin.com/in/tayfun-akyildiz
# Sensitive directories and more...
--
-- Table structure for table `Users`
--
CREATE TABLE IF NOT EXISTS `Users` (
`UserID` int(10) unsigned NOT NULL auto_increment,
`UserName` char(32) NOT NULL,
`Pwd` char(41) NOT NULL,
`DatabaseName` char(32) NOT NULL,
`ExpirationDate` date NOT NULL,
`Path` char(64) default NULL,
PRIMARY KEY (`UserID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;