mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Trivial update#
This commit is contained in:
parent
30f8c30d6a
commit
31fa7f6c94
8 changed files with 22 additions and 22 deletions
|
|
@ -180,7 +180,7 @@ class Response:
|
|||
"size": len(self.content or "")
|
||||
}
|
||||
|
||||
binary = set(['\0', '\1'])
|
||||
binary = {'\0', '\1'}
|
||||
if any(c in binary for c in self.content):
|
||||
content["encoding"] = "base64"
|
||||
content["text"] = base64.b64encode(self.content)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue