tott Posted May 17, 2017 Share Posted May 17, 2017 Hi there, I received my BashBunny today and while I was able to flash it to the new 1.3 firmware and also am able to run payloads it does not get detected as serial console. I'm checking using "ls /dev/{tty,cu}.*" but nothing appears. Do I need to enable something in the configuration or install a specific driver for OSX? Thanks for your help Quote Link to comment Share on other sites More sharing options...
b0N3z Posted May 17, 2017 Share Posted May 17, 2017 @NightStalker made a script for this. #!/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 make executable and run in terminal. It has worked great for me. Also all general questions belong in the general Bash Bunny section. This section is reserved for Payloads only. Quote Link to comment Share on other sites More sharing options...
tott Posted May 18, 2017 Author Share Posted May 18, 2017 Thanks @b0N3z but the issue here is that there is no device generated that matches the bunny. When plugging the bunny in/out the devicelist does not change. Quote Link to comment Share on other sites More sharing options...
b0N3z Posted May 18, 2017 Share Posted May 18, 2017 go to your diskutil gui app and see if its even mounting when you plug it in. I have had a problem with it not automatically mounting when I plug it in. If thats not the case then Im not sure because I didnt install anything special on my mac to use the bash bunny with it. Quote Link to comment Share on other sites More sharing options...
tott Posted May 19, 2017 Author Share Posted May 19, 2017 Yeah, so Disk, Ethernet and all is working and detected nicely. Just the serial port is not :( Quote Link to comment Share on other sites More sharing options...
b0N3z Posted May 20, 2017 Share Posted May 20, 2017 have you tried using a different pc to see if its the pc? 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.