Overly broad permissions can turn one compromised account into a much larger security problem. Learn how to reduce unnecessary access, review privileges, and apply least privilege across modern Linux systems. Review Linux Privileges×
Want to hide sensitive files and folders from your Linux desktop file manager? Learn about one method for doing this in a helpful tutorial. . You probably already know the traditional method of hiding files on the Linux command line. If not, any file that begins with a . will not be seen with the ls command, unless you add the -a option. Those same files and directories will be hidden from the file manager unless you explicitly tell the file manager to show those secreted files. This is a handy way to hide sensitive information (such as app configurations and the like) away from prying eyes. Although not truly a means to security, it shouldn't be overlooked as an additional layer. . Discover methods to secure private documents on the Linux desktop by employing straightforward strategies.. File Hiding Techniques,Linux Sensitive Data Management,Desktop File Privacy. . Brittany Day
Wipe is a secure file wiping utility.. The link for this article located at Wipe: Secure File Deletion is no longer available. . The link for this article located at Wipe: Secure File Deletion is no longer available.. secure, wiping, utility, article, located, deletio. . Anthony Pell
Sensitive information that only certain people need to have web access to must be secured.. Sensitive information that only certain people need to have web access to must be secured. If sensitive or proprietary information is located on your web site and you do not want public access to this information, you must password it. An obscure file name with no links to it anywhere on the site will not keep the information secure. Security through obscurity does not work. To password a file, a series of files or a directory in Apache, the httpd.conf file must be edited. Then, a database of usernames and passwords must be created. AuthType Basic AuthName "Secret" AuthUserFile /usr/local/apache/users require valid-user In this example, all files that begin with secret. will require authentication. If only one file needed to be password protected, the example could be changed to: Similarly, if a directory needed to be password protected, the example could be changed to this: Now back to the original example, the authentication type is basic, meaning it is just a text file, not a true database. When someone tries to go to one of the pages that is protected, the box that asks for a username and password will be titled Secret. The text file with the usernames and passwords will be called users and be located in the /etc/httpd/conf directory. According to the require field, any user in the users file is allowed access. To set up the text file with usernames and passwords, the program htpasswd must be used. It is located in the bin directory when you install apache. The syntax is very simple for this program. The first time htpasswd is run for the users file, it should be called like this: root# /usr/bin/htpasswd -m -c filename username In our example, it would look something like this: root# /usr/bin/htpasswd -m /etc/httpd/conf/users canisab For more information about this and similar things, goto Welcome to The Apache Software Foundation! . Also, there are great books such as Apache: The Definitive Guide by Ben and Peter Laurie. . Safeguard confidential data on your site by utilizing Nginx security measures. Discover how through professional guidance.. Apache Authentication, Sensitive Data Security, Web Access Control. . Anthony Pell
Get the latest Linux and open source security news straight to your inbox.