mirror of
https://github.com/hak5/bashbunny-payloads.git
synced 2025-10-29 16:58:25 +00:00
30 lines
829 B
Bash
30 lines
829 B
Bash
#!/bin/bash
|
|
# Title: Malware Bunny
|
|
# Description: dshell install script
|
|
# Author: Zappus
|
|
# Version: 1.0
|
|
# Category: Incident-Response
|
|
# Attackmodes: Ethernet
|
|
# Firmware: 1.5
|
|
|
|
|
|
apt-get install -y python-dpkt python-ipy python-pypcap
|
|
pip install pygeoip
|
|
|
|
cd /tools/
|
|
git clone https://github.com/USArmyResearchLab/Dshell dshell
|
|
cd dshell
|
|
|
|
cd share/GeoIP/
|
|
wget http://geolite.macxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz
|
|
gunzip -d GeoIP.dat.gz
|
|
wget http://geolite.maxmind.com/download/geoip/database/GeoIPv6.dat.gz
|
|
gunzip -d GeoIPv6.dat.gz
|
|
wget http://download.maxmind.com/download/geoip/database/asnum/GeoIPASNum.dat.gz
|
|
gunzip -d GeoIPASNum.dat.gz
|
|
wget http://download.maxmind.com/download/geoip/database/asnum/GeoIPASNumv6.dat.gz
|
|
gunzip -d GeoIPASNumv6.dat.gz
|
|
cd ../../
|
|
|
|
make
|