mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
periodical commit
This commit is contained in:
parent
9c1d82c9f7
commit
68e13c3872
6 changed files with 113 additions and 7 deletions
|
|
@ -260,7 +260,10 @@ class Connect:
|
|||
|
||||
logger.log(8, responseMsg)
|
||||
|
||||
time.sleep(conf.cpuThrottleDelay)
|
||||
if conf.cpuThrottle:
|
||||
minThrottleDelay, maxThrottleDelay = 0.0001, 0.1
|
||||
delay = minThrottleDelay + (maxThrottleDelay-minThrottleDelay) * conf.cpuThrottle
|
||||
time.sleep(delay)
|
||||
|
||||
return page, responseHeaders
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue