-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
217 lines (208 loc) · 5.84 KB
/
index.html
File metadata and controls
217 lines (208 loc) · 5.84 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Firewall Suite (Beta Version)</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap" rel="stylesheet">
<link rel="icon" href="main.png" type="image/png">
<style>
/* Global Styles */
body {
font-family: 'Inter', sans-serif;
margin: 0;
background-color: #f8f9fa;
color: #222;
transition: background-color 0.3s, color 0.3s;
}
body.dark {
background-color: #121212;
color: #f0f0f0;
}
header {
padding: 80px 20px 60px;
text-align: center;
position: relative;
background: linear-gradient(135deg, #2563eb, #1e40af);
color: white;
transition: all 0.3s;
}
header h1, header p {
transition: all 0.3s;
}
.header-title {
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
}
.logo {
width: 60px;
height: auto;
}
main {
padding: 50px 20px;
display: flex;
flex-direction: column;
align-items: center;
}
.features {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin-top: 40px;
gap: 30px;
}
.feature {
background-color: white;
border-radius: 12px;
padding: 25px;
width: 250px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
text-align: center;
transition: all 0.3s;
}
body.dark .feature {
background-color: #1e1e1e;
color: #f0f0f0;
}
.download-button {
margin-top: 50px;
padding: 18px 40px;
font-size: 18px;
background-color: #10b981;
color: white;
text-decoration: none;
border-radius: 10px;
transition: background-color 0.3s;
}
.download-button:hover {
background-color: #059669;
}
.other-projects {
margin-top: 80px;
text-align: center;
}
.other-projects h2 {
font-size: 2em;
margin-bottom: 20px;
}
.other-projects ul {
list-style: none;
padding: 0;
}
.other-projects li {
margin: 10px 0;
font-size: 1.1em;
}
.other-projects a {
color: #2563eb;
text-decoration: none;
}
.other-projects a:hover {
color: #1e40af;
}
footer {
margin-top: 80px;
padding: 20px;
text-align: center;
font-size: 14px;
color: #777;
background-color: #f1f1f1;
transition: all 0.3s;
}
.dark-toggle {
position: absolute;
top: 20px;
left: 20px;
background-color: white;
color: #333;
border: none;
padding: 8px 12px;
border-radius: 8px;
cursor: pointer;
font-weight: 600;
transition: all 0.3s;
}
.dark-toggle:hover {
background-color: #eee;
}
/* Glitch animation for header and background */
@keyframes glitchAnim {
0% {background: linear-gradient(135deg, #2563eb, #1e40af); color: white;}
25% {background-color: black; color: red;}
50% {background-color: red; color: black;}
75% {background-color: black; color: red;}
100% {background: linear-gradient(135deg, #2563eb, #1e40af); color: white;}
}
.glitch {
animation: glitchAnim 1s forwards;
}
/* "See Glitch Again" button */
#glitch-button {
position: fixed;
bottom: 10px;
left: 10px;
background-color: #333;
color: white;
padding: 6px 12px;
border-radius: 6px;
cursor: pointer;
font-size: 14px;
z-index: 1000;
transition: background-color 0.3s;
}
#glitch-button:hover {
background-color: #555;
}
</style>
</head>
<body>
<header id="header">
<button class="dark-toggle" onclick="toggleDarkMode()">Toggle Dark Mode</button>
<div class="header-title">
<img src="main.png" alt="Firewall Suite Logo" class="logo">
<h1>Firewall Suite</h1>
</div>
<p>A clean, powerful GUI tool that combines Python and PowerShell to manage your Windows 11 firewall effortlessly.</p>
</header>
<main>
<div class="features">
<div class="feature">
<h3>Easy to Use</h3>
<p>Double-click and go — no complicated setup needed.</p>
</div>
<div class="feature">
<h3>Powerful</h3>
<p>Full-featured firewall controls, all from a simple GUI.</p>
</div>
<div class="feature">
<h3>Safe & Reliable</h3>
<p>Python + PowerShell integration ensures your rules work smoothly.</p>
</div>
</div>
<!-- Updated Download Button -->
<a class="download-button" href="https://release-assets.githubusercontent.com/github-production-release-asset/1043019587/25e0e43a-9c45-4da5-8527-33888d0497f0?sp=r&sv=2018-11-09&sr=b&spr=https&se=2025-08-30T03%3A10%3A18Z&rscd=attachment%3B+filename%3DFirewall.Suite.zip&rsct=application%2Foctet-stream" target="_blank">Download Firewall Suite</a>
<section class="other-projects">
<h2>Check Out My Other Projects</h2>
<ul>
<li><a href="https://github.com/mitan7/Windows-11-Keylogger" target="_blank">Educating C++ Keylogger</a></li>
<li><a href="https://github.com/mitan7/Malware-Vulnerability-Testing" target="_blank">Python Vulnerability Scanning and Prevention</a></li>
<li><a href="https://github.com/mitan7/Vuln-Testing.git" target="_blank">Find Vulnerabilities About a Device and Save It In a Discord VIA Webhook</a></li>
</ul>
</section>
</main>
<footer>© 2025 Firewall Suite</footer>
<button id="glitch-button" onclick="triggerGlitch()">See Glitch Again</button>
<script>
function toggleDarkMode() {
document.body.classList.toggle('dark');
}
function triggerGlitch() {
const header = document.getElementById('header');
header.classList.add('glitch');
setTimeout(() => header.classList.remove('glitch'), 1000);
}
</script>
</body>
</html>