Public bug reported:
In case you missed the announcement:
https://sourceforge.net/p/burp/mailman/message/34416247/
Burp 1.4.40 is still compatible with 1.3 and earlier, as well as 2.0.x
using protocol=1. Non-LTS versions deserve an upgrade.
I believe the reason this has not been flagged before i
I had a problem with john miller's bash script because bash didn't die
quickly enough for the microsleep to get re-parented by init (upstart),
so here is a better version:
#!/bin/bash
usleep 1 &
firstPID=$!
#first lets exhaust the space
while (( $! >= $firstPID ))
do
usleep 1 &
done
# [ will