mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 16:32:23 +01:00
Fix for an Issue #1240
This commit is contained in:
parent
84ba3d45c1
commit
18e62fd507
1 changed files with 1 additions and 1 deletions
|
|
@ -155,7 +155,7 @@ class Task(object):
|
|||
|
||||
def engine_start(self):
|
||||
self.process = Popen(["python", "sqlmap.py", "--pickled-options", base64pickle(self.options)],
|
||||
shell=False, stdin=PIPE, close_fds=False)
|
||||
shell=False, stdin=PIPE, close_fds=True)
|
||||
|
||||
def engine_stop(self):
|
||||
if self.process:
|
||||
|
|
|
|||
Loading…
Reference in a new issue