This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
""" | |
BlackHat USA session watcher | |
by Grant Hernandez. | |
Monitor sessions (briefings) to see when new ones are added. | |
Tested: Thu Jun 4 11:41:59 EDT 2020 | |
""" | |
import requests |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
import importlib | |
class ImportInterceptor(importlib.abc.Loader): | |
def __init__(self): | |
pass | |
def find_module(self, fullname, path=None): | |
#sys.stderr.write("LOAD INFO: %s\n" % (fullname)) | |
return self |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
HELP=""" | |
Samsung EPIC Decrypter | |
by @Digital_Cold, Aug 2022 | |
Samsung EPIC is a power management daemon for Android. It stores its profiles | |
in AES CFB encrypted JSON files. The key is hardcoded per build in an ELF | |
section. By extracting the key and using the same decryption, we can recover | |
the JSON file. |
OlderNewer