by Mohsin Sumar | Nov 27, 2009 | Apache, PHP, Security, Tips & Tricks
If you’ve stumbled across this post, then you’ve recently become a victim of the most famous way of uploading a malicious script to a website – PHP file uploads. Many websites and web applications that are developed using PHP & MySQL allow users...
by Mohsin Sumar | Nov 24, 2009 | SSH, Tips & Tricks
Using the following command in SSH, you will be able to extract files from your tar file. tar -xf file.tar
by Mohsin Sumar | Nov 22, 2009 | SSH, Tips & Tricks
Use the following command if you want to create a tar and compress a file (or folder). tar -czf /path/to/save/file.tar folder_or_file_name The options used in the above command are outlined below for your understanding. -c = create -z = compress a file -f = use the...
by Mohsin Sumar | Nov 16, 2009 | Words of Wisdom
“A man should look for what is, and not for what he thinks should be.” – Albert Einstein
by Mohsin Sumar | Nov 14, 2009 | SSH
If your SSH ls command output is really long, and cannot be viewed on screen – you can use the following command to part of it with a more command to continue down the list. ls [options here] | more Example:- ls -l | more