Skip to content

Instantly share code, notes, and snippets.

View plaguna's full-sized avatar
☠️
hacking

Pedro Laguna plaguna

☠️
hacking
View GitHub Profile

Keybase proof

I hereby claim:

  • I am plaguna on github.
  • I am plaguna (https://keybase.io/plaguna) on keybase.
  • I have a public key whose fingerprint is 27C5 E4E2 B0A7 BD18 150D 8443 3328 78C3 A40D 31E0

To claim this, I am signing this object:

@plaguna
plaguna / burp.sh
Created January 31, 2016 15:39
Runs Burp while keeping the number of old version under 3 plus creating a proxy with an external testing machine
#!/bin/bash
echo "Checking for older versions of Burp Suite"
files=$(find . -name 'burpsuite_*' | sort | wc -l)
if [ "$files" -gt 3 ];
then
echo "Deleting old file(s)..."
todelete=$(find . -name 'burpsuite_*' | sort | head -n 1)