Saturday, January 29, 2011
Egypt severs Internet connection
Article on BBC News website about how Egypt has removed itself from the Internet whilst the unrest is ongoing. Interesting to consider the implications for companies that rely on the Internet for their WAN connectivity for any offices they have in countries like this.
Monday, January 24, 2011
Bypassing Applicatio/DLL whitelisting in SRP and AppLocker
Didier Stevens has an interesting article on the ability to bypass DLL whitelisting by making the appropriate call. Apparently the reason you can do this is to help developers, and malware writers too....
Link Here
Link Here
Wednesday, January 19, 2011
Application whitelisting paper
Really good paper on the effectiveness of application whitelisting and the practical implications and limitations of it.
Paper here
Paper here
Wednesday, January 5, 2011
Wipe a disk using dd
You may need to wipe you hard drive to clean
up partition errors, bad installations, or for privacy. This will show you howto do this
These methods use a command called dd
Wiping the entire disk
This will overwrite all partitions, master boot records, and data.
Filling the disk with all zeros (This may take a while, as it is making every bit of data 0) :
dd if=/dev/zero of=/dev/sda bs=1M
If you are wiping your hard drive for security, you should populate it with random data rather than zeros (This is going to take even longer than the first example.) :
dd if=/dev/urandom of=/dev/sda bs=1M
up partition errors, bad installations, or for privacy. This will show you howto do this
These methods use a command called dd
Wiping the entire disk
This will overwrite all partitions, master boot records, and data.
Filling the disk with all zeros (This may take a while, as it is making every bit of data 0) :
dd if=/dev/zero of=/dev/sda bs=1M
If you are wiping your hard drive for security, you should populate it with random data rather than zeros (This is going to take even longer than the first example.) :
dd if=/dev/urandom of=/dev/sda bs=1M
Labels:
security