File size: 312 Bytes
2dcefdb | 1 2 3 4 5 6 7 8 | 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)
|