
Originally Posted by
digip
As for wget downloads, why can't you can just delete the local archive first before using wget to redownload it
Code:
rm -f milw0rm.tar.bz2
Then run wget to redownload the archive.
(Is prozilla installed on bt3 by default? I never bothered to look...)
I have tried to improve it my new I just found out I passed a cisco network and forgot milw0rm update lossed the last cisco vans..
new update-milw0rm
Code:
#!/bin/bash
echo "Downloading Milw0rm Exploit tar ball"
cp --backup milw0rm.tar.bz2 milw0rm.tar.bz2.bak
rm milw0rm.tar.bz2
wget h**p://milw0rm.com/sploits/milw0rm.tar.bz2
echo "Extracting tar ball contents"
tar -jxvf milw0rm.tar.bz2
echo "Generating Local Database, please Wait"
cp bin/makeindex-milw0rm milw0rm/
cd milw0rm
./makeindex-milw0rm
I would appreciate if somebody could show me how to compare local version with the server version before downloading... I could not find the md5.txt on the milw0rm server
how ever I noticed if i put a
Code:
wget -c h:confused::confused:p://milw0rm.com/sploits/milw0rm.tar.bz2
instead of
Code:
wget h:rolleyes::rolleyes:p://milw0rm.com/sploits/milw0rm.tar.bz2
damn thing actuall appends and does not lose the good stuff... may some please explain.