|
|
|
|
|
by ejcx
4077 days ago
|
|
I do a lot of App Sec related things and I actually use mostly Chrome dev tools and command line instead of burp and other tools. The way I reproduced the bug when it was reported was by using the "Copy to curl" feature in Chrome, and then using it as follows for i in `seq 1 16`;do
curl.*& #copied from chrome dev tools. & to background
done
|
|
I have considered writing a program that will let me send of a bunch of HTTP requests at once, but wait to close all the connections at the exact same time. That would probably be the most effective way to trigger race conditions.