Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

502 total results found

Fun Odds and Ends

Central UP Trip - KM and DB

Docker Cheatsheet

Docker - Cheatsheet Main

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

Central UP Trip - KM and DB

Markdown Cheatsheet

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

Central UP Trip - KM and DB

Delete Email From All Mailboxes In Office 365

M365 - Scripts Email Management

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

Central UP Trip - KM and DB

Wireshark

Packet Capturing - Cheatsheet

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

Hocking Hills

TCPDump

Packet Capturing - Cheatsheet

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

Hocking Hills

Pentesting Notes and Snippets

Pentesting Notes and Snippets - Cheatsheet Main

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

Hocking Hills

Powershell Master Cheatsheet

Powershell Master Cheatsheet - 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

Hocking Hills

Proxmox Cheatsheet

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

Hocking Hills

SQL Cheatsheet

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-...