Showing posts with label Wordpress Security. Show all posts
Showing posts with label Wordpress Security. Show all posts

Tuesday, July 5, 2011

Wordpress 3.2 Released - Much More Secure

Wordpress has just released wordpress 3.2 a couple of hours ago, Wordpress 3.2 comes with lots of major and minor bug fixes. Wordpress 3.2 is much more secure than previous versions as it comes with lots of security patches and fixes. WordPress 3.2 requires a minimum of MySql 5.0.15 and PHP 5.2.4. If you are facing some errors kindly contact your hosting immediately.




Wordpress 3.2 also comes with a very neat and clean design, with a fully refreshed admin design, a full screen editor for distraction free blogging
According to WordPress officials:
WordPress 3.2 in 40 words or less: WordPress comes with a refreshed admin design, a full screen editor for distraction free blogging, a new default HTML theme and an extended admin bar.

Tuesday, April 26, 2011

How To Find The Wordpress Version Of A Website/Blog

When ever a hacker tries to attack a CMS(Content managing system) the first thing which he usually does is that he tries to find out the version number of that CMS, So he could go and search on Exploit databases for possible exploits, In a wordpress blog by default you can easily find out some one's version number by just viewing the source of that particular blog.


 Now it's not a good idea to expose your version number because it will make your Website/blog more vulnerable to hackers, There are couple of ways through which you can hide your version numbers, The simplest one is to add the following code inside your functions.php file

remove_action('wp_head', 'wp_generator');
Moreover there are couple of other plugins which can help you hide your wordpress plugin, Just google for them.

Readme.html File Bug


Well even if any one is using plugins to hide their wordpress version number, it is still possible for a hacker to determine your version number, All the hacker has to do is to add "/readme.html" after the websites URL.

Countermeasures

  • Use a good plugin that can hide your wordpress version number.
  • Always update your wordpress to the latest version.
  • Either delete readme.html file or change it to some thing like readme.php file.
I hope you have learned something new today, Feel free to comment.