Questions tagged [aircrack-ng]

Aircrack-ng is a tool that can be used to crack keys used in WEP protocols in wireless networks.

Aircrack-ng is a complete suite of tools to assess WiFi network security. It focuses on different areas of WiFi security: Monitoring: Packet capture and export of data to text files for further processing by third party tools; Attacking: Replay attacks, deauthentication, fake access points and others via packet injection.

Official page: https://aircrack-ng.org/

60 questions
8
votes
1 answer

airmon-ng not working in terminal (command not found)

I successfully installed aircrack-ng using macports (i know it worked because when i enter aircrack-ng in terminal it shows the version and options) on my macbook pro. However when I use the airmon-ng command i get "command not found."
RB34
  • 511
  • 1
  • 7
  • 14
7
votes
7 answers

airmon-ng change wlan0 to wlan0mon but don't restore

I complie aircrack-ng 1.2 RC2 from source in my Ubuntu 15.04 yesterday and try to use it, I run this command to trun my wlan0 to monitor mode: sudo airmon-ng start wlan0 And then my wlan0 disappear, there is a new interface named wlan0mon…
7sDream
  • 87
  • 1
  • 1
  • 2
7
votes
2 answers

Find wifi enabled devices [stations] around

Imagine this situation that there are some smartphones and computer around with their WiFi adapter (wireless adapters) on, but not necessary connected to a network. Is there a way to look the MAC addresses via a Linux machine? Any insights are…
Shotor Savar
  • 73
  • 1
  • 5
5
votes
1 answer

airodump-ng output with python subprocess.Popen coummunicate method

Hi I am trying to get continuous output from airodump-ng mon0 For that reason I was trying to read the output of airodump-ng mon0 after certain time with Popen.communicate but still cannot get anything. import subprocess airodump =…
wrufesh
  • 1,091
  • 1
  • 15
  • 29
4
votes
1 answer

Airodump-ng library interface

I need a library interface for airodump-ng? C++/C or Python or anything will do. I only need to find the ap and station around my area along with it's rate and signal. Data are not needed. If Airodump-ng doesn't provide any programming interface, is…
asdacap
  • 678
  • 2
  • 8
  • 15
4
votes
3 answers

Aircrack Ch: -1 Issue on Arch Linux

Currently running Arch Linux, I decided to install Aircrack-ng and try it out on my own wireless network. So I installed it, and I get an error upon Aireplay that states something along the lines of Either patch this, or use the flag…
Kyle R.
  • 771
  • 1
  • 6
  • 5
4
votes
0 answers

Sending deauthentication packets on android using android pcap source code

I am looking for confirmation on if what I want to do is even possible, and any suggestions on how to approach what I want to do. I am wanting to create a wifi jamming device to show people how their wifi devices are vulnerable to jamming simply by…
Austin Gibb
  • 303
  • 1
  • 4
  • 12
3
votes
1 answer

Connect to internet using wlan0 and channel hopping mon0 as Monitor

I was given a project to count the number of Wifi devices in a room and my research led me to getting an TL-MR3020 and installing OpenWRT on it. I can set up mon0 in Monitor Mode just fine airmon-ng start wlan0 Interface Chipset …
Sheridan Gray
  • 648
  • 1
  • 8
  • 23
3
votes
2 answers

Errors occuring when make-ing Aircrack-ng on raspberry pi

As it can be seen in the log I have some errors when trying to compile Aircrack on my Raspberry pi B+ running latest raspbian. I can't manage to find out what's wrong. (I have also installed libnl) make -C src all make[1]: Entering directory…
BogdanTam
  • 33
  • 1
  • 5
2
votes
2 answers

Bash script for reaver to unlock wps-locked status

First of all, sorry for my poor poor english. I'm trying to write a bash script in order to perform AP WPS cracking using reaver. The problem is that after trying some WPS-PINs, the AP lock the WPS so I reaver is not usefull. To solve this, I…
user3368457
2
votes
1 answer

How to stop airodump-ng subprocess in Python?

What I am trying to do is record the output of airodump-ng every 10 seconds. First attempt: Going through the airodump-ng documentation they mention such a command --write-interval When I tried using it:sudo airodump-ng mon0 -w testOutput…
Alon
  • 443
  • 1
  • 4
  • 16
2
votes
1 answer

Stop a running process in a Linux terminal through the Python subprocess module (airodump-ng)

I wrote a program (I ran it in the terminal) that goes through a list of terminal commands (Kali Linux). import subprocess as sub import time sub.call(['airmon-ng', 'start', 'wlan0']) p =…
George Pamfilis
  • 1,169
  • 1
  • 14
  • 33
2
votes
0 answers

No such device when airodump-ng mon0

Problem with aircrack.When i start mon0 it says not such device sudo airmon-ng start wlan0 Then it gives a bunch of processes and say at the bottom: wlan0 Unknown wl - [phy0]mon0: ERROR while getting interface flags :no such device …
A.Bhorra
  • 31
  • 1
  • 3
1
vote
1 answer

Error Packets contained no EAPOL data; unable to process this AP

Anybody know what it means this error? Packets contained no EAPOL data; unable to process this AP. This is the output when execute this: aircrack-ng -w password.lst *.cap thanks in advance
Guif If
  • 397
  • 1
  • 3
  • 14
1
vote
2 answers

Airodump not writing handshake to file

I am working on a project for college the project is a GUI wrapper around the aircrack-ng suite, we are implementing the project in Python 3 I seem to be having a problem with the script, when I run the commands manually as in I run airodump-ng…
1
2 3 4