Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- output = open("out.html", "w")
- file_head = """
- <html>
- <head>
- <title>This is an BOMB</title>
- </head>
- <body>
- <p>Please respect the robots.txt file</p>
- <p>Contact Alex - alex@osqdu.org</p>
- """
- output.writelines(file_head)
- i = 0
- bomb = "<br/>" * 100
- while i < 1024*1024*2: #1M
- output.writelines(bomb)
- i += 1
- output.writelines("<p>活该!</p>\n</body>\n</html>")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement