Skip to content

Instantly share code, notes, and snippets.

View tdwalton's full-sized avatar

Trevor Walton tdwalton

View GitHub Profile
@mubix
mubix / infosec_newbie.md
Last active July 4, 2024 21:11
How to start in Infosec
@TarlogicSecurity
TarlogicSecurity / kerberos_attacks_cheatsheet.md
Created May 14, 2019 13:33
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:

@ScottMcGready
ScottMcGready / Resources.md
Last active August 2, 2020 18:12
OSINT Tips & Tricks Stream resources

OSINT Stream

This is a list of all the resources I spoke abotu during the OSINT tips and tricks stream. If you have questions, feel free to reach out on Twitter.

Infographic cheatsheet

![infographic][infographic]

Infographic (by @ddsgerard) available here.

Tools Used

@mauvehed
mauvehed / enable_to_sudo_authenticate_with_touch_id.sh
Last active May 18, 2024 20:36
Enable sudo auth for macOS touchID via pam
#!/bin/bash
#
# credit to machupicchubeta/dotfiles/bin/enable_to_sudo_authenticate_with_touch_id.sh
set -eu
set -o pipefail
sudo chmod +w /etc/pam.d/sudo
if ! grep -Eq '^auth\s.*\spam_tid\.so$' /etc/pam.d/sudo; then
( set -e; set -o pipefail
# Add "pam_tid.so" to a first authentication
@timothyham
timothyham / ipv6guide.md
Last active July 25, 2024 18:49
A Short IPv6 Guide for Home IPv4 Admins

A Short IPv6 Guide for Home IPv4 Admins

This guide is for homelab admins who understand IPv4s well but find setting up IPv6 hard or annoying because things work differently. In some ways, managing an IPv6 network can be simpler than IPv4, one just needs to learn some new concepts and discard some old ones.

Let’s begin.

First of all, there are some concepts that one must unlearn from ipv4:

Concept 1