Skip to content

Instantly share code, notes, and snippets.

View austinsonger's full-sized avatar
🙃
Localhost

Austin Songer, CISSP austinsonger

🙃
Localhost
View GitHub Profile
@austinsonger
austinsonger / showterm.sh
Created December 31, 2019 22:16
Terminal Record with Showterm
sudo apt install rubygems -y
sudo gem install showterm
# You can start recording the session by just running the command "showterm" and type exit once you finish recording.
@austinsonger
austinsonger / pwlist1.txt
Created January 1, 2020 02:50
Password List
p455w0rd
p455w0rD
p455w0Rd
p455w0RD
p455W0rd
p455W0rD
p455W0Rd
p455W0RD
P455w0rd
@austinsonger
austinsonger / setupalgovpn.sh
Last active February 5, 2020 00:03
Setup Algo VPN (Debian-Based System)
sudo apt update -y && sudo apt upgrade -y
sudo apt install -y python3-virtualenv
git clone https://github.com/trailofbits/algo.git && cd algo
## Install ALGO Env.
python3 -m virtualenv --python="$(command -v python3)" .env &&
source .env/bin/activate &&
python3 -m pip install -U pip virtualenv &&
python3 -m pip install -r requirements.txt
@austinsonger
austinsonger / setupalgovpn.sh
Created January 3, 2020 20:47
Setup Algo VPN (RedHat-Based System)
sudo yum -y install epel-release
sudo yum install -y python36-virtualenv
git clone https://github.com/trailofbits/algo.git
cd algo
## Install ALGO Env.
python3 -m virtualenv --python="$(command -v python3)" .env &&
source .env/bin/activate &&
python3 -m pip install -U pip virtualenv &&
python3 -m pip install -r requirements.txt
@austinsonger
austinsonger / osx_pentest_prefs.sh
Created January 5, 2020 06:33 — forked from pwntoken/osx_pentest_prefs.sh
OSX Penetration Test Preferences Lab Setup
# OSX for Pentesting (Mavericks/Yosemite)
# macOS Sierra shall be updated;
# This's a fork, folks - suck in the caffeine!
# http://pwntoken.github.io/
#!/bin/sh
# Ask for the administrator password upfront
echo "Have you read through the script prior to running this? (y or n)"
@austinsonger
austinsonger / gophish.sh
Created January 6, 2020 21:45
Gophish As a Service
#!/bin/bash
# /etc/init.d/gophish
# initialization file for stop/start of gophish application server
#
# chkconfig: - 64 36
# description: stops/starts gophish application server
# processname:gophish
# config:/opt/goapps/src/github.com/gophish/gophish/config.json
# define script variables
@austinsonger
austinsonger / README.md
Last active April 26, 2025 17:16
Gophish As a Service

GoPhish As A Service

@austinsonger
austinsonger / installrdp.sh
Last active March 11, 2020 20:09
Installing RDP
sudo apt install gdm3 -y
sudo sed -i "s/^# AutomaticLoginEnable = true/ AutomaticLoginEnable = true/" /etc/gdm3/custom.conf
sudo sed -i "s/^# AutomaticLogin = user1/ AutomaticLogin = kali/" /etc/gdm3/custom.conf
sudo apt install xfce4 -y
sudo apt install xrdp -y
sudo adduser xrdp ssl-cert
echo xfce4-session >~/.xsession
# sudo nano /etc/xrdp/xrdp.ini
# exec startxfce4
# nano /etc/xrdp/startwm.sh
@austinsonger
austinsonger / newubuntu.sh
Last active February 11, 2020 23:26
New Ubuntu VM
sudo -n true
sudo apt update -y
sudo apt list --upgradable -a
sudo apt upgrade -y
sudo dpkg --configure -a
sudo apt install -f
sudo apt update --fix-missing
sudo apt --fix-broken install -y
sudo apt install apt-transport-https ca-certificates curl software-properties-common -y
sudo apt install ubuntu-restricted-extras -y
@austinsonger
austinsonger / pentestsetup.sh
Last active December 10, 2024 05:39
Pentesting Setup
sudo apt-get update -y && sudo apt-get upgrade -y
# Frameworks
## Go
mkdir -p ~/Downloads/gitrepos && cd ~/Downloads/gitrepos
wget https://dl.google.com/go/go1.12.9.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.12.9.linux-amd64.tar.gz
export PATH=$PATH:/usr/local/go/bin
## Nodejs and NPM