mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 20:51:31 +00:00
Patch for an Issue #221
This commit is contained in:
@@ -717,8 +717,11 @@ def dictionaryAttack(attack_dict):
|
|||||||
logger.warn(warnMsg)
|
logger.warn(warnMsg)
|
||||||
|
|
||||||
for process in processes:
|
for process in processes:
|
||||||
process.terminate()
|
try:
|
||||||
process.join()
|
process.terminate()
|
||||||
|
process.join()
|
||||||
|
except OSError:
|
||||||
|
pass
|
||||||
|
|
||||||
finally:
|
finally:
|
||||||
if retVal:
|
if retVal:
|
||||||
@@ -798,8 +801,11 @@ def dictionaryAttack(attack_dict):
|
|||||||
logger.warn(warnMsg)
|
logger.warn(warnMsg)
|
||||||
|
|
||||||
for process in processes:
|
for process in processes:
|
||||||
process.terminate()
|
try:
|
||||||
process.join()
|
process.terminate()
|
||||||
|
process.join()
|
||||||
|
except OSError:
|
||||||
|
pass
|
||||||
|
|
||||||
finally:
|
finally:
|
||||||
if retVal:
|
if retVal:
|
||||||
|
|||||||
Reference in New Issue
Block a user