mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 12:41:30 +00:00
few bug fixes (NTLM credential parsing was wrong), some switch reordering (few Misc to General), implemented --check-waf switch (irony is that this will also be called highly experimental/unstable while other things will be called "major/turbo/super bug fix/implementation")
This commit is contained in:
@@ -8,6 +8,7 @@ See the file 'doc/COPYING' for copying permission
|
||||
"""
|
||||
|
||||
import codecs
|
||||
import copy
|
||||
import ctypes
|
||||
import inspect
|
||||
import logging
|
||||
@@ -1924,7 +1925,7 @@ def pushValue(value):
|
||||
Push value to the stack (thread dependent)
|
||||
"""
|
||||
|
||||
getCurrentThreadData().valueStack.append(value)
|
||||
getCurrentThreadData().valueStack.append(copy.deepcopy(value))
|
||||
|
||||
def popValue():
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user