Update index.html
Browse files- index.html +18 -18
index.html
CHANGED
@@ -33,7 +33,24 @@ button:hover {
|
|
33 |
}
|
34 |
|
35 |
</style>
|
36 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
document.getElementById('phishingAttack').addEventListener('click', () => {
|
38 |
document.getElementById('attack-result').innerHTML = `
|
39 |
<h3>Kimlik Avı Saldırısı!</h3>
|
@@ -117,23 +134,6 @@ function handleMalwareResponse(removed) {
|
|
117 |
`;
|
118 |
}
|
119 |
}
|
120 |
-
|
121 |
</script>
|
122 |
-
</head>
|
123 |
-
<body style="background-color: rgb(12, 185, 228);">
|
124 |
-
<header>
|
125 |
-
<h1 style="font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif">Saldırı Simülatörü</h1>
|
126 |
-
</header>
|
127 |
-
<main style="color: rgb(89, 0, 233);">
|
128 |
-
<section id="attack-simulator">
|
129 |
-
<h2>Simülasyon Senaryoları</h2>
|
130 |
-
<button id="phishingAttack">Kimlik Avı Saldırısı</button>
|
131 |
-
<button id="ransomwareAttack">Fidye Yazılımı Saldırısı</button>
|
132 |
-
<button id="ddosAttack">DDoS Saldırısı</button>
|
133 |
-
<button id="malwareAttack">Kötü Amaçlı Yazılım Saldırısı</button>
|
134 |
-
<div id="attack-result"></div>
|
135 |
-
</section>
|
136 |
-
</main>
|
137 |
-
<script src="scripts.js"></script>
|
138 |
</body>
|
139 |
</html>
|
|
|
33 |
}
|
34 |
|
35 |
</style>
|
36 |
+
|
37 |
+
</head>
|
38 |
+
<body style="background-color: rgb(12, 185, 228);">
|
39 |
+
<header>
|
40 |
+
<h1 style="font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif">Saldırı Simülatörü</h1>
|
41 |
+
</header>
|
42 |
+
<main style="color: rgb(89, 0, 233);">
|
43 |
+
<section id="attack-simulator">
|
44 |
+
<h2>Simülasyon Senaryoları</h2>
|
45 |
+
<button id="phishingAttack">Kimlik Avı Saldırısı</button>
|
46 |
+
<button id="ransomwareAttack">Fidye Yazılımı Saldırısı</button>
|
47 |
+
<button id="ddosAttack">DDoS Saldırısı</button>
|
48 |
+
<button id="malwareAttack">Kötü Amaçlı Yazılım Saldırısı</button>
|
49 |
+
<div id="attack-result"></div>
|
50 |
+
</section>
|
51 |
+
</main>
|
52 |
+
<script src="scripts.js"></script>
|
53 |
+
<script>
|
54 |
document.getElementById('phishingAttack').addEventListener('click', () => {
|
55 |
document.getElementById('attack-result').innerHTML = `
|
56 |
<h3>Kimlik Avı Saldırısı!</h3>
|
|
|
134 |
`;
|
135 |
}
|
136 |
}
|
|
|
137 |
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
138 |
</body>
|
139 |
</html>
|