Wireless

(last edited: 08/23/2019) - Frequency Charts - Kismet Reference - Linux WiFi Commands - Linux Bluetooth - Linux WiFi Testing

Frequency Charts

RFID120-150 kHz (LF)
13.56 MHz (HF)
433 MHz (UHF)
Keyless Entry315 MHz (N. Am)
433.92 MHz (Europe,Asia)
Cellular (US)698-894 MHz
1710-1755 MHz
1850-1910 MHz
2110-2155 MHz
GPS 1227.60,1575.42 MHz
L Band1-2 GHz
802.15.4 (ZigBee)868 MHz (Europe)
915 MHz (US,Australia)
2.4 GHz (worldwide)
802.15.1 (Bluetooth)2.4-2.483.5 GHz
802.11b/g2.4 GHz
802.11a 5.0 GHz
802.11n2.4/5.0 GHZ
C Band4-8 GHz
Ku Band12-18 GHz
K Band18-26.5 GHz
Ka Band26.5-40 GHz
FCC ID LOOKUP

FREQUENCY DATABASE

Top - Home


Kismet Reference

eList Kismet servers
hHelp
zToggle full-screen view
nName current network
mToggle muting of sound
iView detailed information for network
tTag or untag selected network Sort network
sSort network list
gGroup tagged networks
lShow wireless card power levels
uUngroup current group
dDump printable strings
cShow clients in current network
rPacket rate graph
LLock channel hopping to selected
aView network statistics
HReturn to normal channel hopping
pDump packet type
+/-Expand/collapse groups
fFollow network center
CTRL+LRe-draw the screen
wTrack alerts
QQuit Kismet
xClose popup window
Top - Home


Linux WiFi Commands

iwconfigWireless interface config
rfkill listIdentify wifi problems
rfkill unblock allTurn on wifi
airdump-ng mon0Monitor all interfaces

CONNECT TO WE P WIFI NETWORK

iwconfig ath0 essid $SSID 
ifconfig ath0 up 
dhclient ath0 

CONNECT TO WPA—PSK WIFI NETWORK

iwconfig ath0 essid $SSID key [key]
ifconfig ath0 up
wpa_supplicant -B ath0 -c wpa-psk.conf 
dhclient ath0 

CONNECT TO WPA—ENTERPRISE WIFI NETWORK

iwconfig ath0 essid $SSID 
ifconfig ath0 up 
wpa_supplicant -B ath0 -c wpa-ent.conf 
dhclient ath0 
Top - Home


Linux Bluetooth

hciconfig hci0 upTurn on bluetooth interface
hcitool -i hci0 scan --flush --allScan for bluetooth devices
sdptool browse [BD_ADDR]List open services
kciconfig kci0 name "NAME" class 0x520204Set as discoverable
pand -KClear pand sessions
Top - Home


Linux WiFi Testing

START MONITOR MODE INTERFACE

airmon-ng stop ath0 
airmon-ng start wifi0 
iwconfig ath0 channel $CH 

APTURE CLIENT HAND SHAKE

airdump-ng -c $CH --bssid $AP -w file ath0  #Capture traffic
aireplay-ng -0 10 -a $A2 -c $CH ath0  #Force client de-auth

BRUTE FORCE HAND SHAKE

aircrack-ng -w wordlist capture.cap   # WPA-PSK
asleep -r capture.cap -W dict.asleep  # LEAP
eapmd5pass -r capture.cap -w wordlist   # EAP-MD5

DOS ATTACKS

3 [int] a -a $AP  # Auth Flood
mdk3 [int] b -c $CH   #Beacon Flood
Top - Home