Search This Blog

Friday, August 21, 2020

Kali Linux VM Installation And Setup

Preface

From time to time I realize that certain tasks that are trivial for me are not necessarily easy for others, especially if they are just getting started with IT security stuff.

As I am going to be a Facilitator at SANS Munich 2015 on SEC 401, plus we have a few people at work who are just dipping their toe into the wonderful world of Kali Linux, it seemed like a good opportunity to make a short getting started / installation guide on the Kali VMWare VMs that you can download and quickly get started.

On top of that, when I check the statistics of the blog, I always see that the most popular posts are the detailed howtos and tutorials and I assume that it is because there is a need for this kind of posts too, so here it goes! :)


Step -1: Check in your BIOS/UEFI if virtualization is enabled

We are going to use virtualization, so it would be nice to enable it, right?

In BIOS/UEFI menus this is somewhere around "Security" and/or "Virtualization" and it is something like "Intel (R) Virtualization Technology" and "Intel (R) VT-d Feature" that needs to be set to "Enabled".


Step 0: Install VMWare Player or VMWare Workstation

The Kali Linux VMs are VMWare-based, so you need to install VMWare Player (free), VMWare Workstation (paid) or VMWare Fusion (paid, for OS-X).

The more desirable choice is to use VMWare Workstation or VMWare Fusion, as they have a Snapshot feature, while with VMWare Player, you are forced to take a full copy in order to have a sort of rollback feature.


Step 1: Download Kali VM

We need to download the Kali VMs from the "Custom Kali Images" download site, where you can find a 64 bit (amd64) and a 32 bit PAE (i686) too.

There are also Torrent files for the images and based on experience, using Torrent is much more faster and reliable than the HTTP download, so if you can, use that!

Once you have downloaded the VMs, do not forget to check their SHA1 hash!!! On Linux, you can simply use the sha1sum command at a terminal. For Windows, you can use something like the MD5 & SHA Checksum Utility.


Step 2: Change Kali VM default root password

The Kali VM comes with a preset root password, which is "toor" (without the quotes), therefore, it has to be changed.

Here is how you do it:
root@kali:~# passwd
Enter new UNIX password:
Retype new UNIX password:
passwd: password updated successfully


Step 3: Change Kali VM default SSH keys

The Kali VM also comes with SSH preinstalled, so we need to change the SSH keys to avoid SSH MiTM attacks.
Here is how you do it:
root@kali:~# cd /etc/ssh/
root@kali:/etc/ssh# mkdir default_kali_keys
root@kali:/etc/ssh# mv ssh_host_* default_kali_keys/
root@kali:/etc/ssh# dpkg-reconfigure openssh-server
Creating SSH2 RSA key; this may take some time ...
Creating SSH2 DSA key; this may take some time ...
Creating SSH2 ECDSA key; this may take some time ...
insserv: warning: current start runlevel(s) (empty) of script `ssh' overrides LSB defaults (2 3 4 5).
insserv: warning: current stop runlevel(s) (2 3 4 5) of script `ssh' overrides LSB defaults (empty).

Now we can check if the keys are really changed:

root@kali:/etc/ssh# md5sum /etc/ssh/*key*
md5sum: /etc/ssh/default_kali_keys: Is a directory
6abe210732068fa7ca95854c3078dba5 /etc/ssh/ssh_host_dsa_key
1b5f3c1a1b5c48cc3cce31b116e8b6f8 /etc/ssh/ssh_host_dsa_key.pub
8f0f60855e5ab8cac8103d64faab090f /etc/ssh/ssh_host_ecdsa_key
aace49ae9236815c9a1672f8ecb2b1e2 /etc/ssh/ssh_host_ecdsa_key.pub
cf861a9f743fb4584ab246024465ddf1 /etc/ssh/ssh_host_rsa_key
d5d65d8ad023a6cb1418ae05007bc6d3 /etc/ssh/ssh_host_rsa_key.pub
root@kali:/etc/ssh# md5sum /etc/ssh/default_kali_keys/*key*
c8d5b82320a4ddde59d0e2b6d9aad42a /etc/ssh/default_kali_keys/ssh_host_dsa_key
6b12ddecd463677cde8097e23d0f219a /etc/ssh/default_kali_keys/ssh_host_dsa_key.pub
fecf056571a3dfbf3635fc2c50bf23c5 /etc/ssh/default_kali_keys/ssh_host_ecdsa_key
e44b7c50635de42e89b3297414f5047d /etc/ssh/default_kali_keys/ssh_host_ecdsa_key.pub
e9e0267484e020878e00a9360b77d845 /etc/ssh/default_kali_keys/ssh_host_rsa_key
ceee93d7bbc9f9b9706e18f23d4e81f1 /etc/ssh/default_kali_keys/ssh_host_rsa_key.pub

