mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Moving binary to textual file openings
This commit is contained in:
parent
e62e8c6cea
commit
d9102e03c6
10 changed files with 28 additions and 27 deletions
|
|
@ -254,7 +254,7 @@ def storeResultsToFile(results):
|
|||
infoMsg = "writing crawling results to a temporary file '%s' " % filename
|
||||
logger.info(infoMsg)
|
||||
|
||||
with openFile(filename, "w+b") as f:
|
||||
with openFile(filename, "w+") as f:
|
||||
if conf.forms:
|
||||
f.write("URL,POST\n")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue