Skip to content

Instantly share code, notes, and snippets.

@str0my
Created February 17, 2021 13:30
Show Gist options
  • Save str0my/00367eb5e3bd72d84667b48c68bf7799 to your computer and use it in GitHub Desktop.
Save str0my/00367eb5e3bd72d84667b48c68bf7799 to your computer and use it in GitHub Desktop.
@Agarri_FR challenge
def queueRequests(target, wordlists):
engine = RequestEngine(endpoint=target.endpoint,
concurrentConnections=5,
engine=Engine.BURP,
pipeline=False
)
for word in "0123456789abcdef":
engine.queue(target.req, word.rstrip())
def handleResponse(req, interesting):
# currently available attributes are req.status, req.wordcount, req.length and req.response
if "NOT" not in req.response:
table.add(req)
for word in "0123456789abcdef":
req.engine.queue(req.template, req.words[0]+word.rstrip())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment