File size: 1,439 Bytes
d7f6772 8274844 d7f6772 c8488cc |
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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Saldırı Simülatörü</title>
<link rel="stylesheet" href="styles.css">
<style>
#attack-simulator {
margin: 20px;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
button {
margin: 10px;
padding: 10px 20px;
background-color: #dd3333;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
button:hover {
background-color: #6b1515;
}
#attack-result {
margin-top: 20px;
}
</style>
</head>
<body style="background-color: rgb(12, 185, 228);">
<header>
<h1 style="font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif">Saldırı Simülatörü</h1>
</header>
<main style="color: rgb(89, 0, 233);">
<section id="attack-simulator">
<h2>Simülasyon Senaryoları</h2>
<button id="phishingAttack">Kimlik Avı Saldırısı</button>
<button id="ransomwareAttack">Fidye Yazılımı Saldırısı</button>
<button id="ddosAttack">DDoS Saldırısı</button>
<button id="malwareAttack">Kötü Amaçlı Yazılım Saldırısı</button>
<div id="attack-result"></div>
</section>
</main>
<script src="scripts.js"></script>
</body>
</html>
|