mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-25 11:03:47 +03:00
Patch for an Issue #990
This commit is contained in:
parent
9b32e69f26
commit
56965e3608
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue
Block a user