Skip to content

Instantly share code, notes, and snippets.

@santaklouse
Last active June 6, 2022 16:07
Show Gist options
  • Select an option

  • Save santaklouse/48d48e0e23f05f3c61241ebc29884fd3 to your computer and use it in GitHub Desktop.

Select an option

Save santaklouse/48d48e0e23f05f3c61241ebc29884fd3 to your computer and use it in GitHub Desktop.
scan wifi

?

run scan_wifi.sh in order to mount remote folder by sshfs and start wifi traffic monitor/scan/save and write to mounted dir

#!/usr/bin/env bash
sudo umount /mnt/ibook/tmp
sshfs -C -o idmap=user,allow_other,reconnect alexnevpryaga@192.168.3.96:/Users/alexnevpryaga/tmp
#!/usr/bin/env bash
for i in {1..5}; do sudo airmon-ng start "$i"; done
./mount_ibook_tmp.sh
sudo airodump-ng -c 1,3,4,6,7,8,10,11 -R '^(?!.*wctf)^(?!.*home2)^(?!.*Home_bgn)^(?!.*AirNet)^(?!.*apple)^(?!.*test)^(?!.*HUAWEI-88AB)' --manufacturer --wps -w /mnt/ibook/tmp/all-except-my `echo $(iwconfig 2>1|grep mon |awk '{print $1}'|tr '\n' ' ')|tr ' ' ','`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment