Skip to content

Instantly share code, notes, and snippets.

View nturley3's full-sized avatar

Nick Turley nturley3

  • Brigham Young University
  • Provo, UT
View GitHub Profile
@nturley3
nturley3 / kerberos_attacks_cheatsheet.md
Created October 4, 2021 22:48 — 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:

@nturley3
nturley3 / WireGuard_Setup.txt
Created July 30, 2021 22:42 — forked from chrisswanda/WireGuard_Setup.txt
Stupid simple setting up WireGuard - Server and multiple peers
Install WireGuard via whatever package manager you use. For me, I use apt.
$ sudo add-apt-repository ppa:wireguard/wireguard
$ sudo apt-get update
$ sudo apt-get install wireguard
MacOS
$ brew install wireguard-tools
Generate key your key pairs. The key pairs are just that, key pairs. They can be
@nturley3
nturley3 / gen_regex.py
Created July 19, 2018 19:21 — forked from JustinAzoff/gen_regex.py
Generate a case insensitive regex for bro
#!/usr/bin/env python
import sys
phrase = sys.argv[1]
parts = [l + l.upper() for l in phrase.lower()]
regex = ''.join(['[%s]' % part for part in parts])
print regex
@nturley3
nturley3 / rundeck_executions_cleanup.sh
Created April 25, 2018 05:46 — forked from shamil/rundeck_executions_cleanup.sh
Rundeck executions cleanup
#!/bin/bash -e
# see related issue: https://github.com/rundeck/rundeck/issues/357
# export required vars
export RD_URL=http://localhost:4440 RD_USER=admin RD_PASSWORD=admin RD_HTTP_TIMEOUT=300
# make sure rd & jq commands are in the PATH
which -- rd jq >/dev/null
del_executions() {