kali的网卡配置

  • 有线网卡配置
cd /etc/network/
vim interfaces
  • 通过添加USB设备来添加无线网卡
  • 查看无线网卡
ifconfig -a
  • 关闭lo回环网卡
ifconfig lo down
  • 开启wlan0网卡
ifconfig wlan0 up
  • 查看无线网卡的模式
iwconfig
  • 查看无线网卡的芯片
airmon-ng
  • 修改无线网卡的模式
# 检测哪些进程可能会影响无线网卡的抓包模式
airmon-ng check 
# 杀死干扰进程
arimon-ng check kill
# 实现网卡进入monitor模式
airmon-ng start wlan0
# 查看网卡目前的模式
ifconfig
# 停用网卡的monitor模式
# arimon-ng stop wlan0
# 设置网卡进入monitor模式的1号信道
airmon-ng start wlan0 1
# 查看网卡目前进入的信道
iwlist wlan0mon channel
# 查看无线网卡的攻击模式
aireplay-ng --help
# 测试无线网卡是否可以注入包
aireplay-ng -9 wlan0mon
# 实现抓包
wireshark
# 实现高级抓包
airodump-ng wlan0mon
# 实现高级抓包----只抓取信道1
airodump-ng wlan0mon -c 1
# 抓取指定bssid的报文
airodump-ng wlan0mon --bssid *(指定的bssid)
# 保存抓取的包至当前目录下
airodump-ng wlan0mon -c 1 --bssid * -w cap_test.cap
# 使用wireshark打开抓取的包,其后缀为*.cap
wireshark *.cap

 

你可能感兴趣的:(黑客攻击)