I hereby claim:
- I am luker983 on github.
- I am luker983 (https://keybase.io/luker983) on keybase.
- I have a public key ASCBN-K7O3DKTH6pTU7donpRU5ZjiS4v6h9ahrQbV09Vmwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
from pwn import * | |
context.update(arch='amd64') | |
exe = './server.rb' | |
host = args.HOST or '52.192.42.215' | |
port = int(args.PORT or 9427) |
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
from pwn import * | |
import subprocess | |
from Crypto.Util.number import bytes_to_long, long_to_bytes | |
from Crypto.Cipher import AES | |
import hashlib | |
import os | |
import base64 | |
from gmpy2 import is_prime |