mirror of
https://github.com/hak5/bashbunny-payloads.git
synced 2025-10-29 16:58:25 +00:00
17 lines
387 B
Bash
17 lines
387 B
Bash
#!/bin/bash
|
|
# Title: Malware Bunny
|
|
# Description: featherduster install script
|
|
# Author: Zappus
|
|
# Version: 1.0
|
|
# Category: Incident-Response
|
|
# Attackmodes: Ethernet
|
|
# Firmware: 1.5
|
|
|
|
apt-get install -y libgmp3-dev
|
|
apt-get install -y libncurses-dev
|
|
|
|
cd /tools
|
|
git clone https://github.com/nccgroup/featherduster
|
|
cd featherduster
|
|
|
|
python setup.py install |