mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-01-11 19:21:11 +03:00
Remove timeout parameter from subprocess.run in SQLMapCLI
This commit is contained in:
parent
a45b3596a6
commit
c45102fc1e
|
|
@ -149,8 +149,7 @@ class SQLMapCLI:
|
|||
result = subprocess.run(
|
||||
cmd,
|
||||
capture_output=True,
|
||||
text=True,
|
||||
timeout=600, # 10 minute timeout per test
|
||||
text=True
|
||||
)
|
||||
return result.returncode == 0, result.stdout + result.stderr
|
||||
except subprocess.TimeoutExpired:
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user