WordPress

  • Secure WordPress File Permissions: A Developer’s Guide to Hardening Your Site

    Secure WordPress File Permissions: A Developer’s Guide to Hardening Your Site

    Overview

    As web developers, we know that the flexibility of WordPress is partly due to its ability to allow certain files to be writable by the web server. This functionality is a double-edged sword because while it enables dynamic features, it also opens up security risks, especially on shared hosting platforms.

    To safeguard your WordPress site, it’s crucial to implement stringent file permissions and only relax them temporarily when necessary—for instance, when the site requires write access for certain operations or when handling file uploads.

    Recommended File Permission Practices

    • Ownership: All files should be owned by your web directory user account, with write permissions set for the same web directory user. Files that require WordPress to write should be accessible by the web server. On some hosting setups, this may mean the files need to be group-owned by the web server’s user account.
    • Root Directory (/): All files here should be writable by you alone, except for .htaccess if you allow WordPress to generate rewrite rules automatically.
    • WordPress Administration Area (/wp-admin/): All files should be writable by the web directory user account alone.
    • WordPress Core Libraries (/wp-includes/): All files should be writable by the web directory user account alone.
    • User Content Area (/wp-content/): This directory is meant to be writable by both the web directory user account and the web server process.
    • Themes (/wp-content/themes/): If using the theme editor, these files need to be writable by the web server process. Otherwise, they should be writable by the web directory user account alone.
    • Plugins (/wp-content/plugins/): All plugin files should be writable by the web directory user account alone.

    Any additional directories within /wp-content/ should follow the guidelines provided by the respective plugin or theme.

    Modifying File Permissions

    For those with shell access, file permissions can be adjusted recursively with these commands:

    • Directories: find /path/to/your/wordpress/install/ -type d -exec chmod 755 {} \;
    • Files: find /path/to/your/wordpress/install/ -type f -exec chmod 644 {} \;
    Secure WordPress File Permissions Screenshot

    Automatic Updates and File Permissions

    When WordPress is instructed to perform an automatic update, it carries out file operations under the file owner’s user account, not the web server’s. All files default to 0644 and directories to 0755, making them writable by the owner and readable by others, including the web server.

  • Find hacked WordPress files

    Go to the root of the folder that WordPress is installed in and run the following command:

    find . -name "*.php"  -print0 | xargs -0 egrep -l 'if\(!isset\(\$GLOBALS' >> infectedfiles.txt

    Then run the next command to view the output of the file:

    cat infectedfiles.txt
  • Quickly Disable or Enable All WordPress Plugins via the Database

    Before beginning, make a backup copy of your database. Then, login to your database using phpMyAdmin (or whatever), and navigate to the “active_plugins” column of the “wp_options” table using the following SQL query (edit the default WordPress table prefix “wp_” if needed):

    SELECT * FROM wp_options WHERE option_name = 'active_plugins';

    Once the active_plugins column appears, click to edit it. You will see something similar to the following, depending on the number and type of plugins you have installed:

    a:31:{i:0;s:13:"AddMySite.php";i:1;s:19:"akismet/akismet.php";i:2;s:23:"all_in_one_seo_pack.php";i:3;s:16:"authenticate.php";i:4;s:28:"breadcrumb-navigation-xt.php";i:5;s:18:"codeautoescape.php";i:6;s:37:"contact-coldform/contact_coldform.php";i:7;s:32:"custom-query-string-reloaded.php";i:8;s:30:"customizable-post-listings.php";i:9;s:33:"dd-sitemap-gen/dd-sitemap-gen.php";i:10;s:20:"download-counter.php";i:11;s:13:"feedcount.php";i:12;s:13:"full_feed.php";i:13;s:15:"get-weather.php";i:14;s:36:"google-sitemap-generator/sitemap.php";i:15;s:13:"gravatars.php";i:16;s:19:"kill-admin-nags.php";i:17;s:18:"landingsites13.php";i:18;s:30:"nofollow-free/nofollowfree.php";i:19;s:17:"ol_feedburner.php";i:20;s:16:"plugins-used.php";i:21;s:22:"popularity-contest.php";i:22;s:39:"search-everything/search_everything.php";i:23;s:27:"simple-tags/simple-tags.php";i:24;s:26:"simple_recent_comments.php";i:25;s:18:"simple_twitter.php";i:26;s:25:"subscribe-to-comments.php";i:27;s:24:"the-excerpt-reloaded.php";i:28;s:18:"theme-switcher.php";i:29;s:9:"top10.php";i:30;s:16:"wp-db-backup.php";}

    That entire array of code represents every active plugin on your site. Thus, to quickly disable all plugins without using the WP Admin area, highlight the entire block of code, cut it out, and paste it into a safe, offline text file. After removing the code, click the button to save your changes and that’s it. All WordPress plugins are now deactivated (yet still installed, and with all plugin options intact). This obviously is a huge time-saver that really comes in handy during those mission-critical, time-sensitive situations where every second counts. Once you are ready to re-activate your entire set of plugins, simply cut/copy & paste the preserved code back into the “active_plugins” field. Click save and done. Again, don’t forget to backup your database before editing it 😉

    Alternately, here is a one-second query to disable all plugins. this method works only for WordPress versions 2.9 and later:

    UPDATE wp_options SET option_value = 'a:0:{}' WHERE option_name = 'active_plugins';

    Upon execution, this query will clear the active_plugins field of all active plugins (duh), effectively disabling (without uninstalling or modifying) the entire set. This method is great if you plan on re-enabling each plugin individually, say, after resolving some heinous server error. Whereas the previous technique makes it easy to re-enable all plugins en masse, this query is perfect for simply “nuking” all active plugins with no remorse.

    Source: http://perishablepress.com/quickly-disable-or-enable-all-wordpress-plugins-via-the-database/