-
Linux 007 Style
In a world where computers are used for almost all financial & personal written records, the need to defend data is more crucial than ever. In the Internet age, billions of people are accessing electronic information databases every second. Improperly protected data could open the door to many threats everything from identity theft to access…
-
25 More – Sick Linux Commands
You Might remember my post 25 best Linux commands Think of this as part two. here is another list of really useful commands that you might find handy. 1) Like top, but for files watch -d -n 2 ‘df; ls -FlAt;’ 2) Download an entire website wget –random-wait -r -p -e robots=off -U mozilla http://www.example.com…
-
10 Cool Nmap Tricks and Techniques
Nmap (“Network Mapper”) is a free and open source (license) utility for network exploration or security auditing. Many systems and network administrators also find it useful for tasks such as network inventory, managing service upgrade schedules, and monitoring host or service uptime. In addition to my list you can also check out this Comprehensive Guide…
-
Top 25 SED Commands
Sed is a stream editor. A stream editor is used to perform basic text transformations on an input stream While in some ways similar to an editor which permits scripted edits (such as ed), sed works by making only one pass over the input(s), and is consequently more efficient. But it is sed’s ability to…