-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
101 lines (97 loc) · 4.05 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6356609490687979"
crossorigin="anonymous"></script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Silver Flag | Home</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body data-theme="normal" data-scroll="false">
<nav class="nav-closed">
<span id="logo"><a href="https://silverflag.net" style="text-decoration: none;">SilverFlag</a></span>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="/tools/index.html">Tools</a></li>
</ul>
<button id="x-out-menu">X</button>
</nav>
<header>
<div class="column text">
<h1 class="title">Freedom that is free</h1>
<p>
Join the team working
to make information
and programs for security
and privacy free for all
</p>
</div>
<div class="column">
<img
src="./assets/landing-img.svg"
alt="woman standing with shield next to server"
/>
</div>
</header>
<main>
<section id="about">
</section>
<main>
<section id="services">
<h2>Our Services</h2>
<p>We offer a range of cybersecurity and privacy-related services. You can select the one you need or choose multiple services as required.</p>
<ul>
<li><strong>Malware and Social Engineering Training</strong>: Learn to defend against malware and social engineering attacks via video calls or training packets.</li>
<li><strong>Anonymous Internet Access and Browsing</strong>: Use legitimate tools to access the internet anonymously while ensuring lawful use.</li>
<li><strong>Data Scraping for Analytics</strong>: We provide ethical data scraping services for analytics and insights purposes.</li>
<li><strong>Malware Development for Research</strong>: Development of malware for controlled and ethical research purposes.</li>
</ul>
<section id="team">
<h2>Our Team</h2>
<div class="team-card dead-pirate-bobbers">
<span class="team-member">
<span
class="name"
onclick="window.open('http://discordapp.com/users/794589315866296361', '_blank')"
>Dread Pirate Roberts</span
>
<img
src="./assets/user-icons/dead-pirate-bobers.webp"
style="max-width: 2.5rem"
/>
<span class="role">Cybersecurity Engineer</span>
</span>
<p class="about-team-member">
I work on many open source projects, and like to hang out in chat rooms and discuss topics I am interested in, like cybersecurity and some programming. For silverflag, I am the main sysadmin and run all of our services.
</p>
</div>
<div class="team-card">
<span class="team-member">
<span
class="name"
onclick="window.open('https:/discordapp.com/users/1226198104525770875', '_blank')"
>/dev/null/</span
>
<img
src="https://cdn.discordapp.com/avatars/1226198104525770875/e802f7b080694201deb7e6b63008c174?size=1024"
style="max-width: 2.5rem"
/>
<span class="role">Contributor</span>
</span>
<p class="about-team-member">
I am part of silverflag, but I do not have any specific role yet. Personally, I like working on programming projects and talking in chat rooms about a range of topics. I contribute some hardware to the silverflag project.
</p>
</div>
</section>
</main>
</span>
</body>
<script src="assets/js/main.js"></script>
<script>
document.getElementById('x-out-menu').addEventListener('click', () => {
document.querySelector('nav').classList.toggle('nav-closed');
});
</script>
</html>