Jump to content

Bashbunny serial not detected in OSX Sierra


tott

Recommended Posts

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

Link to comment
Share on other sites

@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.

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...