-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathviewpost.html
More file actions
102 lines (82 loc) · 6.21 KB
/
viewpost.html
File metadata and controls
102 lines (82 loc) · 6.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>SoftUni Blog</title>
<link type="text/css" rel="stylesheet" href="styles/style.css" />
<script src="scripts/jquery-3.3.1.js"></script>
<script src="scripts/bootstrap.js"></script>
</head>
<body>
<header>
<div class="navbar navbar-default navbar-fixed-top text-uppercase">
<div class="container">
<div class="navbar-header">
<a href="index.html" class="navbar-brand">SoftUni Blog</a>
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse collapse">
<ul class="navbar-nav nav navbar-right">
<li><a href="register.html">Register</a></li>
<li><a href="login.html">Login</a></li>
</ul>
</div>
</div>
</div>
</header>
<main>
<div class="container body-content">
<div class="row">
<div class="col-md-12">
<article>
<header>
<h2>Latest Kali Linux News</h2>
</header>
<p>
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>
<p>Development</p>
<p>Kali Linux has over 600[3] preinstalled penetration-testing programs, including Armitage (a graphical cyber attack management tool), Nmap (a port scanner), Wireshark (a packet analyzer), John the Ripper password cracker, Aircrack-ng (a software suite for penetration-testing wireless LANs), Burp suite and OWASP ZAP web application security scanners.[4][5] Kali Linux can run natively when installed on a computer's hard disk, can be booted from a live CD or live USB, or it can run within a virtual machine. It is a supported platform of the Metasploit Project's Metasploit Framework, a tool for developing and executing security exploits.[4]
It was developed by Mati Aharoni and Devon Kearns of Offensive Security through the rewrite of BackTrack, their previous information security testing Linux distribution based on Knoppix. The third core developer Raphaël Hertzog joined them as a Debian expert.[6][7]
Kali Linux is based on Debian Testing. Most packages Kali uses are imported from the Debian repositories.[8]
Kali Linux is developed using a secure environment with only a small number of trusted people that are allowed to commit packages, with each package being digitally signed by the developer. Kali also has a custom-built kernel that is patched for 802.11 wireless injection. This was primarily added because the development team found they needed to do a lot of wireless assessments.
</p>
<p>Requirements</p>
<p>
Kali Linux requires a minimum of 20GB hard disk space for installation.[9]
A minimum of 1GB RAM for i386 and AMD64 architectures.
A bootable CD-DVD drive or a USB stick.
Supported platforms
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.[10]
The developers of Kali Linux aim to make Kali Linux available for even more ARM devices.[7]
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.[11]
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.
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.[12]
Features
Kali Linux has a dedicated project set aside for compatibility and porting to specific Android devices, called Kali Linux NetHunter.[13]
It is the first Open Source Android penetration testing platform for Nexus devices, created as a joint effort between the Kali community member “BinkyBear” and Offensive Security. It supports Wireless 802.11 frame injection, one-click MANA Evil Access Point setups, HID keyboard (Teensy like attacks), as well as Bad USB MITM attacks.[13]
BackTrack (Kali's predecessor) contained a mode known as forensic mode, which was carried over to Kali via live boot. This mode is very popular for many reasons, partly because many Kali users already have a bootable Kali USB drive or CD, and this option makes it easy to apply Kali to a forensic job. When booted in forensic mode, the system doesn't touch the internal hard drive or swap space and auto mounting is disabled. However, the developers recommend that users test these features extensively before using Kali for real world forensics.[14]
</p>
<small class="autor">ValTod
</small>
<footer>
<div class="pull-right">
<a class="btn btn-default btn-xs" href="indexlogged.html">back »</a>
</div>
</footer>
</article>
</div>
</div>
</div>
</main>
<footer>
<div class="container modal-footer">
<p>© 2018 - Software university Foundation</p>
</div>
</footer>
</body>
</html>