mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-07 13:11:29 +00:00
Minor fix
This commit is contained in:
@@ -66,12 +66,7 @@ def unescape(string, dbms):
|
||||
"Sybase": Sybase.unescape
|
||||
}
|
||||
|
||||
if isinstance(dbms, list):
|
||||
dbmsunescaper = unescaper[dbms[0]]
|
||||
else:
|
||||
dbmsunescaper = unescaper[dbms]
|
||||
|
||||
return dbmsunescaper(string)
|
||||
return unescaper[dbms](string)
|
||||
|
||||
def checkSqlInjection(place, parameter, value):
|
||||
# Store here the details about boundaries and payload used to
|
||||
|
||||
Reference in New Issue
Block a user