usb_armory_kali
Kali on USB Armory
Note: this is an unencrypted install!
Install Kali on the SDcard
Forward traffic from USB Armory
Configure forwarding:
echo "net.ipv4.conf.eno1.forwarding = 1" >> /etc/sysctl.d/50-forwarding.conf
sysctl -p
Add direct rules to firewalld. The
--permanent
option to keep these rules across restarts. Interface
eno1
is the interface connected to the rest of the network.
firewall-cmd --permanent --direct --add-rule ipv4 nat POSTROUTING 0 -o eno1 -j MASQUERADE
firewall-cmd --permanent --direct --add-rule ipv4 filter FORWARD 0 -i enp0s20f0u1 -o eno1 -j ACCEPT
firewall-cmd --permanent --direct --add-rule ipv4 filter FORWARD 0 -i eno1 -o enp0s20f0u1 -m state --state RELATED,ESTABLISHED -j ACCEPT
firewall-cmd --reload
Fix: does not boot after apt-get update
Mount the SDcard and add the following modules to
/etc/modules
:
ledtrig_heartbeat # comment this line if you don't want that intense blinking LED.
ci_hdrc_imx
#g_mass_storage
g_ether
Expand root filesystem
usb_armory_kali.txt · Last modified: 2018/02/11 17:04 by admin