mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 01:26:42 +03:00
Fix for an Issue #100
This commit is contained in:
parent
ffbbb10abb
commit
c96e44b30c
|
@ -538,14 +538,10 @@ def __setBulkMultipleTargets():
|
|||
errMsg += "does not exist"
|
||||
raise sqlmapFilePathException, errMsg
|
||||
|
||||
f = open(conf.bulkFile, 'r')
|
||||
|
||||
for line in f.xreadlines():
|
||||
for line in getFileItems(conf.bulkFile):
|
||||
if re.search(r"[^ ]+\?(.+)", line, re.I):
|
||||
kb.targetUrls.add((line.strip(), None, None, None))
|
||||
|
||||
f.close()
|
||||
|
||||
def __findPageForms():
|
||||
if not conf.forms or conf.crawlDepth:
|
||||
return
|
||||
|
|
Loading…
Reference in New Issue
Block a user