
WordPress Security Standards
- June 17, 2015
- Leave a comment
A lot of WordPress administrators are concerned about security these days. There are certain easy steps which should be followed to avoid hacking of WordPress sites:
- Keep WordPress updated – as there are certain bug fixes and security updates implemented by WordPress developers
- Make sure your plugins are always updated
- Avoid unnecessary themes and plugins. Always delete extra plugins and themes which are no longer needed on the site
- Restrict direct access to WordPress directories through HTACCESS and empty index.php file in uploads, wp-content, themes and plugin directories
- File permissions should be set chmod 755 for directories (except for media upload folder which could be chmod 777) and chmod 644 for files
- Hide the WordPress version being used in included files (CSS & JavaScript)
- Remove WordPress generated meta tags
- Always use mark passwords for admin panel access
- Avoid “admin” or “administrator” as username
- Disable file editing through the admin panel, or any rookie can edit your files that have access to the admin panel. Worst case scenario? If any hacker gains access to the admin panel, at least he cannot access the files and change theme or insert malicious code
- Apply invalid login attempt lock downs to avoid Brute Force attacks
- Use security plugins like iThemes security (Formerly known as Better WP-Security)
- Backup your WordPress directory before any major change. Also backup the database at regular intervals – once a week or every fortnight is recommended; all the content and settings will be saved to the database.
User Comments