mirror of
https://github.com/hak5/bashbunny-payloads.git
synced 2025-10-29 16:58:25 +00:00
31 lines
632 B
Bash
31 lines
632 B
Bash
#!/bin/bash
|
|
# Title: Malware Bunny
|
|
# Description: main install script
|
|
# Author: Zappus
|
|
# Version: 1.0
|
|
# Category: Incident-Response
|
|
# Attackmodes: Ethernet
|
|
# Firmware: 1.5
|
|
|
|
|
|
# Install System Dependencies
|
|
apt-get install -y automake libtool make gcc flex bison libmagic-dev libssl-dev python-dev swig libfuzzy-dev exiftool
|
|
|
|
# Install Python Dependencies
|
|
pip install SQLAlchemy PrettyTable python-magic
|
|
|
|
# Other Tools
|
|
apt-get -y install python-scapy pyew unzip
|
|
|
|
# Setup Custom Tools
|
|
./ssdeep.sh
|
|
./yara.sh
|
|
./viper.sh
|
|
./dshell.sh
|
|
./capstone.sh
|
|
./binwalk.sh
|
|
./featherduster.sh
|
|
./wabt.sh
|
|
./peepdf.sh
|
|
|