We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 989271e commit a401698Copy full SHA for a401698
plugins/generic/filesystem.py
@@ -27,6 +27,7 @@
27
from lib.core.enums import PAYLOAD
28
from lib.core.exception import SqlmapUndefinedMethod
29
from lib.request import inject
30
+from binascii import a2b_hex
31
32
class Filesystem:
33
"""
@@ -232,7 +233,7 @@ def readFile(self, remoteFiles):
232
233
fileContent = newFileContent
234
235
if fileContent is not None:
- fileContent = decodeHexValue(fileContent)
236
+ fileContent = a2b_hex(fileContent)
237
238
if fileContent:
239
localFilePath = dataToOutFile(remoteFile, fileContent)
0 commit comments