60 WiFi Hijacking Targeted Packet Sniffing Airodump ng Part 5

כללי / תכנות כללי 35 צפיות 23/09/2022
פתח ב-YouTube

דרג סרטון זה

התחבר כדי לדרג

תיאור

Targeted Packet Sniffing In order to capture packets of information about a particular wireless network First of all we will listen to wireless networks: root@kali:~# airodump-ng wlan0 BSSID PWR Beacons #Data, #/s CH MB ENC CIPHER AUTH ESSID D4:35:1D:50:1E:FC -29 10 3 0 1 195 WPA2 CCMP PSK kmoshe Listen to a specific network: airodump-ng --bssid[mac addr] --channel [ch num] --write [file_name] ~# airodump-ng --bssid D4:35:10:50:1E:FC --channel 1 wlan0 The output will be the list of devices connected to the wireless network. If we want to save the information in a file, the structure of the command is: airodump-ng --bssid[mac addr] --channel[ch num] --write [file name] ~# airodump-ng --bssid D4:35:10:50:1E:FC --channel 1 --write t wlan0 We will receive 5 data formats numbered with 01 for example: t-01.cap, t-01.csv…

#Web School 26