| import pickle, sys | |
| from pathlib import Path | |
| p=Path(sys.argv[1]) if len(sys.argv)>1 else Path('evil.pkl') | |
| m=Path(r'C:/Users/uozer/AppData/Local/Temp/opencode/w51_StgCreateDocfile') | |
| if m.exists(): m.unlink() | |
| pickle.loads(p.read_bytes()) | |
| print('MARKER', m.exists(), m.stat().st_size if m.exists() else None) | |