• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

https

Guest
Apr 06, 2007 Apr 06, 2007

Copy link to clipboard

Copied

hi i have a users login if i move the pages after the login page to the https folder, are they automically secure ?

Also this is not a shopping cart, but i do need a high level of security, would i need a digital certificate just for a login?

TOPICS
Advanced techniques

Views

304

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Apr 06, 2007 Apr 06, 2007

Copy link to clipboard

Copied

Any page called with HTTPS has its contents encrypted before being sent to the browser, and is decrypted by the browser. So the contents are secure during transmission.

But what about someone typing in the URL of a "secure" page. For example, what if I entered https://www.yourSite.com/supposedlySecurePage.cfm. If you have not made provisions to prevent this, I will receive the page. HTTPS does nothing to prevent this.

You need a robust login and authentication scheme built into your site. Check out the Login Wizard at
http://www.york.ac.uk/services/cserv/docs/manuals/cfusionmx/htmldocs/wwhelp/wwhimpl/js/html/wwhelp.h...
Or go to http://www.york.ac.uk/services/cserv/docs/manuals/cfusionmx/htmldocs/wwhelp/wwhimpl/js/html/wwhelp.h... to learn more about authentication with ColdFusion.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Apr 06, 2007 Apr 06, 2007

Copy link to clipboard

Copied

LATEST
hi many thanks

i use the code below on every page after the login, would this be secure enough?

<CFIF NOT IsDefined("session.Club")>
<CFLOCATION URL="ReLogin.cfm">
</CFIF>

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources
Documentation