Created
March 23, 2021 12:16
-
-
Save Chan9390/b77d795e193d8d14f9ff0e89c497b61a to your computer and use it in GitHub Desktop.
Send X requests to target after Y seconds in Turbo Intruder
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
def queueRequests(target, wordlists): | |
engine = RequestEngine(endpoint=target.endpoint, | |
concurrentConnections=1, | |
requestsPerConnection=100, | |
pipeline=False | |
) | |
requests = 0 | |
for word in open('/usr/share/dict/words'): | |
if requests == 10: | |
time.sleep(5) | |
requests = 0 | |
engine.queue(target.req, word.rstrip()) | |
requests = requests + 1 | |
def handleResponse(req, interesting): | |
table.add(req) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment