This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
p455w0rd | |
p455w0rD | |
p455w0Rd | |
p455w0RD | |
p455W0rd | |
p455W0rD | |
p455W0Rd | |
p455W0RD | |
P455w0rd |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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)" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |