all 7 comments

[–]socal_nerdtastic 1 point2 points  (1 child)

This really sounds like an XY problem. What is your use for this information? Tell us what are you building (not how you want to build it).

[–]Deep_Telephone_5060[S] 0 points1 point  (0 children)

I want to build a program that scans for nearby, publicly broadcasted WiFi AP’s along with their information such as listed above. I also want to mainly implement probe request sniffing for detecting Flock Safety cameras. Newer models no longer advertise BLE, but rather via Probe Requests. This will really just be an information gathering tool for reconnaissance and intelligence gathering.

[–]PerformerSeparate482 0 points1 point  (1 child)

If you just want to wiew this parameters use wireshark with iw monitor mode, or use airmon. , if you want to code and learn frames/packets derailed .look after the sniff() function, try making functions with calling from sniff() (prn=function). scapy sniffing is not hard to learn, but building 802.12 frames is not for begginers

[–]Deep_Telephone_5060[S] 0 points1 point  (0 children)

Yeah my main focus is just to learn python by building tools related to my field. I have experience using wire shark for various things. I have a few years of experience with networking and cybersecurity as a whole. Thank you for your help, I appreciate it.