-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDDoS.html
More file actions
133 lines (113 loc) · 3.2 KB
/
DDoS.html
File metadata and controls
133 lines (113 loc) · 3.2 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>DDoS Attack Awareness - Coding Chat Room</title>
<style>
body {
margin: 0;
padding: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
color: white;
overflow: hidden;
}
.container {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
backdrop-filter: blur(12px);
border-radius: 20px;
padding: 40px;
text-align: center;
width: 90%;
max-width: 800px;
box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
animation: fadeIn 1.2s ease-out;
}
h1 {
font-size: 3em;
color: #00ffff;
text-shadow: 0 0 10px #00ffff;
margin-bottom: 20px;
}
h2 {
color: #ffd700;
margin-top: 10px;
font-size: 1.8em;
}
p {
font-size: 1.2em;
line-height: 1.7;
margin: 15px 0;
}
.channel {
margin-top: 30px;
font-size: 1.6em;
color: #00ff99;
background-color: rgba(0, 0, 0, 0.4);
padding: 10px 25px;
border-radius: 12px;
border: 1px solid #00ff99;
box-shadow: 0 0 15px #00ff99;
display: inline-block;
}
.warning {
margin-top: 25px;
font-size: 1.1em;
color: #ff4d4d;
font-weight: bold;
animation: blink 1s infinite;
}
footer {
margin-top: 40px;
font-size: 0.9em;
color: #cccccc;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: scale(0.9);
}
to {
opacity: 1;
transform: scale(1);
}
}
@keyframes blink {
0%,
100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}
</style>
</head>
<body>
<div class="container">
<h1>DDoS Attack Awareness</h1>
<h2>Educational Purpose Only</h2>
<p>
A <strong>DDoS (Distributed Denial of Service)</strong> attack is when multiple systems flood a targeted
system (like a website) to disrupt its normal traffic.
</p>
<p>
This demonstration is created to show how such attacks work **ethically**, and how to defend against them.
</p>
<div class="channel">
🔥 Presented by: <strong>Coding Chat Room</strong>
</div>
<div class="warning">
⚠️ Warning: Unauthorized DDoS attacks are ILLEGAL.
</div>
<footer>
© 2025 Coding Chat Room | Cybersecurity Education | #StaySecure
</footer>
</div>
</body>
</html>