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())