]> git.somenet.org - ctf/pub/network.git/blob - netdump_rsync.sh
GITOLITE.txt
[ctf/pub/network.git] / netdump_rsync.sh
1 #!/bin/bash
2
3 while true; do
4         # copy netdumps from vuln-box and remove everything except last dump
5         rsync -vaP vuln:/root/network/ /media/sf_vmshare/_netdumps/raw/ && ssh vuln 'cd /root/network; ls -1tr | head -n-1 | xargs --no-run-if-empty rm'
6         sleep 60
7         echo "cycling.."
8 done