NightStalker Posted March 6, 2017 Posted March 6, 2017 Hello all, With MAC's (and Linux) you have to know the device of course to serial into it. To make it quicker for me I wrote the below script to search the MAC for the bash bunny (If you have multiple modems this may not work for you) and prompt you to connect to it. Feel free to use and modify as desired. #!/bin/bash # # Title: Mac Serial Connect # Author: NightStalker # Version: 1.0 # # Finds the Bash Bunny in the /dev/cu.* location and # prompt you to connect to it. clear bunnyloc=`ls /dev/cu.* | grep usbmodem` echo "Bash bunny is located at: $bunnyloc" read -r -p "Would you like to connect to it? (Y/N): " connanswer echo $connanswer if [ "$connanswer" == "N" -o "$connanswer" == "n" ] then exit 0 elif [ "$connanswer" == "Y" -o "$connanswer" == "y" ] then screen $bunnyloc 115200 fi
NightStalker Posted March 8, 2017 Author Posted March 8, 2017 My pleasure, just trying to make it a bit easier :)
M@s0n Posted March 8, 2017 Posted March 8, 2017 Awesome !!!! Thanks, next we need to add share internet to bashbunny on Mac.
fin Posted March 9, 2017 Posted March 9, 2017 5 hours ago, Julio Gonzalez said: Awesome !!!! Thanks, next we need to add share internet to bashbunny on Mac. aye
Torrey Posted March 9, 2017 Posted March 9, 2017 7 minutes ago, fin said: aye Already been done here. -> Mac OS X - How to Share Your Internet Connection
NightStalker Posted February 9, 2018 Author Posted February 9, 2018 Wow @Darren Kitchen, what an honor to be featured on your show (https://www.youtube.com/watch?v=4B74ig3R9BE&) for such a simple contribution to the community. I am extatic that this script helped people. Thank you so much for being a great host, show and community for enthusiasts like us.
TecTom2003 Posted April 1, 2018 Posted April 1, 2018 I'm sorry. I'm completely new to the Bash Bunny, what does this payload do? Sorry again.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.