Linux A Complete Operating System Optimized For Anonymous Surfing

what I would do in case of so called emergency where I have to cleanup the hdd is a simple command. :jimlad: just boot off a linux live cd/floppy/usb and run the below command on your hdd.:p its like peeing on your hdd

Code:
for i in {1..3}
do
dd if=/dev/urandom of=/dev/sdb oflag=direct
done
What exactly does this do?

And this only works on the first HDD right?
Only on sdb?
 
What exactly does this do?

And this only works on the first HDD right?
Only on sdb?
this reads from the urandom device (which emits garbage) and writes it to the hdd and repeats for 3 times. sdb here is just an example (second hdd connected to the box on sata. scsi to be precise.), you have to find out the correct hdd by running lsblk command which lists out all the block devices. since this writes from the beginning of the block device. all the partition info will be gone. if you want to delete a specific partition. you should use something like /dev/sda1 etc...

since its a very simple command; it works on almost any linux system. including rooted android mobile phones with busybox.

the correct command would be dd if=/dev/urandom of=<hdd device> of=direct

PS: if you need even a faster way to do that you should read from /dev/zero which will basically zerofill the entire hdd. basically /dev/zero is faster than /dev/urandom. This also is a good method when you are selling your hdd to someone else.

WARNING: after this, even forensics team wont be able to retrieve any data from the device.
 
Last edited:
Is PPTP safe enough a protocol to download torrents over without the ISP noticing or is it better to go with open vpn protocol.
i understand pptp is compromised but in the context of usage.

Depends. If you are being targeted, then openVPN is the best bet. If you just need basic tunneling, and do not think you are being targeted - PPTP is good enough - but I would stay away.
 
Back
Top