blob: 9ecf26db6a4fe9f4e7e7d65525ad72cf3097d1a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<html>
<script>
function loadMalwareImage() {
setTimeout(function() {
var img = new Image();
img.src = "malware_image.png";
document.body.appendChild(img);
}, 1);
}
function navigateAndLoadMalwareImage() {
loadMalwareImage();
window.location.href="/never_completes";
}
</script>
<body>
</body>
</html>
|