Browsing the archives for the Security category

Sorting files by datestamp in Bash

You would think there were a function in Linux already that would do this.  The following command will sort all files in a directory and all subdirectories for the past 14 days by datestamp. bash$ find . -mtime -14 -type f | while read line; do echo -n `ls -l –time-style=’+%s %F %T’ “$line” | […]

No Comments Posted in bash, Security
Tagged , ,
Securing WordPress on a shared host

The following articles contain details on securing your WordPress installation on a shared hosting service, specifically Rackspace Cloud Sites.  This post will change as more resources are compiled: On a shared hosting service running suexec, there should be no reason to have global permissions on a php site: http://codex.wordpress.org/Editing_wp-config.php#Override_of_default_file_permissions Backup, Backup, Backup!  Just 2 of […]

No Comments Posted in Security
Tagged , ,