From charlesreid1

Revision as of 07:06, 27 August 2015 by Admin (talk | contribs) (Created page with "Post-install procedure for Kali: ==Fix SSH Keys== Fix SSH keys. First, install OpenSSH server: <pre> $ apt-get install openssh-server </pre> Update the SSH service to be a...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Post-install procedure for Kali:

Fix SSH Keys

Fix SSH keys. First, install OpenSSH server:

$ apt-get install openssh-server

Update the SSH service to be at the default runlevel (i.e., to run on boot):

$ update-rc.d -f ssh remove
$ update-rc.d -f ssh defaults

Move the old SSH keys somewhere else:

$ cd /etc/ssh/
$ mkdir insecure_original_default_kali_keys
$ mv ssh_host_* insecure_original_default_kali_keys/

And finally, make new SSH keys for this machine.

$ dpkg-reconfigure openssh-server

Fix Everything Else

See Kali/Fixes for fixing everything else