mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-25 11:03:47 +03:00
Minor patch
This commit is contained in:
parent
5f2c31f8ec
commit
795777b7c5
|
@ -257,9 +257,9 @@ class Web:
|
|||
self.webStagerFilePath = posixpath.join(ntToPosixSlashes(directory), stagerName)
|
||||
|
||||
handle, filename = tempfile.mkstemp()
|
||||
os.fdopen(handle).close() # close low level handle (causing problems later)
|
||||
os.close(handle)
|
||||
|
||||
with open(filename, "w+") as f:
|
||||
with open(filename, "w+b") as f:
|
||||
_ = decloak(os.path.join(paths.SQLMAP_SHELL_PATH, "stager.%s_" % self.webApi))
|
||||
_ = _.replace("WRITABLE_DIR", utf8encode(directory.replace('/', '\\\\') if Backend.isOs(OS.WINDOWS) else directory))
|
||||
f.write(_)
|
||||
|
|
Loading…
Reference in New Issue
Block a user