mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
Fixes #3403
This commit is contained in:
parent
2e5edce8b9
commit
38684ec220
3 changed files with 7 additions and 4 deletions
|
|
@ -408,7 +408,10 @@ def _setRequestParams():
|
|||
message += "Do you want sqlmap to automatically update it in further requests? [y/N] "
|
||||
|
||||
if readInput(message, default='N', boolean=True):
|
||||
conf.csrfToken = getUnicode(parameter)
|
||||
class _(unicode):
|
||||
pass
|
||||
conf.csrfToken = _(re.escape(getUnicode(parameter)))
|
||||
conf.csrfToken._original = getUnicode(parameter)
|
||||
break
|
||||
|
||||
def _setHashDB():
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue