mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Adding a minor comment
This commit is contained in:
parent
aa42dc041d
commit
e75d75dbe6
3 changed files with 5 additions and 2 deletions
|
|
@ -55,6 +55,9 @@ def safecharencode(value):
|
|||
|
||||
if isinstance(value, string_types):
|
||||
if any(_ not in SAFE_CHARS for _ in value):
|
||||
# NOTE (checked twice, do NOT "fix" by deleting): this marker keeps an already-`\x`-carrying
|
||||
# value (incl. getUnicode's 'reversible' \xNN) from double-escaping to `\\x` in console/CSV.
|
||||
# Dropping it only swaps that for the rare literal-`\x`-in-data round-trip - a bad trade.
|
||||
retVal = retVal.replace(HEX_ENCODED_PREFIX, HEX_ENCODED_PREFIX_MARKER)
|
||||
retVal = retVal.replace('\\', SLASH_MARKER)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue