January 29, 2010

Unix Commands via Cygwin

$ls -d */
List only directories

$ls -hog
A more compact ls -l
* The -h flag produces human-readable file size (e.g. 91K instead of 92728)
* The -o suppresses the owner column
* The -g suppresses the group column

$ls -1t | head -n10
Find the 10 latest (modified) files

IT Security Tools

Cygwin
HTTrack
samarai
Powershell

commandlinefu.com.
commandlinekungfu.com
ss64.com

January 23, 2010

Ubuntu MySQL

1. Start MySQL server

sudo /etc/init.d/mysql start

2. Connect to MySQL database by entering the username and password

mysql -u root -p

3. Determine the IP address

ifconfig | grep "inet " | grep -v 127.0.0.1 | cut -d\ -f2

January 22, 2010

Application Secuirty Testing

Websites
http://phpsec.org/projects/guide/4.html - PHP Security Guide
http://www.rfidblog.org.uk/hancke-rfidrelay.pdf
http://en.wikipedia.org/wiki/Session_fixation - Session Fixation
https://addons.mozilla.org/en-US/firefox/addon/573 - Firefox cookie editor
http://www.criticalsecurity.net/ - Forum