Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import base64
- data = open('slave.jar', 'r').read()
- encoded = base64.b64encode(data)
- f = open('demofile2.txt', 'a')
- f.write(encoded); f.close()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement