Skip to content

Instantly share code, notes, and snippets.

View tbalz2319's full-sized avatar

Talal Balouch tbalz2319

View GitHub Profile
@tbalz2319
tbalz2319 / virtualenv.txt
Last active January 9, 2020 03:32
Create virtualenv for python
#How to activate the Python Virtual Environment
#MacOSX Mojave custom python from brew
virtualenv -p /usr/local/opt/python@2/bin/python venv
source venv/bin/activate
#Python 2.7+
virtualenv venv
source venv/bin/activate
@tbalz2319
tbalz2319 / software_install.sh
Last active January 3, 2019 04:30
Automate the installation of some of the software listed in software.md
# Pre-requisites
# Ensure Git is installed
#
cd /opt
mkdir -p apps
cd apps
#Install SecLists to /opt/apps
git clone git@github.com:danielmiessler/SecLists.git
@tbalz2319
tbalz2319 / software.md
Last active March 30, 2024 18:00
Software to Install/Configure on New Red/Blue/Purple Team Kali/Linux Box