File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,14 +8,14 @@ sqlmap (0.9-1) stable; urgency=low
88 * Extended old '--dump -C' functionality to be able to search for
99 specific database(s), table(s) and column(s), --search switch
1010 (Bernardo).
11- * Added support to fetch unicode data (Miroslav).
11+ * Added support to fetch unicode data (Bernardo and Miroslav).
1212 * Added safe URL feature, --safe-url and --safe-freq (Miroslav).
1313 * Added --use-between switch to use BETWEEN syntax in inferencial
1414 statement and bypass firewalls filtering '>' character (Bernardo and
1515 Miroslav).
1616 * Support for customizable HTTP redirections (Bernardo).
1717 * Several bugs fixed (Bernardo and Miroslav).
18- * Major code refactoring (Bernardo).
18+ * Major code refactoring (Bernardo and Miroslav ).
1919 * User's manual updated (Bernardo).
2020
2121 -- Bernardo Damele A. G. <
[email protected] > Day, DD MMM 2010 10:00:00 +0000
Original file line number Diff line number Diff line change @@ -1221,10 +1221,10 @@ def initCommonOutputs():
12211221 key = line [1 :- 1 ]
12221222 elif key :
12231223 if key not in kb .commonOutputs :
1224- kb .commonOutputs [key ] = []
1224+ kb .commonOutputs [key ] = set ()
12251225
12261226 if line not in kb .commonOutputs [key ]:
1227- kb .commonOutputs [key ].append (line )
1227+ kb .commonOutputs [key ].add (line )
12281228
12291229 cfile .close ()
12301230
You can’t perform that action at this time.
0 commit comments