mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-01-23 15:54:24 +03:00
Patch for an Issue #697
This commit is contained in:
parent
babe49f086
commit
24954776a5
|
@ -2215,16 +2215,16 @@ def urlencode(value, safe="%&=-_", convall=False, limit=False, spaceplus=False):
|
|||
if conf.get("direct"):
|
||||
return value
|
||||
|
||||
if Backend.isDbms(DBMS.MSSQL) and not kb.tamperFunctions and any(ord(_) > 255 for _ in value):
|
||||
warnMsg = "if you experience problems with "
|
||||
warnMsg += "non-ASCII identifier names "
|
||||
warnMsg += "you are advised to rerun with '--tamper=charunicodeencode'"
|
||||
singleTimeWarnMessage(warnMsg)
|
||||
|
||||
count = 0
|
||||
result = None if value is None else ""
|
||||
|
||||
if value:
|
||||
if Backend.isDbms(DBMS.MSSQL) and not kb.tamperFunctions and any(ord(_) > 255 for _ in value):
|
||||
warnMsg = "if you experience problems with "
|
||||
warnMsg += "non-ASCII identifier names "
|
||||
warnMsg += "you are advised to rerun with '--tamper=charunicodeencode'"
|
||||
singleTimeWarnMessage(warnMsg)
|
||||
|
||||
if convall or safe is None:
|
||||
safe = ""
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user