Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7cad3cb

Browse files
committed
Minor code refactoring
1 parent 9ea72f9 commit 7cad3cb

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

doc/ChangeLog

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

lib/core/common.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)