6.8
CVSSv2

CVE-2009-4561

Published: 04/01/2010 Updated: 19/09/2017
CVSS v2 Base Score: 6.8 | Impact Score: 6.4 | Exploitability Score: 8.6
VMScore: 685
Vector: AV:N/AC:M/Au:N/C:P/I:P/A:P

Vulnerability Summary

Multiple SQL injection vulnerabilities in Admin/index.php in WebLeague 2.2.0, when magic_quotes_gpc is disabled, allow remote malicious users to execute arbitrary SQL commands via the (1) username and (2) password parameters.

Vulnerable Product Search on Vulmon Subscribe to Product

worms-league webleague 2.2.0

Exploits

#!/usr/bin/perl -W # # WebLeague 220 Remote Admin Bypass p0c # written by ka0x <ka0x01[at]gmailcom> # # need magic_quotes_gpc = Off # # Vuln code (Admin/indexphp) : # # 10: $sql="SELECT * FROM $admintable WHERE name = '$_POST[username]' AND password = '$_POST[password]'"; // ---> NOT CLEAN $_POST VARS # 11: $result=mysql_query($sql,$db ...