Advanced Search
Search Results
502 total results found
Fun Odds and Ends
Docker Cheatsheet
Installation Ubuntu install_docker(){ sudo apt-get update sudo apt-get install -y \ ca-certificates \ curl \ gnupg \ lsb-release # Add docker's official GPG key sudo mkdir -p /etc/apt/keyrings curl...
Day 3 - Pictured Rocks and Other Stuff
Markdown Cheatsheet
You can use this site to generate the code for you. For example: ## Table of Contents - [Prerequisites](#prerequisites) - [Create](#create) --- ## Prerequisites - Stuff - Things --- ## Create - More stuff - More things Resource: https...
Day 4 - Marquette
Delete Email From All Mailboxes In Office 365
For full details please go to the following page Delete Email From All Mailboxes In Office 365 This assumes the following are trueSubject: You must change your bank password nowSent: 05/12/2020 1. Connect to MSOnline in Powershell Import-Module ExchangeOnli...
Dark Sky Parks and Northern Lights
Wireshark
Filter where the source ip is not 192.168.1.1 ip.src != 192.168.1.1 Filter where the destination ip is not 192.168.1.1 ip.dst != 192.168.1.1 Find packets with a string in them frame contains <thing to search> For example: frame contains google Resource...
Things To Do
TCPDump
Filter on port 80 tcpdump port 80 Filter on source port 80 tcpdump src port 80 Destination port 80 tcpdump dest port 80 All traffic for 192.168.1.1 tcpdump host 192.168.1.1 Save output tcpdump tcp -w output.pcap Resource: https://medium.com/swlh/intr...
Places to Stay
Pentesting Notes and Snippets
Recon Copy pasta stuff I use for recon - both inside and outside of a target. Host Discovery Ping Sweeping: IP_RANGE='192.168.0.0' SUBNET_MASK='/24' nmap -sn -oA onlineHosts "${IP_RANGE}/${SUBNET_MASK}" Copy `-sn`: Use ping scan for host di...
Parks
Powershell Master Cheatsheet
Hide a user from the Global Address List Set-ADUser paulie -Replace @{msExchHideFromAddressLists=$true} Unhide a user from the Global Address List Set-ADUser paulie -Replace @{msExchHideFromAddressLists=$false} Remove Object From Azure Recycl...
Hikes
Proxmox Cheatsheet
Put Node Into Maintenance ha-manager crm-command node-maintenance enable MUT7PVE201 Remove Node from Maintenance ha-manager crm-command node-maintenance disable MUT7PVE201 Remove Old Nodes From HA Delete the old node. pvecm delnode M1LHOSTP...
General Information
SQL Cheatsheet
Generic Queries Update field UPDATE table_name SET column1 = value1, column2 = value2, ... WHERE condition; Copy Get first row of data from table Replace table with a valid table in your db. SELECT * FROM <table> LIMIT 1; Copy Single-...