Created
February 17, 2021 13:30
-
-
Save str0my/00367eb5e3bd72d84667b48c68bf7799 to your computer and use it in GitHub Desktop.
@Agarri_FR challenge
This file contains hidden or 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=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