mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-03-03 19:55:47 +03:00
Fix for an Issue #687
This commit is contained in:
parent
73f79f5481
commit
bc4369be06
|
@ -1740,7 +1740,7 @@ def _useWizardInterface():
|
||||||
message = "POST data (--data) [Enter for None]: "
|
message = "POST data (--data) [Enter for None]: "
|
||||||
conf.data = readInput(message, default=None)
|
conf.data = readInput(message, default=None)
|
||||||
|
|
||||||
if filter(lambda x: '=' in str(x), [conf.url, conf.data]) or '*' in conf.url:
|
if filter(lambda _: '=' in unicode(_), (conf.url, conf.data)) or '*' in conf.url:
|
||||||
break
|
break
|
||||||
else:
|
else:
|
||||||
warnMsg = "no GET and/or POST parameter(s) found for testing "
|
warnMsg = "no GET and/or POST parameter(s) found for testing "
|
||||||
|
|
Loading…
Reference in New Issue
Block a user