Just another person who enjoys taking things apart to see how they work.
I spend my days (and nights) staring at Python bytecode, extracting PyInstaller packages, and wondering why variable names like _0x4f3a2b exist. This GitHub is where I dump the results of my... let's call it "curiosity."
- π Python Decompilation β Turning
.pycfiles back into something readable (mostly) - π Malware Analysis β Figuring out what sketchy Python scripts actually do
- π¦ PyInstaller Extraction β Unpacking executables like digital presents
- π§© Obfuscation Reversal β Cleaning up code someone tried really hard to hide
- π€ Asking "Why?" β The most important tool in any reverser's arsenal
| Project | Description |
|---|---|
| CracksTheCodes | Collection of decompiled Python code from various sources. Educational purposes only. |
- uncompyle6 / decompyle3 β My precious
- pycdc β When the old tools give up
- pyinstxtractor β Unwrapping PyInstaller like Christmas morning
- xdis β For when Python versions get weird
- π§ Brain β The tool that does 90% of the work (and 100% of the suffering)
Trying to decompile a particularly stubborn piece of Python 3.11 bytecode. The tools keep failing. My brain is slowly melting. Send coffee.
# Current mental state represented in code
while not decompiled:
try:
result = decompile(mystery_file)
print("Success! ...wait, this makes no sense")
except Exception as e:
print(f"Failed again: {e}")
coffee_drunk += 1
if coffee_drunk > 5:
print("Taking a nap. Will try again in 3 hours.")
time.sleep(10800)- π¦ Twitter (soon): @AtomixClub β I post about reverse engineering finds
- π¬ Discord (soon): AtomixClub Server β Come talk decompilation
- π§ Email: atomixclub@goatmail.uk β For serious inquiries only (no, I won't crack your ex's Instagram)
Everything I share is for educational and research purposes only. I only decompile code I have permission to analyze, or code that's already public (malware samples, abandoned projects, etc.).
If you're a developer and you find your code here and want it removed? Just ask. I'm reasonable. Probably.
That's how many people have wandered into this corner of GitHub. Welcome!
Currently staring at: Python 3.11 bytecode
Current coffee level: βββββ (5/5)
Current sanity level: ββββββββββ (50%)
β AtomixClub