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:
|
try:
|
||||||
process.terminate()
|
process.terminate()
|
||||||
process.join()
|
process.join()
|
||||||
except OSError:
|
except (OSError, AttributeError):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
finally:
|
finally:
|
||||||
@@ -934,7 +934,7 @@ def dictionaryAttack(attack_dict):
|
|||||||
try:
|
try:
|
||||||
process.terminate()
|
process.terminate()
|
||||||
process.join()
|
process.join()
|
||||||
except OSError:
|
except (OSError, AttributeError):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
finally:
|
finally:
|
||||||
|
|||||||
Reference in New Issue
Block a user