Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6869133
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T03:31:12+00:00 2026-05-27T03:31:12+00:00

With the URL Structure like http://www.site.com/user/1 , is it a security risk? For example

  • 0

With the URL Structure like http://www.site.com/user/1, is it a security risk?

For example like here http://stackoverflow.com/users/edit/1

Isn’t this a security breach. How can I avoid this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T03:31:13+00:00Added an answer on May 27, 2026 at 3:31 am

    Please explain why you think it is a security breach.

    If you mean that a user can simply change the number to access another user’s edit page, yes they can. That can also be done with POST, the body can manually be altered (for example by creating a local html file that posts to your page, or by altering the body using a browser plugin).

    You should however use a check on every page, to see whether the currently logged on user has the right to perform the action(s) that are performed on that page.

    It can simply be done by:

    $userIdToEdit = $_GET['ID'];
    
    if ($userIdToEdit != $_SESSION['loggedOnUserId'])
    {
        redirect("/NotAllowed"); // Deny access to the page
    }
    
    // if we end up here, the user may perform this action, like store POSTed data in db
    

    However, while you have all flexibility you want, you might be repeating checks throughout pages. A solution to this would be using RBAC, where it would become like this:

    checkRole(EditOwnProfile); // only logged on users may do this, redirects to /NotAllowed if necessary
    
    // and check for another role 
    $userIdToEdit = $_GET['ID'];
    if ($userIdToEdit != $_SESSION['loggedOnUserId'])
    {
        checkRole(EditOtherProfile); // admins may do this for example
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

My URL structure is like http://www.example.com/folder/index.php?dir=dir1 To be able to access it from http://www.example.com/folder/dir1
I have a site with the following structure: http://www.example.com/folder1/folder2/folder3 I would like to disallow
I have a URL that is like the following: http://www.example.com/client/project/subdirectory/value/ I would like like
URL url = new URL(http://www.example.com/comment); HttpURLConnection connection = (HttpURLConnection) url.openConnection(); connection.setDoOutput(true); connection.setRequestMethod(POST); Is connection.setRequestProperty(key,
I have a simple login page and the URL structure is like www.mydomain.com/admin/auth I
I have the following url structure: http://localhost/sitename/views/www/page.php I would like for page.php to show
I have an existing journal website with the following url structure http://example.com/dbtable_id/ (eg. http://example.com/89348/)
Here is my CSV file : 12;France;http://www.google.com 12;France;http://www.google.com For each line, the $field[] structure
I am building a Zend Framework site with a conventional directory structure i.e. www.example.com/controller/action
If you use a full, SEO Friendly URL like http://example.com/talks/about/star-wars then you can expect

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.