Black Hat Forum
Go Back   Black Hat Forum > Black Hat SEO Forum > Blogging

Blogging Talk about Wordpress, Blogger, and other blogs.
Blogs = Increased Spider Visits.

Search
 
Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 10-02-2008, 06:30 AM
Junior Member
 
Join Date: Sep 2008
Posts: 119
Thanks: 39
Thanked 33 Times in 20 Posts
Activity: 37%
Longevity: 4%
Today: 1/5
Default Wordpress Security

Hello guyz,

I have read that hackers target wordpress blogs easily.
I heard that they target .htaccess file first.
Where can I find .htaccess file?
Can any one tell me how can I protect wordpress blog.

Best Regards.

Last edited by twinkle88; 10-02-2008 at 06:34 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 10-02-2008, 08:34 AM
gifmore's Avatar
Jr. VIP
 
Join Date: Oct 2007
Posts: 281
Thanks: 46
Thanked 40 Times in 35 Posts
Activity: 43%
Longevity: 36%
Today: 1/5
Default Re: Wordpress Security

Came across this product:

Code:
hxxp://wppadlock.c0m/
Have no clue as to whether it really works or how good it is, but it might be worth a look

If other members have had any experience with this, please do share your feedback here

Thank you.

Cheerio
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 10-02-2008, 12:39 PM
Junior Member
 
Join Date: Sep 2008
Posts: 119
Thanks: 39
Thanked 33 Times in 20 Posts
Activity: 37%
Longevity: 4%
Today: 1/5
Default Re: Wordpress Security

Thanks for the reply.
But there is nothing over there. The domain was redirected to hxxp://agoga.c0m/ which is parked.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 10-02-2008, 08:55 PM
OnFire25's Avatar
Registered Member
 
Join Date: Mar 2008
Posts: 93
Thanks: 203
Thanked 27 Times in 13 Posts
Activity: 17%
Longevity: 21%
Today: 0/5
Default Re: Wordpress Security

Having had some of my blogs attacked and identified as malware site because of the hacking these are some of the steps that I now use to "harden" my blogs.



* Your “plugins” directory is NOT secured by default!

And that means there’s no “index.html” or “index.php” file in that directory so anyone can SEE what plugins are you using by just going to “www.yoursite.com/wp-content/plugins”. It is easy to stop this by creating a blank HTML file named “index.html” and put it in that directory. Job done!


* Choose a strong password!

