-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmalvertising.html
More file actions
26 lines (25 loc) · 869 Bytes
/
malvertising.html
File metadata and controls
26 lines (25 loc) · 869 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fake Download Ad</title>
<style>
body { font-family: Arial, sans-serif; text-align: center; margin-top: 50px; }
.fake-ad { width: 300px; height: 250px; background: red; color: white; padding: 20px; border-radius: 10px; cursor: pointer; }
</style>
</head>
<body>
<h2>Example: Fake Download Ad</h2>
<div class="fake-ad" onclick="alert('This would trigger a malicious download in real malvertising!')">
<h3>DOWNLOAD NOW</h3>
<p>Fast & Free - Click Here!</p>
</div>
<script>
<iframe src="ads/popup1.html" style="width:100px; height:100px;"></iframe>
</script>
<script>
setTimeout(() => { window.location.href = "ads/popup2.html"; }, 15000);
</script>
</body>
</html>