Disable root user by default, use "kali" user in live mode

debian-cd
Raphaël Hertzog 5 years ago
parent 19a5147d7d
commit e184810035

@ -136,8 +136,8 @@ lb config noauto \
--iso-volume "Kali Live" \
--linux-packages linux-image \
--memtest memtest86 \
--bootappend-live "boot=live components quiet splash username=root hostname=kali noeject" \
--bootappend-live-failsafe "boot=live components username=root hostname=kali noeject memtest noapic noapm nodma nomce nolapic nomodeset nosmp nosplash vga=normal" \
--bootappend-live "boot=live components quiet splash username=kali hostname=kali noeject" \
--bootappend-live-failsafe "boot=live components username=kali hostname=kali noeject memtest noapic noapm nodma nomce nolapic nomodeset nosmp nosplash vga=normal" \
--bootappend-install "net.ifnames=0" \
--security false \
$lb_opts \

@ -10,6 +10,6 @@ label live-forensic
menu label Live (^forensic mode)
linux /live/vmlinuz
initrd /live/initrd.img
append boot=live noconfig=sudo username=root hostname=kali noswap noautomount
append boot=live username=kali hostname=kali noswap noautomount
END

@ -10,13 +10,13 @@ label live-persistence
menu label ^Live USB Persistence (check kali.org/prst)
linux /live/vmlinuz
initrd /live/initrd.img
append boot=live noconfig=sudo username=root hostname=kali persistence
append boot=live username=kali hostname=kali persistence
label live-encrypted-persistence
menu label ^Live USB Encrypted Persistence (check kali.org/prst)
linux /live/vmlinuz
initrd /live/initrd.img
append boot=live persistent=cryptsetup persistence-encryption=luks noconfig=sudo username=root hostname=kali persistence
append boot=live persistent=cryptsetup persistence-encryption=luks username=kali hostname=kali persistence
END

@ -0,0 +1,4 @@
#!/bin/sh
# Set "kali" as password for the user kali
usermod -p 'AqLUsDitNnTsw' kali

@ -1,5 +0,0 @@
#!/bin/sh
# Set "toor" as root password
usermod -p 'X014elvznJq7E' root

@ -2,6 +2,3 @@
# Allow PasswordAuthentification in sshd config
sed -i -e 's|#\?\(PasswordAuthentication\) no|\1 yes|' /etc/ssh/sshd_config
# Allow root login with password
sed -i -e 's|#\?\(PermitRootLogin\) prohibit-password|\1 yes|' /etc/ssh/sshd_config

@ -31,8 +31,8 @@ d-i pkgsel/upgrade select full-upgrade
# d-i netcfg/get_hostname string kali
# d-i netcfg/get_hostname seen false
# Do not create a normal user account
d-i passwd/make-user boolean false
# Disable the root user entirely
d-i passwd/root-login boolean false
# Enable eatmydata in kali-installer to boost speed installation
d-i preseed/early_command string anna-install eatmydata-udeb

Loading…
Cancel
Save