hi!
I learn something new each day with UNIX, that why i like it so much i guess, anyways, this isn't really hacking or phreaking but, it's just as fun.
I didn't know i could wget everything from a directory until today. *and* i had no idea my wget supported ssl!
so i googled '"index of"+ROMs' and found this site, hidden away:
https://detained.net/roms/NES/so I ran:
wget --secure-protocol=sslv2 --no-check-certificate https://detained.net/roms/NES/
This got me "index.html"
So then I wondered how many ROMs there were:
the command:
cat index.html | grep zip | cut -d "=" -f 4 | cut -d '"' -f 2 | sed 's/%20/ /g' | wc -l
produces 909 games!!!!!
w00h00 l00t!!!
so then i did:
wget -r -l1 A.zip --secure-protocol=sslv2 --no-check-certificate https://detained.net/roms/NES/
and it got down to about Birdweek.zip
I bet the server blocked my pirate ass.
so then i found out that wget can do random search times that servers can actually "watch" for..
wget -r -l1 A.zip --secure-protocol=sslv2 --no-check-certificate --random-wait --tries=2 --retry-connrefused https://detained.net/roms/NES/
And that worked, you have to remove like 10 files and a folder of gifs, theres also a 67MB death metal mp3 that comes with the payload. but. have fun and play NES.
- <3 Trevelyn.