Skip to content

Commit d489ba0

Browse files
committed
change bypass sleep
1 parent 280a787 commit d489ba0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scanners/bypass_403.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def try_bypass(self) -> dict:
113113
return results
114114

115115
def send_request(self, method, path, headers=None) -> Tuple[int, int]: # returns status_code, size
116-
time.sleep(self.request_cooldown)
116+
time.sleep(0.25 * self.request_cooldown)
117117
try:
118118
response = self._make_request(method=method, url=path, headers=headers,
119119
allow_redirects=True)

0 commit comments

Comments
 (0)