mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-03-03 11:45:46 +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]: "
|
||||
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
|
||||
else:
|
||||
warnMsg = "no GET and/or POST parameter(s) found for testing "
|
||||
|
|
Loading…
Reference in New Issue
Block a user