A one paragraph description about the container.
These instructions will cover usage information and for the docker container
| # /etc/network/interfaces | |
| # | |
| auto lo | |
| iface lo inet loopback | |
| # device: eth0 | |
| iface eth0 inet manual | |
| # IPv4 bridge | |
| # (connect ONLY your firewall/router KVM instance here, this is the WAN device!) |
| #!/bin/sh | |
| ### | |
| # SOME COMMANDS WILL NOT WORK ON macOS (Sierra or newer) | |
| # For Sierra or newer, see https://github.com/mathiasbynens/dotfiles/blob/master/.macos | |
| ### | |
| # Alot of these configs have been taken from the various places | |
| # on the web, most from here | |
| # https://github.com/mathiasbynens/dotfiles/blob/5b3c8418ed42d93af2e647dc9d122f25cc034871/.osx |
| #!/bin/sh | |
| sudo apt-get remove --purge vim vim-runtime vim-gnome vim-tiny vim-common vim-gui-common | |
| sudo apt-get install liblua5.1-dev luajit libluajit-5.1 python-dev ruby-dev libperl-dev mercurial libncurses5-dev libgnome2-dev libgnomeui-dev libgtk2.0-dev libatk1.0-dev libbonoboui2-dev libcairo2-dev libx11-dev libxpm-dev libxt-dev | |
| sudo mkdir /usr/include/lua5.1/include | |
| sudo ln -s /usr/include/luajit-2.0 /usr/include/lua5.1/include | |
| cd ~ | |
| git clone https://github.com/vim/vim.git |
| import hudson.model.* | |
| def q = Jenkins.instance.queue | |
| q.items.each { | |
| if (it =~ /deploy-to/) { | |
| q.cancel(it.task) | |
| } | |
| } |
| # How to get ClamAV working on CentOS 7 | |
| yum -y install epel-release && yum -y update | |
| yum -y install clamav clamav-data clamav-scanner clamav-scanner-systemd clamav-server clamav-server-systemd clamav-unofficial-sigs clamav-update | |
| # Add /etc/clamd.d/freshclam.conf | |
| # Add /usr/lib/systemd/system/clamav-freshclam.service | |
| systemctl enable clamav-freshclam.service && systemctl start clamav-freshclam.service |
Assumes were using Linux/Kali
Bash Bunny is an awesome little device by Hak5 and I wrote down a few notes to quickly get started.
Plug in arming mode (closest to computer) Download firmware from: https://wiki.bashbunny.com/#!downloads.md Check checksum Follow instructions of placing into root of bashbunny drive/folder and eject/plug back in
Note: I did not author this, i found it somehwere.