Jump to content

HTTPS Everywhere

Recommended Posts

Anything that involves a redirect seems to drop you back to http - I've mentioned it to Mod in the past. I've also noticed that opening a link in a new tab sometimes gives you http, even though the link itself is https, but I have no idea what triggers it.

  • Like 1

Share this post


Link to post
Share on other sites
Anything that involves a redirect seems to drop you back to http - I've mentioned it to Mod in the past. I've also noticed that opening a link in a new tab sometimes gives you http, even though the link itself is https, but I have no idea what triggers it.

 

Thanks, I thought it might just be me. There is a browser extension (HTTPS Everywhere) for Firefox, Chrome, and Opera that can help to compensate for the deficiency but of course the best approach would be to correct the problem with the site so that people who don't have this work around installed are as protected as they can be.

 

The in mean time I guess it's a good idea for everyone (particularly people on hotel or similar Wifi networks) to keep an eye on the address bar and go back to https when they see it disappear and revert to plain text http.

 

I actually discovered this wonderful place when I was asked to do a security audit of a hotel Wifi network many years ago and of course we were easily able to capture the credentials of people logging into this site right out of thin air (the password was sent in the clear as simple hash).

Share this post


Link to post
Share on other sites

I can not find a solution for this. I have looked on google and through all the 1000's of settings in the admin and I don't know how to fix it. Anyone else use vbulletin and know how this can be fixed I am open for suggestions.

Share this post


Link to post
Share on other sites
I can not find a solution for this. I have looked on google and through all the 1000's of settings in the admin and I don't know how to fix it. Anyone else use vbulletin and know how this can be fixed I am open for suggestions.

 

Apparently, you can use a bigger hammer (but I'd be careful with such a change employing proper change management approaches with a back out plan until I was certain I got it right). Apache mod_rewrite to the rescue?

 

# Always Forced www to non www and go to https

RewriteCond %{HTTP_HOST} ^www.(.+)$ [NC]

RewriteRule ^(.*)$ https://%1/$1 [R=301,L]

 

# Always Forced http to https

RewriteCond %{HTTPS} off

RewriteCond %{SERVER_PORT} 80

RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R,L]

Share this post


Link to post
Share on other sites

Some directories such as the chatroom link must be http and i am not good at these rewrite rules. How does one exclude some directories do you know?

Share this post


Link to post
Share on other sites

I used to run two message boards (not vbulletin) and found User forum always had the answer to any question I had or I was able to get quick answers for any question where a Search didnt turn up the solution

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
You are posting as a guest. If you have an account, please sign in.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


×
×
  • Create New...