зеркало из https://github.com/openwpm/OpenWPM.git
19 строки
654 B
HTML
19 строки
654 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Simple Page A</title>
|
|
<script type="application/javascript">
|
|
function set_cookie() {
|
|
document.cookie = 'test_cookie=Test-Page-A; expires=Tue, 31 Dec 2030 00:00:00 UTC; path=/';
|
|
console.log(window.navigator.userAgent);
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="set_cookie()">
|
|
<a href="http://localhost:8000/test_pages/simple_c.html">Click me!</a>
|
|
<a href="simple_d.html">Click me also!</a>
|
|
<a href="javascript:alert(1)">Click me for a JS alert!</a>
|
|
<a href="https://www.google.com">Go to google.com</a>
|
|
<a href="http://example.com/test.html?localhost">Go to example.com</a>
|
|
</body></html>
|