Skip to content

Instantly share code, notes, and snippets.

@w9w
Last active January 5, 2021 13:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save w9w/de90e9a039a68692de2c8f476df6f893 to your computer and use it in GitHub Desktop.
Save w9w/de90e9a039a68692de2c8f476df6f893 to your computer and use it in GitHub Desktop.
Race condition multiple payloads
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