Add kali user to additional groups one by one

Up to now, it was fine to use a command such as:

    usermod -a -G group1,group2,... kali

However a limitation is that all the groups that are given to the option
-G must exist. If that's not the case, usermod fails (return code: 6)
without doing anything, and the user is not added to any group.

So with this commit, we prepare the code to support optional groups,
that might or might not exist. If ever a group does not exist, it's
skipped silently.
merge-requests/18/merge
Arnaud Rebillout 3 years ago
parent da484826f4
commit 6ea2a3ce82
No known key found for this signature in database
GPG Key ID: E725E87914600216

@ -22,9 +22,12 @@ configure_usergroups() {
# dialout - for serial port access
# kaboxer - for kaboxer
# wireshark - capture sessions without being root
kali_groups="adm,dialout,kaboxer,wireshark"
kali_groups="adm dialout kaboxer wireshark"
usermod -a -G $kali_groups kali || true
for grp in $kali_groups; do
getent group $grp >/dev/null || continue
usermod -a -G $grp kali
done
}
# Avoid configuring multiple times in case persistence is enabled

@ -60,11 +60,14 @@ configure_usergroups() {
# dialout - for serial access
# kaboxer - for kaboxer
# wireshark - capture sessions in wireshark
kali_groups="adm,dialout,kaboxer,wireshark"
kali_groups="adm dialout kaboxer wireshark"
for user in $(get_user_list | grep -xv root); do
echo "INFO: adding user '$user' to groups '$kali_groups'"
usermod -a -G "$kali_groups" $user || true
for grp in $kali_groups; do
getent group $grp >/dev/null || continue
usermod -a -G $grp $user
done
done
}

Loading…
Cancel
Save