mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-24 18:43:47 +03:00
Minor bug fix to correctly dump table entries when the column is provided
This commit is contained in:
parent
be599d5a33
commit
2a01de3f0b
|
@ -1,3 +1,11 @@
|
|||
sqlmap (0.6.3-1) stable; urgency=low
|
||||
|
||||
* Minor bug fix to correctly dump table entries when the column is
|
||||
provided;
|
||||
|
||||
-- Bernardo Damele A. G. <bernardo.damele@gmail.com> Day, X YYY 2008 10:00:00 +0000
|
||||
|
||||
|
||||
sqlmap (0.6.2-1) stable; urgency=low
|
||||
|
||||
* Major bug fix to correctly dump tables entries when --stop is not
|
||||
|
|
|
@ -15,6 +15,9 @@ Stefano Di Paola <stefano.dipaola@wisec.it>
|
|||
Adam Faheem <faheem.adam@is.co.za>
|
||||
for reporting a few bugs
|
||||
|
||||
JimForster <jimforster@goldenwest.com>
|
||||
for reporting a bug
|
||||
|
||||
Rong-En Fan <rafan@freebsd.org>
|
||||
for commiting the sqlmap 0.5 port to the official FreeBSD project
|
||||
repository
|
||||
|
|
|
@ -824,6 +824,7 @@ class Enumeration:
|
|||
rootQuery = queries[kb.dbms].dumpTable
|
||||
|
||||
if conf.col:
|
||||
colList = conf.col.split(",")
|
||||
self.cachedColumns[conf.db] = {}
|
||||
self.cachedColumns[conf.db][conf.tbl] = {}
|
||||
for column in colList:
|
||||
|
@ -842,8 +843,6 @@ class Enumeration:
|
|||
|
||||
logMsg = "fetching"
|
||||
if conf.col:
|
||||
colList = conf.col.split(",")
|
||||
colString = ", ".join(column for column in colList)
|
||||
logMsg += " columns '%s'" % colString
|
||||
logMsg += " entries for table '%s'" % conf.tbl
|
||||
logMsg += " on database '%s'" % conf.db
|
||||
|
|
Loading…
Reference in New Issue
Block a user