More SSH security

For added security, I modified the .bashrc profile for any users that may have shell access, and added the following, so that when the user logs in, it sends out an email, letting you know that someone has logged in. echo ‘ALERT – Root Shell Access (YourserverName) on:’ `date` `who` | mail -s “Alert: Root […]

Read More »

Adding a new user to your system

If you need to add a new user to your systemm just run the following commands: useradd username That will create a new user, and a new group, for the ‘username’ that you placed in there.  Now, to change the password for that user, run this: passwd username The system will ask you to input […]

Read More »

SSH Security

There are many things one can do to help keep your ssh access secure on a shared hosting enviroment.  Grab your client (putty links can be found on the software page), log in, and lets go! The first one, don’t allow it!  Pretty simple huh?  In a shared hosting environment, there are very few reasons […]

Read More »