[sqlmap-users] (no subject)
Brought to you by:
inquisb
From: Marco M. <mm...@gm...> - 2012-07-03 20:35:05
|
Hello sqlMap I thought of an improvement, because when you retrieve the databases (or tables or columns) does not enumerate the number of the item? ====================================== current sqlMap ====================================== [22:15:39] [INFO] the back-end DBMS is Microsoft SQL Server web server operating system: Windows 2003 web application technology: ASP.NET, Microsoft IIS 6.0, ASP back-end DBMS: Microsoft SQL Server 2005 [22:15:39] [INFO] fetching columns for table 'myTable' in database 'mystore' [22:15:49] [WARNING] reflective value(s) found and filtering out [22:15:49] [INFO] the SQL query used returns 253 entries [22:16:00] [INFO] retrieved: citta [22:16:07] [INFO] retrieved: varchar [22:16:13] [INFO] retrieved: cognome [22:16:22] [INFO] retrieved: nvarchar .... ====================================== my idea (modify in green) ====================================== [22:15:39] [INFO] the back-end DBMS is Microsoft SQL Server web server operating system: Windows 2003 web application technology: ASP.NET, Microsoft IIS 6.0, ASP back-end DBMS: Microsoft SQL Server 2005 [22:15:39] [INFO] fetching columns for table 'myTable' in database 'mystore' [22:15:49] [WARNING] reflective value(s) found and filtering out [22:15:49] [INFO] the SQL query used returns 253 entries [22:16:00] [INFO] retrieved #1: citta [22:16:07] [INFO] retrieved #2: varchar [22:16:13] [INFO] retrieved #3: cognome [22:16:22] [INFO] retrieved #4: nvarchar .... lot a kiss |