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!
Datenator 0.3.0 (event.php id) SQL Injection
============================================ Datenator 0.3.0 (event.php id) SQL Injection ============================================ # Exploit Title: Datenator 0.3.0 (event.php id) SQL Injection # Date: 26.12.09 # Author: The_HuliGun # Look on code in event.php: 22: if(isset($_GET['id'])) 23: { 24: $event = $datenator->read_event_info($_GET['id']); # Function read_event_info() is in file includes/functions.php 412: function read_event_info($event_id) 413: { 414: $sql = "SELECT * FROM 415: ".$this->getConfig('db_tableprefix')."events, 416: ".$this->getConfig('db_tableprefix')."events_repeat 417: WHERE 418: ".$this->getConfig('db_tableprefix')."events.event_id = ".$this->prepare_sql($event_id)." and 419: ".$this->getConfig('db_tableprefix')."events_repeat.repeat_event_id = ".$this->prepare_sql($event_id).""; 420: 421: $event_data=$this->db->Execute($sql); 422: 423: if($event_data) { 424: return $event_data; ... # As you can see variable id is not filtered, so, we can use such exploit with any php settings: http://[targethost]/[path]/event.php?id=[SQL] # Bug discovered by The_HuliGun # Greetz to: NaTka, hope you'll find yourself ;> # See u soon! # 0day.today [2024-11-15] #