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
Monday, January 24, 2011
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
Friday, December 17, 2010
When's a password good or bad?
A reasonable article on when good passwords don't matter.
Story here
Another story on the ability to crack 'good' passwords
here
Story here
Another story on the ability to crack 'good' passwords
here
NSA and compromised networks
Apparently the NSA think that their own networks can't be considered clean and security and take the appropriate actions based on that position including increased audit, new network sensors and standardisation.
Story here
Wednesday, December 15, 2010
Mounting a dd image
Interesting article on how to mount a dd image from a backup or when a hard drive is failing or copied
http://rackerhacker.com/2010/12/14/mounting-a-raw-partition-file-made-with-dd-or-dd_rescue-in-linux/