Initializing VAULT-TEC OS...
Loading security protocols...
Establishing secure connection...
Connection established.
SYSTEM READY

Vault-Tec Terminal

ABOUT POSTS NOTES TOOLS

CheatSheets

CURL DNS File Transfer Hydra Impacket JohnTheRipper NCAT NMAP Online Resources Reverse Shell Wordlists

Active Directory

Mindmap Attacking AD Linux AD

Cloud

AWS Azure Google Terraform

Container

Docker Kubernetes

Linux

Penetration Testing Checklist Enumeration Privilege Escalation Post Exploitation Services Tools

Network

Data Exfiltration Port Scanning Reconnaissance Pivoting Services Traffic Analysis

Tech Stack

CMS Databases DevOps Enterprise Apps IAM Monitoring Open-Source Utilities Web Servers

Windows

AV/EDR Evasion Enumeration Privilege Escalation Post Exploitation

Web Application

Reconnaissance Common Vulnerabilities Authentication Bypass API Testing

Useful tools

Tee

The tee command in Linux reads from standard input and writes to standard output and one or more files simultaneously.

#tee Command Syntax:
tee [OPTIONS] [FILE] 

#OPTIONS :
-a (--append) #Do not overwrite the files instead append to the given files.
-i (--ignore-interrupts) #Ignore interrupt signals.

#Example:
python3 sqlmap.py -u example.com | tee -a sqlmap_results.txt

Tmux

Tmux is a terminal multiplexer; it allows you to create several “pseudo terminals” from a single terminal.

Tmux CheatSheet

#Create session
tmux new -s [sessionName]
    
#Two panes vertical
Ctrl+B -> shift+5 (%)
    
#Activate mouse scroll:
tmux set -g mouse on

#Go to your session
tmux a -t [sessionName]

Xfreerdp

FreeRDP is a free implementation of the Remote Desktop Protocol (RDP).

#Basic Commands
xfreerdp /dynamic-resolution +clipboard /cert:ignore /v:<IP> /u:<username> /p:'<password>'
xfreerdp /v:<IP> /u:<DOMAIN>\\<username> /pth:<NTLM_HASH>

Sublime Text

#Download and store the GPG key securely:
wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo tee /usr/share/keyrings/sublime-text.gpg > /dev/null

#Add the Sublime Text repository:
echo "deb [signed-by=/usr/share/keyrings/sublime-text.gpg] https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list

#Update package lists and install Sublime Text:
sudo apt update && sudo apt install sublime-text -y