This repository has been archived by the owner on Nov 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
75 lines (75 loc) · 4.68 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css">
<link rel="stylesheet" href="css/main.css">
<link rel="icon" href="img/logo.png">
<title>Kali.Lo</title>
</head>
<body>
<nav class="navbar navbar-expand-lg fixed-top">
<a class="navbar-brand nav-link" href="index.html">
<img width="100" src="img/Kali_Linux_2.0_wordmark.svg.png" >
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navLinks" aria-controls="navLinks" aria-expanded="false" aria-label="Toggle navigation">
<span class="fa fa-bars"></span>
</button>
<div class="navbar-collapse collapse " id="navLinks">
<div class="navbar-nav">
<a class="navbar-item nav-link" href="about.html">About</a>
<a class="navbar-item nav-link" href="development.html">Development</a>
<a class="navbar-item nav-link" href="tools.html">Tools</a>
<a class="navbar-item nav-link" href="index.html#news">Latest News</a>
<a class="navbar-item nav-link" href="index.html#resources">Resources</a>
<a class="navbar-item nav-link" href="index.html#downloads">Downloads</a>
</div>
</div>
</nav>
<div class="container-fluid text-center justify-content-center">
<div class="row">
<div class="col-md-6 bg-dark">
<img width="100%" src="img/about-1.png">
</div>
<div class="col-md-6 ">
<p class="alert about text-left" style="margin-top:25%;">Kali Linux is a Debian-derived Linux distribution designed for digital forensics and penetration testing. It is maintained and funded by Offensive Security Ltd. Mati Aharoni, Devon Kearns and Raphaël Hertzog are the core developers. </p>
</div>
<div class="col-md-6 about mt-5 mb-5">
<h3>Hardware Requirements:</h3>
<ul class="alert text-left">
<li>Kali Linux requires a minimum of 20GB hard disk space for installation.</li>
<li>A minimum of 2gb RAM for i386 and AMD64 architectures.</li>
<li>A bootable CD-DVD drive or a USB stick</li>
</ul>
</div>
<div class="col-md-6 bg-dark ">
<i class="fa fa-cogs mt-5 mb-5" style="font-size:20em; color:#fff"></i>
</div>
<div class="col-md-6 bg-dark">
<i class="fa fa-laptop" style="font-size:20em; color:#fff; margin-top: 40%"></i>
</div>
<div class="col-md-6 about">
<h3>Supported platforms:</h3>
<p class="alert text-left" >Kali Linux is distributed in 32-bit and 64-bit images for use on hosts based on the x86 instruction set and as an image for the ARM architecture for use on the Beagle Board computer and on Samsung's ARM Chromebook.
<br><br>
The developers of Kali Linux aim to make Kali Linux available for even more ARM devices.
<br><br>
Kali Linux is already available for BeagleBone Black, HP Chromebook, CubieBoard 2, CuBox, CuBox-i, Raspberry Pi, EfikaMX, Odroid U2, Odroid XU, Odroid XU3, Samsung Chromebook, Utilite Pro, Galaxy Note 10.1, and SS808.
<br><br>
With the arrival of Kali NetHunter, Kali Linux is also officially available on smartphones such as the Nexus 5, Nexus 6, Nexus 7, Nexus 9, Nexus 10, OnePlus One, and some Samsung Galaxy models.
<br><br>
Kali Linux is available on Windows 10, on top of Windows Subsystem for Linux (WSL). The official Kali distribution for Windows can be downloaded from the Microsoft Store.</p>
</div>
</div>
<footer>
<h5>Kali Linux By Offensive Security © 2018</h5>
</footer>
</div>
<script src="js/jquery-3.3.1.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>