-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (76 loc) · 4.3 KB
/
Copy pathindex.html
File metadata and controls
88 lines (76 loc) · 4.3 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary Meta Tags -->
<title>DDoSim - Interactive DDoS Attack Simulation & Visualization</title>
<meta name="title" content="DDoSim - Interactive DDoS Attack Simulation & Visualization" />
<meta
name="description"
content="Experience real-time DDoS attack simulations with interactive global mapping, analytics, and educational insights. Visualize distributed denial-of-service attacks from multiple locations worldwide." />
<meta
name="keywords"
content="DDoS, simulation, cybersecurity, network security, attack visualization, distributed denial of service, security education, network analysis" />
<meta name="author" content="DDoSim" />
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/svg+xml" href="https://sim.ddosim.live/ddosim-logo.svg" />
<link rel="icon" type="image/png" href="https://sim.ddosim.live/ddosim-logo.png" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://sim.ddosim.live/" />
<meta property="og:title" content="DDoSim - Interactive DDoS Attack Simulation & Visualization" />
<meta
property="og:description"
content="Experience real-time DDoS attack simulations with interactive global mapping, analytics, and educational insights. Visualize distributed denial-of-service attacks from multiple locations worldwide." />
<meta property="og:image" content="https://sim.ddosim.live/og-image.jpg" />
<meta property="og:image:alt" content="DDoSim - DDoS Attack Simulation Dashboard" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:site_name" content="DDoSim" />
<meta property="og:locale" content="en_US" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@jaimintwt" />
<meta name="twitter:creator" content="@jaimintwt" />
<meta name="twitter:url" content="https://sim.ddosim.live/" />
<meta name="twitter:title" content="DDoSim - Interactive DDoS Attack Simulation & Visualization" />
<meta
name="twitter:description"
content="Experience real-time DDoS attack simulations with interactive global mapping, analytics, and educational insights. Visualize distributed denial-of-service attacks from multiple locations worldwide." />
<meta name="twitter:image" content="https://sim.ddosim.live/og-image.jpg" />
<meta name="twitter:image:alt" content="DDoSim - DDoS Attack Simulation Dashboard" />
<meta name="twitter:image:width" content="1200" />
<meta name="twitter:image:height" content="630" />
<!-- Additional Meta Tags -->
<meta name="theme-color" content="#000000" />
<meta name="language" content="English" />
<meta name="revisit-after" content="7 days" />
<!-- Robots Meta Tags -->
<meta
name="robots"
content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1" />
<meta
name="googlebot"
content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1" />
<meta
name="bingbot"
content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1" />
<!-- Canonical URL -->
<link rel="canonical" href="https://sim.ddosim.live/" />
<!-- Alternate links for different languages (if applicable) -->
<!-- <link rel="alternate" hreflang="en" href="https://sim.ddosim.live/" /> -->
<meta name="google-site-verification" content="biI0IxrHzapCDPOwSyVWAHmNp62uBFftlYhKgqQWpKo" />
<!-- Stylesheets -->
<link href="https://unpkg.com/maplibre-gl@^5.7.0/dist/maplibre-gl.css" rel="stylesheet" />
<!-- Preload critical chunks -->
<link rel="modulepreload" href="/src/main.tsx" />
<script async src="https://tally.so/widgets/embed.js"></script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>