mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-07 00:42:23 +01:00
Using binary data in dummy mode
This commit is contained in:
parent
1e731f87a4
commit
79d6a0e9c9
1 changed files with 1 additions and 1 deletions
|
|
@ -184,7 +184,7 @@ class Connect(object):
|
|||
cpuThrottle(conf.cpuThrottle)
|
||||
|
||||
if conf.dummy:
|
||||
return randomStr(int(randomInt())), {}, int(randomInt())
|
||||
return randomStr(int(randomInt()), alphabet=[chr(_) for _ in xrange(256)]), {}, int(randomInt())
|
||||
|
||||
threadData = getCurrentThreadData()
|
||||
with kb.locks.request:
|
||||
|
|
|
|||
Loading…
Reference in a new issue