Skip to content

Instantly share code, notes, and snippets.

@ssh30
ssh30 / kerberos_attacks_cheatsheet.md
Created May 26, 2020 01:28 — 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:

Keybase proof

I hereby claim:

  • I am ssh30 on github.
  • I am sigma4 (https://keybase.io/sigma4) on keybase.
  • I have a public key ASD1zkiB74y7l_GXz9T3RCj7pnVnurhr-US2kojyxJRnMAo

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am ssh30 on github.
  • I am sigma4 (https://keybase.io/sigma4) on keybase.
  • I have a public key whose fingerprint is 5FD5 9190 81E1 F3D5 3307 E0E0 7CCB AFD5 A07E 8229

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am ssh30 on github.
  • I am sigma0100 (https://keybase.io/sigma0100) on keybase.
  • I have a public key ASB51ZcGEj9RWZtxegFZ_uORnJ9_hhsS1baLY0DFGpVuRQo

To claim this, I am signing this object:

@ssh30
ssh30 / clone.py
Created August 25, 2017 14:54 — forked from snobear/clone.py
Clone VM from template with pyVmomi
#!/usr/bin/env python
"""
NOTE:
This gist has been moved to EZmomi:
https://github.com/snobear/ezmomi
Give it a star or fork. Contributions are more than welcome. I'm hoping it will become an easy cli tool for
common VMware tasks.
@ssh30
ssh30 / keybase.md
Created May 24, 2017 02:31
keybase

Keybase proof

I hereby claim:

  • I am ssh30 on github.
  • I am sigma4 (https://keybase.io/sigma4) on keybase.
  • I have a public key whose fingerprint is 1B6A DC3B F798 0178 B1A7 6712 0E5C FFBD 1A3B 2F50

To claim this, I am signing this object:

@ssh30
ssh30 / imap_monitor
Created May 11, 2016 20:18 — forked from shimofuri/imap_monitor
Python script for monitoring an IMAP folder
Each existing unread and subsequent new emails after the script is started are
passed as Mail objects to "process_email" function.Function header is provided
but processing implementation is left to the user. Error logs are currently sent
to a rotating log file (in the same directory as the script) and to STDOUT.
Instead of polling or checking the server for new emails every now and then,
IMAP IDLE check is utilized. Ensure that the IMAP server supports IDLE command
and allows at least 5 minutes of idling*** and uses the default ports for this
script to work. Tested to work with Gmail and default installations of MS
Exchange Server.