The login screen
I noticed, from my login screen, that the username is easy to ascertain, just click on the user photo. However, has anyone considered the security ramifications of this setup? In order to brute force your way into a computer you must have two pieces of information; a username and a password. However, if you already know the username, or you can click on a user's account picture in the login screen, then your battle is half won. So, go to the login screen, click on a user photo and all you need do now is guess the password. And we all know how secure user passwords are these days, right? I mean, no one ever re-uses a password.. right?
After having brought that up, can someone teach me how to have my login screen show only an empty text box for the username and another empty text box for the password instead of showing my user photo and making it easier on criminals? This way anyone who wants to brute-force their way in has to waste time trying to guess everything.
Sudo
Years ago, while working with Red Hat folks, I learned a little trick. In most computer systems there is a group called the wheel group. Administrators were added to the wheel group and sudo was handled with:
This way non-admin users can't sit at the computer calling sudo all day and guess the admin password because they aren't in the wheel group. When attempting to call sudo they were greeted with a "Permission denied" message instead of a sudo prompt. Why isn't sudo in the wheel group?
I noticed, from my login screen, that the username is easy to ascertain, just click on the user photo. However, has anyone considered the security ramifications of this setup? In order to brute force your way into a computer you must have two pieces of information; a username and a password. However, if you already know the username, or you can click on a user's account picture in the login screen, then your battle is half won. So, go to the login screen, click on a user photo and all you need do now is guess the password. And we all know how secure user passwords are these days, right? I mean, no one ever re-uses a password.. right?
After having brought that up, can someone teach me how to have my login screen show only an empty text box for the username and another empty text box for the password instead of showing my user photo and making it easier on criminals? This way anyone who wants to brute-force their way in has to waste time trying to guess everything.
Sudo
Years ago, while working with Red Hat folks, I learned a little trick. In most computer systems there is a group called the wheel group. Administrators were added to the wheel group and sudo was handled with:
Code:
chown root:wheel /usr/bin/sudo
Comment