run scan_wifi.sh in order to mount remote folder by sshfs and start wifi traffic monitor/scan/save and write to mounted dir
Last active
June 6, 2022 16:07
-
-
Save santaklouse/48d48e0e23f05f3c61241ebc29884fd3 to your computer and use it in GitHub Desktop.
scan wifi
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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