Another way to listen to Wi-Fi traffic using Kali Linux and a wireless adaptor.

The p0f command for Kali Linux allows a user to listen in on traffic passing over a wireless network. I am using a Netgear WLAN adapter and I am listening in on an open Access Point. This is the command to use: p0f -i wlan0 this will start the p0f traffic sniffer. root@kali:~# p0f -i … Read more

How to use the touch command to create a file with an arbitrary filename.

The touch command ordinarily does not allow the user to create files with a filename like –rf, but if you want to really annoy someone then you may use this command to create one. homer@debian:~$ touch — ‘–rf ‘homer@debian:~$ touch — ‘–rf ‘ And now you have a file named –rf. -rw-r–r– 1 homer homer … Read more

Goat Simulator game now available for Linux and Apple Macintosh.

The popular PC game Goat Simulator for Windows is now available for Linux. This game is very entertaining; you can run around a small suburb and cause all kinds of havoc. Based upon the Unreal Tournament 3 engine; this is a sandbox game that allows all kinds of exploration and destruction. There are many achievements … Read more

Useful Linux networking tricks.

Change the mac address of your network adapter. sudo ifconfig wlan0 down && sudo ifconfig wlan0 hw ether 00:11:22:33:44:55 && sudo ifconfig wlan0 upsudo ifconfig wlan0 down && sudo ifconfig wlan0 hw ether 00:11:22:33:44:55 && sudo ifconfig wlan0 up This will change the mac address of your network interface instantly. Below is an example. homer@deusexmachina … Read more

I managed to compile the 14.4 ATI drivers on Linux Mint 16 against the 3.15 kernel.

I have managed to get the 14.4 ATI drivers to compile against the new 3.15 kernel on Linux Mint 16. I followed this guide: http://bluehatrecord.wordpress.com/2014/05/04/amd-catalyst-14-4-for-linux-loses-support-for-linux-kernel-versions-above-3-11/ and I used the commands on this page as well as this linked patch. This is how I managed to do it. I am now running a 3.15 kernel with … Read more

How to compile a 3.15 kernel on Linux the easy way using the command line.

Compiling a kernel on Linux is very easy using the command line. You may download the latest mainline kernel from kernel.org. This is 3.15. Extract the file using this command. tar -xvf linux-3.15.tar.xztar -xvf linux-3.15.tar.xz Clean the source tree using this command. make mrpropermake mrproper Then open the configuration menus using this command. make menuconfigmake … Read more

Watchdogs game showcasing more realistic hacking with Linux and SSH; but the crashes spoil this fine game.

The watchdogs game is a new shooter game that uses strategies such as hacking into phones and streetlights to achieve various game strategies. The intro shows a reverse SSH tunnel and various Linux hacking tools that the protagonist and his friends use against the enemies. This is rather common in modern films as well, Dredd … Read more

How to update the grub menu manually on Kali Linux.

The update-grub command will update the grub menu on Kali Linux. root@kali:~# update-grub Generating grub.cfg … Found background image: /usr/share/images/desktop-base/desktop-grub.png Found linux image: /boot/vmlinuz-3.12-kali1-amd64 Found initrd image: /boot/initrd.img-3.12-kali1-amd64 Found memtest86+ image: /boot/memtest86+.bin Found memtest86+ multiboot image: /boot/memtest86+_multiboot.bin No volume groups found doneroot@kali:~# update-grub Generating grub.cfg … Found background image: /usr/share/images/desktop-base/desktop-grub.png Found linux image: /boot/vmlinuz-3.12-kali1-amd64 Found … Read more

How to scan for vulnerable ports on a host with the Kali Linux distribution.

Scanning for vulnerable ports is easy with the Kali Linux distribution. Here is a simple port scan of my Windows Server 2012 R2 laptop host OS using Kali Linux. homer@kali:~$ sudo nmap 192.168.1.6   Starting Nmap 6.46 ( http://nmap.org ) at 2014-05-28 20:44 EST Nmap scan report for 192.168.1.6 Host is up (1.0s latency). Not … Read more

Chinese government switching to Linux instead of Windows 8.1.

The Chinese government is considering a switch to Linux on the desktop to replace the ageing fleet of Windows XP machines currently in use. The ban on Windows 8 has made it necessary to find an alternative to Microsoft software that is currently in use in the country. This is a good thing; Microsoft software … Read more

WordPress testing with Kali Linux. Find problems with your site before the bad guys do.

The new Kali Linux distribution allows installation in a VMware virtual machine. This enables integration with a local area network and scanning of vulnerabilities. One good vulnerability scanner is wpscan. This is a vulnerability scanner that is used to scan websites running WordPress for security vulnerabilities. This makes it very useful for a webmaster. You … Read more

Linux Mint 17 RC now available. Download it with these direct links.

Linux Mint 17 is now available. Download this new Linux release from this handy mirror site. http://ftp.heanet.ie/mirrors/linuxmint.com/testing/. 64 bit ISO 1.3 Gigabytes: http://ftp.heanet.ie/mirrors/linuxmint.com/testing/linuxmint-17-mate-dvd-64bit-rc.iso. 32 bit ISO 1.3 Gigabytes: http://ftp.heanet.ie/mirrors/linuxmint.com/testing/linuxmint-17-mate-dvd-32bit-rc.iso. This new Linux distribution has all the same features that Linux Mint 16 had, but with all new software. I am trying out the RC build … Read more

Do You Really Need An Anti-Virus For Linux?

Do You Really Need An Anti-Virus For Linux?

Did someone tell you that you do not need to install an anti-malware for Linux? You mustn’t listen to that! It’s totally incorrect… Today, there is an increasing popularity of Linux as Desktop. Linux uses Gnome Environment, which is slowly but steadily getting attacked by malware authors. So, the free OS is no way malware … Read more

Some useful Linux commands and tricks for the bash shell user.

The boxes utility for Linux allows you to render an ascii text box around text. Below is an example. homer@homer-eME730 19:14:21 ~ $ echo `echo "This is a sentence printed to the terminal."` | boxes /***********************************************/ /* This is a sentence printed to the terminal. */ /***********************************************/homer@homer-eME730 19:14:21 ~ $ echo `echo "This is a … Read more