7.5
CVSSv2

CVE-2007-5222

Published: 05/10/2007 Updated: 14/02/2024
CVSS v2 Base Score: 7.5 | Impact Score: 6.4 | Exploitability Score: 10
VMScore: 760
Vector: AV:N/AC:L/Au:N/C:P/I:P/A:P

Vulnerability Summary

SQL injection vulnerability in index.php in MAXdev MDPro (MD-Pro) 1.0.76 allows remote malicious users to execute arbitrary SQL commands via a "Firefox ID=" substring in a Referer HTTP header.

Vulnerable Product Search on Vulmon Subscribe to Product

maxdev mdpro 1.0.76

Exploits

source: wwwsecurityfocuscom/bid/25864/info MD-Pro 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 underlyin ...
#!/usr/bin/perl use strict; use IO::Socket; my $app = "MDPro 1076"; my $type = "SQL Injection"; my $author = "undefined1_"; my $settings = "magic_quotes_runtime = off, mysql >= 410"; $| = 1; print ":: $app $type - by $author ::\n\n\n"; my $url = shift || usage(); if($url =~ m/^(?:http:\/\/)(*)/) { $url = $1; } if($url !~ m/^*\/$/) { ...