Last active
January 5, 2021 13:24
-
-
Save w9w/de90e9a039a68692de2c8f476df6f893 to your computer and use it in GitHub Desktop.
Race condition multiple payloads
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
def queueRequests(target, wordlists): | |
engine = RequestEngine(endpoint=target.endpoint, | |
concurrentConnections=40, | |
requestsPerConnection=100 | |
) | |
usernames = open("/Users/max/intruder1.txt", "r").readlines() | |
for username in usernames: | |
engine.queue(target.req, username.rstrip()) | |
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