Step 4: Update Kali VM

Next you need to update your Kali VM so that everything is patched.

Here is how you do it:

root@kali:~# apt-get update
Get 1 http://http.kali.org kali Release.gpg [836 B]
Get:2 http://security.kali.org kali/updates Release.gpg [836 B]
********************************* SNIP *********************************
Fetched 16.7 MB in 14s (1,190 kB/s)
Reading package lists... Done
root@kali:~# apt-get upgrade
eading package lists... Done
Building dependency tree
Reading state information... Done
The following packages have been kept back:
********************************* SNIP *********************************
The following packages will be upgraded:
********************************* SNIP *********************************
241 upgraded, 0 newly installed, 0 to remove and 16 not upgraded.
Need to get 740 MB of archives.
After this operation, 130 MB disk space will be freed.
Do you want to continue [Y/n]? Y
Get:1 http://security.kali.org/kali-security/ kali/updates/main libc6-i386 amd64 2.13-38+deb7u7 [4,044 kB]
Get:2 http://http.kali.org/kali/ kali/main base-files amd64 1:1.1.0 [77.5 kB]
********************************* SNIP *********************************
root@kali:~#


Step 5: Create a Snapshot/Copy the VM

Once you are done with all the above, you can make a Snapshot in case of VMWare Workstation or copy the files of the VM in case of VMWare Player, so that you can roll back to this clean stat in case you misconfigure something.

Hope this was helpful. Happy hacking!


