Posts

Showing posts with the label Kali Linux

How to crack Wi-Fi?

Image
How to crack Wi-Fi? I'll explain it to you in a few simple steps. Assumed is that you know how to boot up a Linux environment and how to install a package in it. Ok so first things first. In your Linux distribution install the package "aircrack-ng". It's a suite with some very useful Wi-Fi cracking tools. We'll use 3 of them here. Identify your Wi-Fi card and put it into monitor, as shown in the top left terminal. Mine is wlp3s0. Next, start capturing all traffic from a specific access point. In the top right terminal I've used the following command: $ sudo airodump-ng --essid Alpha -c 6 --write Alpha_CAP wlp3s0 Which means: - Capture the AP that identifies as Alpha. - Stay on channel 6 during the capturing. - Write the output files using Alpha_CAP filename. Then we need to get some users to authenticate to the AP and capture the handshake, as shown in the middle right terminal. You can see that you captured the key when the airodump-ng termin...

Kali Linux Penetration Testing Tools

Image
Full List of Kali Linux Penetration Testing Tools This reference guide describes every tool one by one and is aimed at anyone who wants to get familiar with digital forensics and penetration testing or refresh their knowledge in these areas with tools available in Kali Linux • Note! I’ve tried to gather as much information as possible, however, even despite that, some entries don’t have information, which I might update if I get more information. Also, mistakes are inevitable • The purpose was to create the most detailed source of every tool in Kali Linux for quick reference and better understanding • Some tools fall under several categories, which means that duplicate entries exist in the full ~670 pages long source • The information about every tool usually consists of: DESCRIPTION, USAGE, EXAMPLE and sometimes OPTIONS and TIPs • Kali Linux tools are not limited to Kali Linux / Backtrack (most can be installed on other Linux distributions taking into considera...

HOW TO BYPASS ANTIVIRUS DETECTION USING VEIL IN KALI LINUX

HOW TO BYPASS ANTIVIRUS DETECTION USING VEIL IN KALI LINUX *********************************************************************************** Veil is a awesome tool developed by Chris Truncer @ChrisTruncer, Mike Wright @TheMightyShiv and The Grayhound @the_grayhound specifically designed for Kali Linux which has the goal of: Bypass common AV solutions used. Get the payloads from Metasploit framework, and get the new ones in the future Metasploit releases. Try to create each payload as random as possible. Some days ago Veil v2.0.4 was Released. I'm want to talk about it and give some examples about how to bypass severals anti-virus. The main changes in this version is: x64 compatibility – They have updated their setup script in order to make Veil compatible with both x86 and x64 versions. Update Feature – Now Veil has an update function. Now we can update Veil either the command line or menu. There are tutorials available at http://www.veil-evasion.com The framewor...