Posts

Showing posts from May, 2012

Writing a C/C++ program on ubuntu terminal

Image
Here is a simple 5 step instruction to compile and execute C/C++ program on the linux terminal. I have also included a sample C/C++ example to demonstrate. In order to write the program in the terminal itself, we need a console  (terminal)  based  text editor so,  I am using Vim in this tutorial since vim is the most popular console text editor, but  you are free to write your program in any editor like nano,  pico, jed  or  vim etc. Now, lets follow the instructions but it would be really helpful if you learn some vim basics here  (won't take much time)  before proceeding to the instructions or its perfectly okay if you are in a hurry :) Read more »

A keylogger for Linux that really works!

Image
A keylogger is a hardware device or software program that quietly records each and every keyboard inputs (keystrokes) that user makes. you might want to know if someone was using your computer while you were away and see what activities they were doing. keyloggers can be used by hackers to record Username, Passwords, Credit card details and every key input. Here, logkeys  is an advanced keylogger software only for GNU/Linux systems. It logs all character and function keys and stores them in a log file . It can be controlled through the linux terminal. Steps to install and use logkeys- Read more »