File size: 1,003 Bytes
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
<!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">
</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>