Sep 252011
 

Unix based operating systems like Linux offer a unique approach to join two commands on the terminal, with it you can take the output of the first command and use it as input of the second command, this is the concept of pipe or | . Pipes allow two separate process to communicate with each other also if they were not created to do it, so this open an infinite series of opportunity.

A basic example is:

ls -l | grep rwxrwxrwx

This command will print the list of all the files in the local directory that have permission rwxrwxrwx (or that have rwxrwxrwx in their name).

Continue reading »

Flattr this!

Sep 222011
 

Those people who are acquainted with ancient Greek mythology will know with no doubt the word Cronus, he was the father of the Greek Olympian Gods.The word Chronos means time in Greek and Latin and thus from the two words we get the words chronometer and chronology. Therefore in the programming lingo crontab means something that deals with the time.

To make it short Cron is a daemon that executes scheduled commands.
Continue reading »

Flattr this!

Sep 222011
 

In a former article (1 year ago) i used a java tool to see which DNS was faster among Google, OpenDNS and my local ISP, and the winner it’s been my local ISP; but I’ve recently discovered another nice tool that can do these tests, so today I want to re-check these 3 DNS servers with namebench

Namebench it’s a small program wrote in python that search for the fastest DNS server near to you.
Namebench runs a fair and thorough benchmark using your web browser history, tcpdump output, or standardized datasets (top 2000 Alexa) in order to provide an individualized recommendation. namebench is completely free and does not modify your system in any way. The project began as a 20% project at Google.

namebench runs on Mac OS X, Windows, and UNIX, and is available with a graphical user interface as well as a command-line interface.
Continue reading »

Flattr this!

Sep 192011
 

Article by James Hawkins

This is the second part of our guide on Nmap, you can find the first part here, in this part of the tutorial we’ll see other configurations that you can use with Nmap to avoid firewalls or debug the information obtained.
Continue reading »

Flattr this!

Sep 162011
 

Article by James Hawkins

As we all know, Nmap (Network Mapper) is a stealth port scanner widely used by network security experts (including forensics & Pen-testing Experts). In this article we’ll see the different types of Nmap Scans, its techniques, understanding the purpose and goals of each scan , its advantages or disadvantages over other scanning tools, which could be better at evading firewalls & IDS (To a certain extent) and much more. In this first part, I have made my best to explain the basic scanning techniques, Host discovery options, port scanning options, techniques used in detecting Operating system & services running on the system.
i also give Nmap as already installed on your system.
Continue reading »

Flattr this!