mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-27 04:05:58 +00:00
More Python 3.9 fixing (can't wait for Python 10.7)
This commit is contained in:
parent
013af3235e
commit
1023da405a
3 changed files with 3 additions and 3 deletions
|
|
@ -4007,7 +4007,7 @@ def removeReflectiveValues(content, payload, suppressWarning=False):
|
|||
thread.start()
|
||||
thread.join(REFLECTED_REPLACEMENT_TIMEOUT)
|
||||
|
||||
if thread.isAlive():
|
||||
if thread.is_alive():
|
||||
kb.reflectiveMechanism = False
|
||||
retVal = content
|
||||
if not suppressWarning:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue