Secure Your Wordpress Blog Administration With Two-Factor Authentication
Secure Your Wordpress Blog Administration With Two-Factor AuthenticationWordpress is a very popular blogging service. It was recently hit by a disturbing vulnerability that allowed attackers to reset the Administrator's password. While there is a patch for that vulnerability now, wouldn't it be best to not use static passwords? It is actually quite simple to add two-factor authentication to Wordpress. First download and install the http authentication plugin for Wordpress. This plugin allows you to use your webserver for authentication, in our case Apache. We've already covered how to add two-factor authentication to Apache using radius. Activate the plugin in Wordpress: Be sure to add your WiKID username as an administrator in Wordpress. Obviously, you can add the Admin user to WiKID as well, but it might be better to have a separate account. Now, restrict /wp-admin/ and wp-login.php in Apache: <FilesMatch "wp-login\.php$"> Satisfy all AuthType Basic AuthBasicProvider xradius AuthName "Please enter your username and WiKID one-time passcode." AuthXRadiusAddServer "192.168.1.171:1812" "openid_secret" AuthXRadiusTimeout 7 AuthXRadiusRetries 2 require valid-user </FilesMatch> <Location /wp-admin> Satisfy all AuthType Basic AuthBasicProvider xradius AuthName "Please enter your username and WiKID one-time passcode." AuthXRadiusAddServer "192.168.1.171:1812" "openid_secret" AuthXRadiusTimeout AuthXRadiusRetries 2 require valid-user </Location> Now when you try to access the administration section of Wordpress, you will be prompted for your WiKID username and the one-time passcode. You can protect the entire blog by making the location /wordpress/. You should also be able to use the WiKID Strong Authentiction Community Edition server and mod_auth_ldap instead of Radius.
|



Recent comments
1 hour 39 min ago
11 hours 6 min ago
11 hours 56 min ago
15 hours 29 min ago
19 hours 53 min ago
20 hours 15 min ago
22 hours 25 min ago
1 day 8 hours ago
1 day 13 hours ago
1 day 14 hours ago