mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-03 13:14:13 +03:00
Patch for an Issue #221
This commit is contained in:
parent
12fc9442b9
commit
afd82b92dd
|
@ -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:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user