PDA

View Full Version : Protecting forum parts by htaccess


HolyKiller
01-05-2010, 10:00 PM
I just found a thread (https://vborg.vbsupport.ru/showthread.php?t=232257) about protecting Admin Panel via htaccess. It is usable and +1 for the author, but... The thing is, it supports only one login which need to be shared, if you have more admins, or, you want to protect Moderator panel too and have more than one moderator. So after every staff change, you need to change your pass and tell everybody, there is a new password. Second thing, you need to edit existing vbulletin files, so, you probably need to edit them over and over again after every vBulletin update. AND the third thing, that password are plain-text stored, which is not good at all.

Once again, i dont want insult that thread author, but, i just want share my way, how to do it more "sophisticated" AND secure ;)

1) Create a files named .htaccess and .htpasswd
(if you using Windows and get error message, create a htaccess.txt and htpasswd.txt files for now)

2) In htaccess add:
AuthUserFile /*link.to.your.protected.dir*/.htpasswd
AuthType Basic
AuthName "Protected Area"
require valid-user

- You need to set a correct path, so, you can get it easilly like this:

2a) Create a new file and add code:
<?
phpinfo();
?>

2b) Name that file like info.php and put it INTO your directory which you want to procect (admincp, cpmod, ... etc...)

2c) Open your browser and type path to your info.php file, so something like:
http://www.yoursite.com/forum/admincp/info.php

2d) You get a full information about your php. You need to find (use browser function) a row named SCRIPT_FILENAME and on the right side you can see absolute path to info.php file. Something like this: /var/www/yoursite.com/forum/admincp/info.php

2e) Copy that path into htaccess file and rewrite info.php to .htpasswd. So you actually got this in .htaccess file:

AuthUserFile /var/www/yoursite.com/forum/admincp/.htpasswd
AuthType Basic
AuthName "Protected Area"
require valid-user

3) Now you need to set up some usernames nad hashed passwords. I recomanded THIS (http://www.kxs.net/support/htaccess_pw.html) page. It rly helps you. Just insert your username and password (that name and pass, what you want to use for protecting your files) and click on "Create Password". So for example we use username Anton and passsword whiteglass and we get this:

Anton:H8hXcFoiSNgtY

and thats exactly what we need, so we just copy&paste this into .htpasswd file. By the way, you can add more users into .htaccess file. Just generate more name/pass and add them, one on each row. So you can use your own name and pass, and your co-admin another username and password. Or if you protecting your modcp directory, you can create specific login for each moderator ;)

4) Save both files and upload them on your server.

5) Now, try to access your admincp. You shoud get a small window popped up. If not, you did something wrong and you need to start over.


BTW: If you used htaccess.txt and htpasswd.txt names, you need to rename them after upload. The correct names are .htaccess and .htpasswd WITH that DOT on start!

Dont forget to delete that info.php file ;)

Hope it helps

Yea, and sorry for my english, i'm from Czech republic ;)

Holy

HolyKiller
01-05-2010, 11:02 PM
If you already using the second way (https://vborg.vbsupport.ru/showthread.php?t=232257), make sure you revert your index files back to original vBulletin first :)

Hornstar
01-07-2010, 03:35 AM
Thanks, this way is a little nicer then the current way I am, plus I like how the passwords are not in plain text anymore.

we_are_borg
01-07-2010, 01:18 PM
On a small side note never put .htpasswd in a place that is world readable it should go before the directory where you place your webcontent, most systems will allow this or have even a special place for it.

If your lazy like me there is a program called Deadlock (http://www.phpdeadlock.org) that will use a database and normal htaccess and htpasswd files to grant access to it.

abdobasha2004
01-08-2010, 02:50 PM
nice one for users who have no access to make fire walls

Shabcool
09-14-2010, 06:29 AM
Thanks dir

rtyagis
11-08-2010, 12:18 PM
Nice simple article for new users like me. Anyway thanks.

FReeSTER
09-17-2011, 04:59 PM
Thank you mate, I will try this

TheLastSuperman
09-23-2011, 05:07 PM
I've always liked these as well:

.htaccess password protect a single File:
http://webdesign.about.com/od/htaccess/ht/password_1_file.htm

.htaccess password protect a Folder:
http://webdesign.about.com/od/htaccess/ht/hthtaccess.htm

.htaccess authentication generator:
http://www.htaccesstools.com/htaccess-authentication/

.htaccess password generator:
http://www.htaccesstools.com/htpasswd-generator/

Dorgham
10-27-2012, 02:22 AM
It is really the best protection for all website owners
Thanks a lot :)

matrex722
03-24-2013, 06:00 PM
thanks man
nice topic

DNN
06-01-2014, 01:47 AM
What you mentioned didn't work, unless the part where it says "/*link.to.your.protected.dir*/" is supposed to have "mywebsite.com/admincp."

ForceHSS
06-01-2014, 02:08 AM
This can be done from any cpanel without all this extra work