Skip to content

Instantly share code, notes, and snippets.

View TheRepoMancom's full-sized avatar
🌴
On vacation

TheRepoMan TheRepoMancom

🌴
On vacation
  • TheRepoMan Production Dev.
  • 14:00 (UTC -07:00)
View GitHub Profile
@alexandruast
alexandruast / kali-linux-on-rpi.md
Last active November 30, 2023 04:06
Kali Linux 2020.1a on Raspberry Pi - Tor/VPN Router

Kali Linux 2020.1a 64bit on Raspberry Pi 4 - Tor/VPN Router

Complete Privacy for Everyone

UPDATE1: You should be using Tor Browser, and not a transparent Tor proxy!
More information: https://trac.torproject.org/projects/tor/wiki/doc/TransparentProxy
UPDATE2: The tutorial has been rewritten to be shorter and more concise.

Installing Kali Linux

@ryan-blunden
ryan-blunden / install-sourcegraph-ubuntu.sh
Last active November 27, 2023 09:58
Install Sourcegraph on Ubuntu 18.04
#!/usr/bin/env bash
export SOURCEGRAPH_VERSION=3.14.0
export USER_HOME=/home/ubuntu
export SOURCEGRAPH_CONFIG=/etc/sourcegraph
export SOURCEGRAPH_DATA=/var/opt/sourcegraph
export PATH=$PATH:/usr/local/bin
export DEBIAN_FRONTEND=noninteractive
export CAROOT=${SOURCEGRAPH_CONFIG}
export IP_ADDRESS=$(echo $(hostname -I) | awk '{print $1;}')
@warecrash
warecrash / makekali.sh
Last active April 25, 2026 06:27
Convert Debian to Kali
apt update
apt -y install wget gnupg dirmngr
wget -q -O - https://archive.kali.org/archive-key.asc | gpg --import
gpg --keyserver hkp://keys.gnupg.net --recv-key 44C6513A8E4FB3D30875F758ED444FF07D8D0BF6
echo "deb http://http.kali.org/kali kali-rolling main non-free contrib" >> /etc/apt/sources.list
gpg -a --export ED444FF07D8D0BF6 | sudo apt-key add -
apt update
apt -y upgrade
apt -y dist-upgrade
apt -y autoremove --purge
@LeeWarnock
LeeWarnock / Install Full Kali Linux from Default Raspberry Pi install of Kali Lite
Last active November 30, 2023 04:08
Install Kali Full onto Raspberry Pi via Berryboot
This assumes Berryboot is installed:
1. From berryboot menu, install Kali Lite
2. Boot into Kali Lite
3. Open Terminal
Remove the sana repo from the sources.list
4. cd /etc/apt
5. rm sources.list
@jgamblin
jgamblin / gist:2441964a1266764ed71f3243f87bbeec
Created May 8, 2016 00:02
Install Raspi-Config and rpi-update on Kali.
sudo apt-get update
sudo apt-get install lua5.1 alsa-utils triggerhappy curl libcurl3
wget http://archive.raspberrypi.org/debian/pool/main/r/raspi-config/raspi-config_20160322_all.deb
wget http://archive.raspberrypi.org/debian/pool/main/r/rpi-update/rpi-update_20140705_all.deb
dpkg -i raspi-config_20160322_all.deb
dpkg -i rpi-update_20140705_all.deb
@vanhalt
vanhalt / kali-arm_raspberry3.md
Created March 30, 2016 05:38
Kali Linux ARM (kali-2.1.2-rpi2.img) running on Raspberry 3 with a 32GB micro sd
@rishigb
rishigb / gist:df2859f72db7c750ceb1
Last active November 30, 2023 04:14
Kali Linux on Raspberry Pi - begin
Step 1: Download the image from https://www.offensive-security.com/kali-linux-vmware-arm-image-download/
Step 2 : Decompress the .xz by using xz --decompress kali-1.1.0-rpi2.img.xz , you might need to install xz on mac.
Step 3: Insert the SD Card in your mac
Step 4: diskutil unmount /disk/name
Step 5: sudo dd if=/location/of/kali.img of=/dev/diskname bs=512k
All set!