-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.html
141 lines (132 loc) · 5.67 KB
/
setup.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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="AG" content="guide" />
<title>ArmedGeniuses</title>
<link rel="icon" href="img/logo.png">
<link href="css/style.css" rel="stylesheet" />
<link href="css/icon.css" rel="stylesheet" />
<link href="css/button.css" rel="stylesheet" />
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
</head>
<body class="light">
<div class="container">
<div class="placeholder">
<div class="window">
<div class="header">
<div class="header-inner" data-aos="flip-up">
<img src="img/logo.png" alt="Logo" class="site-logo" />
<div class="site-text-box">
<h1 class="site-title">Armed Geniuses</h1>
<h6 class="site-description">Ethical Hacking Simplified</h6>
</div>
<nav class="nav">
<ul class="nav-ul">
<li class="nav-li"><a href="index.html" class="nav-link">Home</a></li>
<li class="nav-li"><a href="setup.html" class="nav-link active">Get Started</a></li>
<li class="nav-li"><a href="about.html" class="nav-link">About</a></li>
<li class="nav-li"><a href="contact.html" class="nav-link">Contact</a></li>
</ul>
</nav>
</div>
</div>
</div>
</div>
<button class="btn active spacing" id="myBtn" style="--green-color: var(--btn-background); color: var(--btn-color);">
<span class="btn__content">Theme</span>
<span class="btn__glitch"></span>
<span class="btn__label">1337</span>
</button>
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<div class="modal-header">
<span class="close">×</span>
<h2>Change Theme</h2>
</div>
<div class="modal-body">
<br /><br /><a class="theme-btn" id="light" href="#">light ☀️</a> <br />
<br /><br /><a class="theme-btn" id="dark" href="#">dark ☾</a> <br /><br />
</div>
</div>
</div>
<p>
<header class="welcome-section">
<h2 class="text-center section-title" style="color: var(--header-color)">Welcome to Armed Geniuses</h2>
<p class="text-center">Here we shall discuss on how to setup your penetration testig lab for
practice purposes.
</p>
</header>
<div class="content" data-aos="fade-right">
<h4 class="guide-title ">Using Virtual Machines:</h4> <br />
<h3 class="guide-title ">Downloading Oracle Virtual box</h3>
<p class="guide-body">You will need software which will contain all your virtual machines and create a
sandboxed environment. We'll be using oracle virtual box for that. You can download and install
it using the below link:<br />
<button class="btn" onclick="window.location.href = 'https://www.virtualbox.org/wiki/Downloads';">
<span class="btn__content">Oracle Virtual Box</span>
<span class="btn__glitch"></span>
<span class="btn__label">1337</span>
</button>
</div>
<br /> <br />
<div class="content" data-aos="fade-left">
</p>
<h3 class="guide-title ">Downloading Kali Linux</h3>
<p class="guide-body">You will need kali linux or any other linux distro with the specific tools
installed. For kali linux, click on
the link below. You will also need kali-linux compatible WiFi adapter for monitor mode and
packet sniffing/injection.
</p>
<button class="btn" onclick="window.location.href = 'https://www.kali.org/downloads/';">
<span class="btn__content">Kali Linux</span>
<span class="btn__glitch"></span>
<span class="btn__label">1337</span>
</button>
</div>
<div class="content" data-aos="fade-right">
<h3 class="guide-title ">Downloading Windows VM</h3>
<p class="guide-body">
You will also need machines to act like your target. We'll be using a windows machine
to act like an average user for real life situations.<br />
You can download them using the link below.
</p>
<button class="btn" onclick="window.location.href = 'https://developer.microsoft.com/en-us/microsoft-edge/tools/vms/';">
<span class="btn__content">Windows 10 VM</span>
<span class="btn__glitch"></span>
<span class="btn__label">1337</span>
</button>
</div>
<div class="content" data-aos="fade-left">
<h3 class="guide-title ">Downloading Metasploitable</h3>
<p class="guide-body">
Metasploitable is a virtual machine which is meant to be vulnerable. It has unpatched vulnerabilities,
which are meant to be exploited and practiced upon. You can install it as a VM, and get to practicing.
You can download it via the below link: <br />
<button class="btn" onclick="window.location.href = 'https://www.rapid7.com/resources/test-metasploit-with-metasploitable/';">
<span class="btn__content">Metasploitable</span>
<span class="btn__glitch"></span>
<span class="btn__label">1337</span>
</button>
</div>
<br /> <br /> <br />
</p>
</div>
</p>
</div>
</div>
</main>
<footer class="footer text-center">
<p>From GitHub
| View: <a rel="nofollow" href="https://github.com/theParanoidScripts">Here</a></p>
</footer>
</div>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init();
</script>
<script src="js/popup.js" type="text/javascript"></script>
<script src="js/theme.js" type="text/javascript"></script>
</body>
</html>