Compare commits

36 Commits
master ... dev

Author SHA1 Message Date
Pin
3ee89494f5 adding keymaps 2024-03-02 10:49:16 -05:00
Pin
67de76e5af adding keymaps 2024-03-02 10:46:43 -05:00
Pin
33e11feed6 adding keymaps 2024-03-02 10:44:21 -05:00
Pin
16df3b64cf adding keymaps 2024-03-02 10:42:48 -05:00
Pin
0f17684f0d adding keymaps 2024-03-02 10:41:18 -05:00
Pin
647d3058f5 adding keymaps 2024-03-02 10:39:00 -05:00
Pin
3d21efa6f3 adding bootdev option in 2024-02-09 00:50:55 -05:00
Pin
95c3f29fbf kali preseed updates 2024-02-09 00:30:56 -05:00
Pin
1cebb3b95e preseed 2023-01-10 23:40:42 -05:00
Pin
18bb8fbd60 preseed 2023-01-10 23:33:33 -05:00
Pin
29e86305bd preseed 2023-01-10 23:27:54 -05:00
Pin
9fda572195 preseed 2023-01-10 23:21:56 -05:00
Pin
4aea14ed36 preseed 2023-01-10 23:16:27 -05:00
Pin
c6ec77b32d preseed 2023-01-10 23:10:26 -05:00
Pin
db9f08bfca preseed 2023-01-10 23:04:16 -05:00
Pin
6aa8d2b50d preseed 2023-01-10 22:48:25 -05:00
Pin
67c612a6e0 preseed 2023-01-10 22:43:15 -05:00
Pin
94ffa077b1 preseed 2023-01-10 22:39:38 -05:00
Pin
dfd2b73cbe preseed 2023-01-10 22:31:40 -05:00
Pin
1f164f216a preseed 2023-01-10 22:19:12 -05:00
Pin
2f0d75869c preseed 2023-01-10 22:12:00 -05:00
Pin
b59cb73591 preseed 2023-01-10 22:05:13 -05:00
Pin
c4fd562eba preseed 2023-01-10 21:57:37 -05:00
Pin
53c54dd668 preseed 2023-01-10 21:50:56 -05:00
Pin
a427f46b36 preseed 2023-01-10 21:50:09 -05:00
Pin
ade44cc0c9 preseed 2023-01-10 21:35:42 -05:00
Pin
499c4ead2a preseed 2023-01-10 21:30:18 -05:00
Pin
783a4fb7dc preseed 2023-01-10 21:22:00 -05:00
Pin
eaa5b33d33 preseed 2023-01-10 21:21:07 -05:00
Pin
b50da28861 preseed 2023-01-10 21:14:25 -05:00
Pin
51fcb3223f preseed 2023-01-10 21:11:20 -05:00
Pin
85547aadf0 preseed 2023-01-10 21:04:37 -05:00
Pin
790738f267 preseed 2023-01-10 20:51:19 -05:00
Pin
d5cc93f573 preseed 2023-01-10 20:47:26 -05:00
Pin
9e634e35af preseed 2023-01-10 20:45:51 -05:00
Pin
d4719bcf4a preseed 2023-01-10 20:42:47 -05:00

93
preseed.cfg Normal file
View File

@@ -0,0 +1,93 @@
### General Config
d-i debian-installer/language string en
d-i debian-installer/country string US
d-i debian-installer/locale string en_US.UTF-8
d-i clock-setup/utc boolean true
d-i time/zone string US/Eastern
# Disable volatile and security
d-i apt-setup/services-select multiselect
# Enable contrib and non-free
d-i apt-setup/non-free boolean true
d-i apt-setup/contrib boolean true
### Keyboard Config
d-i console-setup/ask_detect boolean false
d-i keyboard-configuration/xkb-keymap select American English
d-i keyboard-configuration/model select American English
d-i console-keymaps-at/keymap select American English
d-i keyboard-configuration/layout select American English
### Network Config
d-i netcfg/get_hostname string unassigned-hostname
d-i netcfg/get_domain string unassigned-domain
d-i netcfg/hostname string kali-cleanroom
### Root Account Setup
d-i passwd/root-login boolean true
d-i passwd/make_user boolean false
d-i passwd/root-password password
d-i passwd/root-password-again password
d-i user-setup/encrypt-home boolean false
### RedTeam User Setup
d-i passwd/make-user boolean true
d-i passwd/user-fullname string RedTeam
d-i passwd/username string redteam
d-i passwd/user-password password Changeme!!
d-i passwd/user-password-again password Changeme!!
d-i user-setup/encrypt-home boolean false
d-i user-setup/allow-password-weak boolean false
d-i passwd/user-default-groups string audo cdrom video admin sudo
### Partitioning
d-i partman-auto/method string lvm
d-i partman-lvm/device_remove_lvm boolean true
d-i partman-md/device_remove_md boolean true
d-i partman-lvm/confirm boolean true
d-i partman-lvm/confirm_nooverwrite boolean true
d-i partman-auto-lvm/guided_size string max
d-i partman-auto/choose_recipe select atomic
d-i partman-partitioning/confirm_write_new_label boolean true
d-i partman/choose_partition select finish
d-i partman/confirm_nooverwrite boolean true
### Mirror Settings
d-i mirror/country string enter information manually
d-i mirror/http/hostname string http.kali.org
d-i mirror/http/directory string /kali
d-i mirror/http/proxy string
### APT Setup
tasksel tasksel/first multiselect standard
d-i pkgsel/upgrade select full-upgrade
d-i pkgsel/include string openssh-server
### Bootloader
d-i grub-installer/only_debian boolean true
d-i grub-installer/bootdev string default
### Finishing Up
d-i preseed/late_command string \
echo 'redteam ALL=(ALL) NOPASSWD: ALL' > /target/etc/sudoers.d/redteam ; \
in-target chmod 400 /etc/sudoers.d/redteam ; \
in-target systemctl enable ssh.service ; \
in-target sh -c 'sed -i "s/^#PermitRootLogin.*\$/PermitRootLogin yes/g" /etc/ssh/sshd_config' ; \
in-target mkdir -p /home/redteam/.ssh ; \
echo 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIanH253TBKhhuqoIXEEjAb1h8teaff+gzWQrG0hHecn' >/target/home/redteam/.ssh/authorized_keys ; \
in-target chown -R redteam:redteam /home/redteam/.ssh ; \
in-target sh -c 'systemctl enable ssh' ;
d-i finish-install/reboot_in_progress note