| Ageis crackme :3 |
As far as I got:
1. Patch the pyc to replace the marshal with lolloll and made a file called lolloll.py containing the following:
print("test")
def loads(a):
f = open("dump.bin","wb")
f.write(a)
f.close()
pass
This dumps the second stage
2. Used https://gist.githubusercontent.com/stecman/3751ac494795164efa82a683130cabe5/raw/1c32ecb3e5bf5a97ba859583702308fa7bbae1f0/marshal-to-pyc.py to convert dump.bin to a pyc
3. Used pylingual, grabbed the code loaded to _code, converted to a pyc, decompiled it |
2026-06-03 14:33 |