Skip to content

Instantly share code, notes, and snippets.

View oq2o's full-sized avatar
🥹
listening on [any] 4444 ...

oq2o

🥹
listening on [any] 4444 ...
View GitHub Profile
@oq2o
oq2o / kerberos_attacks_cheatsheet.md
Created October 4, 2025 14:11 — forked from TarlogicSecurity/kerberos_attacks_cheatsheet.md
A cheatsheet with commands that can be used to perform kerberos attacks

Kerberos cheatsheet

Bruteforcing

With kerbrute.py:

python kerbrute.py -domain <domain_name> -users <users_file> -passwords <passwords_file> -outputfile <output_file>

With Rubeus version with brute module:

[CmdletBinding()]
param (
[Parameter(
Mandatory,
ValueFromPipelineByPropertyName,
Position=1
)]
[ValidateNotNullOrEmpty()]
[string]
$ComputerName,
#!/usr/bin/python3
#
# strippalyzer-V2.py
# We don't speak about V1...
# Author: oq2o
#
# Add me to $PATH!
import argparse
import csv
@oq2o
oq2o / strippalyzer.py
Last active September 12, 2024 13:38
I often want the version info quickly from Wappalyzer but not all the other text, I just wanted to easily highlight the text and paste it into my notes...
#!/usr/bin/python3
#
# strippalyzer.py
# I swear to God it's useful... >.>
# Author: oq2o
#
# Add me to $PATH!
import argparse
@oq2o
oq2o / startstop-nessus.sh
Created August 17, 2024 02:24
Bash script to start/stop the nessusd service and run nessus in firefox
#!/bin/bash
NESSUS_URL="https://127.0.0.1:8834/"
start_nessusd() {
sudo systemctl start nessusd.service
if [ $? -ne 0 ]; then
printf "Failed to start nessusd.service\n"
exit 1
fi
}