LowValueTarget
Active Members-
Posts
80 -
Joined
-
Last visited
-
Days Won
3
LowValueTarget's Achievements
Newbie (1/14)
- Rare
- Rare
- Rare
Recent Badges
-
I've updated my psh_DownloadExecSMB payload to allow for exfiltration. psh_DownloadExecSMB will take any powershell payload, execute it and alert via green LED when it's completed. All file transfers happens over SMB to the Bash Bunny. In order to exfil data, have your powershell payload upload to \\172.16.64.1\s\l\ -- this will be copied to the BB as loot. Bonus: Because this payload uses SMB, any captured SMB credentials will be stored as loot. My Repo: https://github.com/hink/bashbunny-payloads/tree/payload/pshExecFixes/payloads/library/execution/psh_DownloadExecSMB Pull Request: https://github.com/hak5/bashbunny-payloads/pull/268
- 1 reply
-
- powershell
- execution
-
(and 1 more)
Tagged with:
-
Take a step back and think about what you are asking. Ask it this way -- "Am I able to accomplish this with a keyboard, a mouse, a network accessible linux computer, a serial device, a usb ethernet adapater and a thumb drive?"
- 7 replies
-
- bashbunny
- bash bunny
-
(and 1 more)
Tagged with:
-
Short Answer: No (not that i am aware of) Long Answer: The BashBunny is not some magic hacking device. Think of it this way. If you have a linux computer, a USB flash drive, a USB keyboard, a USB ethernet adapter, and a USB serial device, would you be able to accomplish what you are trying to accomplish? That's basically what the bashbunny is, with automation capabilities. Theoretical: You might be able to use responder to get a password hash from the target, then crack it or pass it to the victim assuming they aren't using SMBV2 and have SMB file sharing enabled. Even then, you'd be limited to file location if the user is not an Administrator.
-
Like Unixnerd777 said, use SMB, FTP, HTTP, or some other delivery device and forego the storage method.
-
Take a look at the following payload. It sets up a FireTV (android device) to download and install an APK. https://github.com/hak5/bashbunny-payloads/tree/master/payloads/library/android/fireytv
-
Concealed-Exfiltration attacks with Bash Bunny for Android?
LowValueTarget replied to Realstone0001's topic in Bash Bunny
There's a payload floating around that uses adb remote to connect to an android device. Based on my ideas, there's really not much you can do until BashBunny gets USB host support. I have an idea that will try ADB (assuming the victim phone has USB Debugging enabled) first, then fallback to MTP if ADB is not enabled. This would allow relatively plug-n-play exfil of user data. -
Yes as of 1.3 i believe.
-
Anyone who can help make my script more effective or faster?
LowValueTarget replied to MrSnowMonster's topic in Bash Bunny
In your payload.txt, you can remove about 10 lines and replace it with one. https://gist.github.com/hink/a8b57d16234042e5adc0182e5e1779c7 GET SWITCH_POSITION takes care of the logic of finding the switch position for you. It's a default extension.- 5 replies
-
- bashbunny
- powershell
-
(and 1 more)
Tagged with:
-
[Firmware >= v1.1] Install Impacket and Responder
LowValueTarget replied to LowValueTarget's topic in Bash Bunny
That's perfectly fine. Glad to hear it. -
[Firmware >= v1.1] Install Impacket and Responder
LowValueTarget replied to LowValueTarget's topic in Bash Bunny
You could always clone the git repos on your local device, copy them to the /tools folder on the BB USB storage, and plug the device into power in arming mode. This will copy all the files from /tools on usb storage to /tools on the BB system partition. If you wanted to complete the install, you could ssh/screen into the bunny and run the ./setup.py from the CLI. -
[Firmware >= v1.1] Install Impacket and Responder
LowValueTarget replied to LowValueTarget's topic in Bash Bunny
My mistake -- the extension is .txt -- edited the original post. -
[Firmware >= v1.1] Install Impacket and Responder
LowValueTarget replied to LowValueTarget's topic in Bash Bunny
Bumping this to the top for visibility -- it seems that people are still needing assistance. -
Feature Request/Upgrade for next firmware.
LowValueTarget replied to PoSHMagiC0de's topic in Bash Bunny
You could always download the source and compile locally on the bunny. -
bb.sh never worked for me. Here's as simple script I made to make it work for me #!/bin/bash ifconfig $2 172.16.64.64 netmask 255.255.255.0 iptables -X iptables -F iptables -A FORWARD -i $1 -o $2 -s 172.16.64.0/24 -m state --state NEW -j ACCEPT iptables -A FORWARD -m state --state ESTABLISHED,RELATED -j ACCEPT iptables -A POSTROUTING -t nat -j MASQUERADE echo 1 > /proc/sys/net/ipv4/ip_forward Then I just feed it the wan iface and lan iface sh ./bbshare.sh eth0 eth1
-
This could easily be an extension -- WAIT_FOR_IP