Skip to content

Instantly share code, notes, and snippets.

View KRKNUK's full-sized avatar

Jake KRKNUK

View GitHub Profile
@KRKNUK
KRKNUK / ports.py
Last active June 17, 2021 18:37 — forked from pry0cc/ports.py
Get all ports from an nmap XML output file in the host:ip format (updated to Python3)
#!/usr/bin/env python
## $ ports.py nmap.xml
## 8.8.8.8:80
## 8.8.8.8:443
## 8.8.8.8:3305
#install requirements: pip install python-libnmap
#uses python 2
#usage is something like ./python nmapParse.py scan.xml
@KRKNUK
KRKNUK / Kali_Tools.sh
Last active August 7, 2021 13:29
Install Tools
#!/bin/bash
#Don't forget to mark as executable "chmod +x Kali_Tools.sh"
# run update
sudo apt update
# Install PIP3
sudo apt install python3-pip
# Seclists
@KRKNUK
KRKNUK / VSCode.sh
Last active April 3, 2021 17:41
Install vscode
#!/bin/bash
sudo apt update
sudo apt install curl gpg software-properties-common apt-transport-https
wget -qO- https://packages.microsoft.com/keys/microsoft.asc | sudo tee /usr/share/keyrings/microsoft.asc
echo "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main" | sudo tee /etc/apt/sources.list.d/vscode.list
sudo apt-key adv --keyserver keyserver.ubuntu.com -recv-keys EB3E94ADBE1229CF
sudo apt update
sudo apt install code