mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-09 06:01:29 +00:00
Patch for an Issue #990
This commit is contained in:
@@ -840,7 +840,7 @@ def dictionaryAttack(attack_dict):
|
||||
try:
|
||||
process.terminate()
|
||||
process.join()
|
||||
except OSError:
|
||||
except (OSError, AttributeError):
|
||||
pass
|
||||
|
||||
finally:
|
||||
@@ -934,7 +934,7 @@ def dictionaryAttack(attack_dict):
|
||||
try:
|
||||
process.terminate()
|
||||
process.join()
|
||||
except OSError:
|
||||
except (OSError, AttributeError):
|
||||
pass
|
||||
|
||||
finally:
|
||||
|
||||
Reference in New Issue
Block a user