Sunday, July 24, 2011
Tuesday, February 08, 2011
Interesting USB Tool
Interesting USB tool on the NirSoft website that lists all connected USB devices to your PC and also ones that have been connected. Leverages the data in the registry but presents it in a nice GUI and also allows you to do it to a remote PC if you have Admin credentials
Sunday, February 06, 2011
IPv6 view from Cisco
Interesting article on IPv6 from Cisco Blog, with more to come.
http://blogs.cisco.com/security/ipv6-whats-new/
http://blogs.cisco.com/security/ipv6-whats-new/
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 05, 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
Subscribe to:
Posts (Atom)