[ create a new paste ] login | about

Link: http://codepad.org/ufdWZYPr    [ raw code | fork ]

Python, pasted on Mar 7:
1
2
3
4
5
6
7
8
import os
if not os.path.exists('Jane2ch.exe.bak'):
    os.rename('Jane2ch.exe', 'Jane2ch.exe.bak')
content = open('Jane2ch.exe.bak', 'rb').read()
out = open('Jane2ch.exe', 'wb')
out.write(content[:0x1dd942])
out.write(chr(0xeb))
out.write(content[0x1dd943:])


Create a new paste based on this one


Comments: