Web Analytics Made Easy -
StatCounter Change the URL Displayed in the Address Bar - CodingForum

Announcement

Collapse
No announcement yet.

Change the URL Displayed in the Address Bar

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Change the URL Displayed in the Address Bar

    I have a JS application \ HTMl page that runs off a shared network drive. Is there a way to change the displayed URL in the address bar so that the end user can't see the exact path to the network drive?

    TIA,
    Basscyst
    Helping to build a bigger box. - Adam Matthews

  • #2
    I think browsers dont allow such a thing because it can lead to malicious attempts to steal user data.

    For example, some site may change the address in the addressbar to www.hotmail.com and attempt to steal your hotmail account password!
    Nobody is Perfect. I am Nobody.

    Comment


    • #3
      Hmm, By recreating an identical page for you to enter your user name \ password into? I see how that could cause problems. I'll just have it not display the address bar, far from fail safe but adequete.

      Thanks,
      Basscyst
      Helping to build a bigger box. - Adam Matthews

      Comment


      • #4
        There is a vulnerbility in IE in which allows you to hide the real location of the page by including a non printing character (%01) before the "@" in the URL. (would not depend on the longevity of this tho)

        <button onclick="location.href=unescape('http://www.microsoft.com%[email protected]')">IE Exploit</button>

        .....Willy

        Comment

        Working...
        X