Don’t use an easy to be guessed admin password (your several characters small name, your wife’s name, pet names, etc)…choose a longer password and try to combine it with numbers and upper/lower case letters (even other characters like #,$,%,^…). And change your admin password regularly!


* Use security-related plugins!

Some of these security related plugins may help you:

- BS-WP-NoVersion
A lot of attackers and automated tools will try and determine software versions before launching exploit code. Removing your WordPress blog version may discourage some attackers and certainly will mitigate virus and worm programs that rely on software versions.

Or you can use Replace WP version plugin.
Code:
http://wordpress.org/extend/plugins/replace-wp-version/
- Login LockDown
Login LockDown records the IP address and timestamp of every failed WordPress login attempt. If more than a certain number of attempts are detected within a short period of time from the same IP range, then the login function is disabled for all requests from that range. This helps to prevent brute force password discovery. Currently the plugin defaults to a 1 hour lock out of an IP block after 3 failed login attempts within 5 minutes. This can be modified via the Options panel. Admisitrators can release locked out IP ranges manually from the panel.
Download it from here.
Code:
http://www.bad-neighborhood.com/login-lockdown.html

* Backup your database!

You should backup your data regurarly (that includes the database). Encrypting the backup, keeping an independent record of MD5 hashes for each backup file, and/or placing backups on read-only media (such as CD-R) increases your confidence that your data has not been tampered with.
One good utility is WP-DBManager and can be downloaded from here
Code:
http://wordpress.org/extend/plugins/wp-dbmanager/


* Of course, update your Wordpress!

Like I said above, keeping your Wordpress installation up to date is one of the most important measure against hackers. And it’s not complicated to be done either (backup everything before upgrade!).

Good Luck
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
The Following 8 Users Say Thank You to OnFire25 For This Useful Post:
BlackBeret (10-03-2008), Celica (10-03-2008), downloadfreak (10-03-2008), gifmore (10-02-2008), hellokitty (10-15-2008), litenup (10-02-2008), twinkle88 (10-03-2008), Uncle Kracker (10-31-2008)
  #5 (permalink)  
Old 10-02-2008, 11:06 PM
gifmore's Avatar
Jr. VIP
 
Join Date: Oct 2007
Posts: 281
Thanks: 46
Thanked 40 Times in 35 Posts
Activity: 43%
Longevity: 36%
Today: 1/5
Default Re: Wordpress Security

Quote:
Originally Posted by twinkle88 View Post
Thanks for the reply.
But there is nothing over there. The domain was redirected to hxxp://agoga.c0m/ which is parked.
Sorry, but I forgot to mention that you need to change the
xx to tt and the zero to o:

hxxp://wppadlock.c0m/

Anyways, OnFire25 also seemed to have posted some great tips and tools

Cheerio
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 10-03-2008, 12:25 PM
Junior Member
 
Join Date: Sep 2008
Posts: 119
Thanks: 39
Thanked 33 Times in 20 Posts
Activity: 37%
Longevity: 4%
Today: 1/5
Default Re: Wordpress Security

Infinite thanks to you.
I did every thing.

Good plougin protection idea. I think i can use this technique to protect all folders like images and all.

The version hider plugin is good. I think the new wordpress software is coded to protect our wordpress version from others.




Quote:
Originally Posted by OnFire25 View Post
Having had some of my blogs attacked and identified as malware site because of the hacking these are some of the steps that I now use to "harden" my blogs.



* Your “plugins” directory is NOT secured by default!

And that means there’s no “index.html” or “index.php” file in that directory so anyone can SEE what plugins are you using by just going to “www.yoursite.com/wp-content/plugins”. It is easy to stop this by creating a blank HTML file named “index.html” and put it in that directory. Job done!


* Choose a strong password!

Don’t use an easy to be guessed admin password (your several characters small name, your wife’s name, pet names, etc)…choose a longer password and try to combine it with numbers and upper/lower case letters (even other characters like #,$,%,^…). And change your admin password regularly!


* Use security-related plugins!

Some of these security related plugins may help you:

- BS-WP-NoVersion
A lot of attackers and automated tools will try and determine software versions before launching exploit code. Removing your WordPress blog version may discourage some attackers and certainly will mitigate virus and worm programs that rely on software versions.

Or you can use Replace WP version plugin.
Code:
http://wordpress.org/extend/plugins/replace-wp-version/
- Login LockDown
Login LockDown records the IP address and timestamp of every failed WordPress login attempt. If more than a certain number of attempts are detected within a short period of time from the same IP range, then the login function is disabled for all requests from that range. This helps to prevent brute force password discovery. Currently the plugin defaults to a 1 hour lock out of an IP block after 3 failed login attempts within 5 minutes. This can be modified via the Options panel. Admisitrators can release locked out IP ranges manually from the panel.
Download it from here.
Code:
http://www.bad-neighborhood.com/login-lockdown.html

* Backup your database!

You should backup your data regurarly (that includes the database). Encrypting the backup, keeping an independent record of MD5 hashes for each backup file, and/or placing backups on read-only media (such as CD-R) increases your confidence that your data has not been tampered with.
One good utility is WP-DBManager and can be downloaded from here
Code:
http://wordpress.org/extend/plugins/wp-dbmanager/


* Of course, update your Wordpress!

Like I said above, keeping your Wordpress installation up to date is one of the most important measure against hackers. And it’s not complicated to be done either (backup everything before upgrade!).

Good Luck



Quote:
Sorry, but I forgot to mention that you need to change the
xx to tt and the zero to o:

hxxp://wppadlock.c0m/

Anyways, OnFire25 also seemed to have posted some great tips and tools

Cheerio

Thanks for the tip.
It is working fine. I think this plugin software does htaccess modification and asks the admin to input his ip address. Good plugin.
Instead of buying this plugin, if we do a google search ".htaccess protection", we can find the tip. But it must be edited manually where as this plugin automates the process.

Last edited by twinkle88; 10-03-2008 at 12:28 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


Add Your Link



Site protected by Firewall Script


Sitemap: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54