Skip to content

Instantly share code, notes, and snippets.

View 3xocyte's full-sized avatar

Matt Bush 3xocyte

  • Atlassian
  • Melbourne, Australia
View GitHub Profile
@3xocyte
3xocyte / chromedump2.py
Last active February 8, 2021 10:22
agentless Google Chrome post-exploitation script
#!/usr/bin/env python3
# by Matt Bush (@3xocyte)
import os
import sys
import logging
import argparse
import traceback
import time
@3xocyte
3xocyte / lazykatz.py
Last active June 26, 2024 18:32
quickly dump creds from a box you've pwned while living off the land (feat. obfuscation and pypykatz automation)
#!/usr/bin/env python3
import argparse
import sys
import logging
import random
import string
import os
from time import sleep