Skip to content

Instantly share code, notes, and snippets.

View crtdll's full-sized avatar
🚩

Cameron crtdll

🚩
View GitHub Profile
@crtdll
crtdll / rtti.py
Created September 20, 2024 11:05
Replace RTTI information with text from an input string file
import sys, os
def main():
if len(sys.argv) < 3:
print('Usage: py rtti.py <path> <txt>')
return 1
path = sys.argv[1]
if not os.path.exists(path):
print('Input file not found')
@crtdll
crtdll / payload.asm
Created May 27, 2020 23:31
PPC payload to dump the security engines infamous 0x100F0 hash data
mflr r12
std r12, -8(r1)
std r31, -0x10(r1)
std r30, -0x18(r1)
std r29, -0x20(r1)
std r28, -0x28(r1)
std r27, -0x30(r1)
std r26, -0x38(r1)
std r25, -0x40(r1)
std r24, -0x48(r1)