XRayCMS 1.1.1 SQL Injection Vulnerability

2012-02-07 / 2012-02-09
Credit: chap0
Risk: Medium
Local: No
Remote: Yes
CWE: CWE-89


Ogólna skala CVSS: 7.5/10
Znaczenie: 6.4/10
Łatwość wykorzystania: 10/10
Wymagany dostęp: Zdalny
Złożoność ataku: Niska
Autoryzacja: Nie wymagana
Wpływ na poufność: Częściowy
Wpływ na integralność: Częściowy
Wpływ na dostępność: Częściowy

# Exploit Title: XRayCMS 1.1.1 SQL Injection Vulnerability # Date: 2/5/2012 # Author: chap0 # Software Link: http://sourceforge.net/projects/xraycms/files/latest/download # Version: 1.1.1 # Tested on: Ubuntu XRay CMS is vulnerable to a SQL Injection attack which allows authentication bypass into the admins account. If a malicious user supplies ' or 1=1# into the applications user name field they will be logged into the applications admin account. Jan 29, 2012 – Contacted Vendor No Response Feb 05, 2012 – Public Disclosure Since the vendor did not reply we attempted to create our own fixes for this issue. The vulnerability exist in “login2.php” on lines 20 and 21. 17 if(!isset($_POST['username'])) header("Location: login.php?error_username"); 18 if(!isset($_POST['password'])) header("Location: login.php?error_password"); 19 20 $user = $_POST['username']; 21 $pass = $_POST['password']; If the lines 20 and 21 are changed to: $user = mysql_real_escape_string($_POST['username']); $pass = mysql_real_escape_string($_POST['password']); This will prevent the sql injection from happening in the user name field.

Referencje:

http://sourceforge.net/projects/xraycms/files/latest/download


Vote for this issue:
50%
50%


 

Thanks for you vote!


 

Thanks for you comment!
Your message is in quarantine 48 hours.

Comment it here.


(*) - required fields.  
{{ x.nick }} | Date: {{ x.ux * 1000 | date:'yyyy-MM-dd' }} {{ x.ux * 1000 | date:'HH:mm' }} CET+1
{{ x.comment }}

Copyright 2024, cxsecurity.com

 

Back to Top