Related posts


  1. Hack Tools For Windows
  2. Hacker Hardware Tools
  3. Hacking Tools For Windows 7
  4. Tools 4 Hack
  5. Hacking Apps
  6. Pentest Recon Tools
  7. Pentest Tools Kali Linux
  8. Hacker Search Tools
  9. Hack Tools For Mac
  10. Hacker Tools Free Download
  11. Hacking Tools For Mac
  12. Pentest Tools For Windows
  13. Wifi Hacker Tools For Windows
  14. Install Pentest Tools Ubuntu
  15. Hacker
  16. Hacking Tools For Games
  17. Hack Tools 2019
  18. Hacker Tools Apk
  19. Hacker Hardware Tools
  20. Pentest Box Tools Download
  21. Hacking Tools For Games
  22. Best Hacking Tools 2020
  23. Hacking Tools Pc
  24. Hack Tools For Windows
  25. Hacker Techniques Tools And Incident Handling
  26. Pentest Tools For Windows
  27. Tools For Hacker
  28. Hacking Tools For Games
  29. Hacking Tools Hardware
  30. Hacking Tools For Games
  31. Hacker Security Tools
  32. Bluetooth Hacking Tools Kali
  33. Hacking Tools Windows
  34. Hacking Tools Free Download
  35. Nsa Hack Tools
  36. How To Make Hacking Tools
  37. Pentest Box Tools Download
  38. Hacking Tools For Windows
  39. Hacking Tools 2019
  40. Beginner Hacker Tools
  41. Hacker Search Tools
  42. Hacking Tools For Windows
  43. Hacking Tools 2019
  44. Pentest Tools Framework
  45. Hacker Tools For Mac
  46. Hacker Search Tools
  47. New Hacker Tools
  48. Hacking App
  49. Pentest Tools Port Scanner
  50. Hack Tools For Pc
  51. Pentest Tools Review
  52. Hacking Tools For Pc
  53. Android Hack Tools Github
  54. Hacker Tool Kit
  55. Blackhat Hacker Tools
  56. Hack Tools Mac
  57. Pentest Tools Download
  58. Pentest Recon Tools
  59. Hacker
  60. Pentest Tools Url Fuzzer
  61. Hacking Tools Usb
  62. Hack Tools For Games
  63. Pentest Tools For Mac
  64. Pentest Tools Windows
  65. Pentest Recon Tools
  66. Pentest Tools Linux
  67. Hack Tools Mac
  68. Hacking Tools For Windows 7
  69. Pentest Tools Find Subdomains
  70. Hacking Tools Hardware
  71. Hacking Tools Github
  72. Hacking Tools And Software
  73. Pentest Tools Port Scanner
  74. Hak5 Tools
  75. Pentest Tools Website
  76. Hacker Tools List
  77. Pentest Tools
  78. Hacker Tools 2019
  79. Hacking Tools Online
  80. Hacking Tools For Kali Linux
  81. Pentest Tools Windows
  82. Android Hack Tools Github
  83. Hacker Tools Apk
  84. Termux Hacking Tools 2019
  85. Hack Tools Download
  86. Pentest Tools Tcp Port Scanner
  87. Hacking Tools Github
  88. Nsa Hack Tools Download
  89. Pentest Tools Apk
  90. Hacking Tools Github
  91. Growth Hacker Tools
  92. Pentest Tools Android
  93. Best Hacking Tools 2020
  94. Pentest Tools Free
  95. Hacker Security Tools
  96. Hacking Tools Download
  97. Nsa Hacker Tools
  98. Pentest Tools Windows
  99. Hacking Tools Mac
  100. Pentest Tools Url Fuzzer
  101. Install Pentest Tools Ubuntu
  102. Hacking Tools
  103. What Is Hacking Tools
  104. Hacking Tools 2019
  105. Hacker Tools Online
  106. Hack App
  107. Easy Hack Tools
  108. Hack And Tools
  109. Pentest Tools Online
  110. Hack Tool Apk
  111. Hacking Tools Mac
  112. Pentest Tools List
  113. Hacking Tools 2020
  114. Hack Apps
  115. Hack Tools For Mac
  116. How To Hack
  117. Hacker Tools Free Download
  118. Hacking Tools Usb
  119. Pentest Tools Apk
  120. Hacking Tools For Games
  121. Hacking Tools Free Download
  122. Pentest Tools Framework
  123. How To Hack
  124. Pentest Tools Subdomain
  125. Install Pentest Tools Ubuntu
  126. Hacking Tools Mac
  127. Hacker Tools Free Download
  128. Growth Hacker Tools
  129. Hacker Techniques Tools And Incident Handling
  130. Tools For Hacker
  131. Tools 4 Hack
  132. Hacking Tools Mac
  133. Growth Hacker Tools
  134. Hack Tools For Windows
  135. Pentest Tools Windows
  136. Hack Tools
  137. Pentest Tools Open Source
  138. Wifi Hacker Tools For Windows
  139. How To Hack
  140. Hacking Tools For Pc
  141. Hacking Tools Github
  142. Pentest Tools Port Scanner
  143. Pentest Tools Android
  144. Hacker Tools
  145. Pentest Tools Open Source
  146. Pentest Tools For Ubuntu
  147. Hack Tools Online
  148. Pentest Tools Review
  149. Hack Tools 2019
  150. Hack Tools Online
  151. Bluetooth Hacking Tools Kali
  152. Hacking Tools Download
  153. Hacking Tools Windows 10
  154. Hak5 Tools
  155. Pentest Tools For Android
  156. Hacking Tools Mac
  157. Hacking Tools Hardware
  158. Hacker Techniques Tools And Incident Handling
  159. Hacking Apps

No comments:

Post a Comment