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 7014045
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T22:28:10+00:00 2026-05-27T22:28:10+00:00

I’m having troubles understanding this, and I think my ignorance to web exploits is

  • 0

I’m having troubles understanding this, and I think my ignorance to web exploits is to blame. My understanding of session fixation goes like this:

  • Hacker uses some exploit to retrieve the session id of a currently logged in user.
  • Hacker uses session id to access the site, stealing the session and effectively logging in.

It’s been recommended that you use regenerate_session_id to reduce the chances the hacker can intercept the session. Now wouldn’t that trigger regenerate_session_id, updating the hacker with the session id while simultaneously logging out the user who was originally logged in? This seems like it would cause more harm then good, so I know I must be missing something in the picture here. What am I missing?

  • 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-27T22:28:11+00:00Added an answer on May 27, 2026 at 10:28 pm

    session_regenerate_id is a good way to prevent session highjacking because highjacking usually occurs in a later step after the session id was stolen.

    For example:

    1. Visit a forum which XSS injection
    2. Use clicks on a link and it steals session
    3. User realizes that it’s not what he wanted, presses back
    4. Site regenerates a new session id, user is saved, session fixation doesn’t occur as the session id stolen is probably not used immediately by the server.

    If, for any reason, the fixation comes to be something live and very fast such as an automated process, then no, you’re right, this will not save the user. This is why you should not rely only on session_regenerate_id but also on the IP address of the user.

    if(!session_id()){
        session_start();
        if(!isset($_SESSION['user_ip'])){
            $_SESSION['user_ip'] = $_SERVER['REMOTE_ADDR'];
        }
        if($_SESSION['user_ip'] !== $_SERVER['REMOTE_ADDR']){
            exit('highjacking detected, session terminated');
        }
        session_regenerate_id();
    }
    

    Obviously, if the hack comes from the same network such as a workplace, the ip detection won’t work so you can also use a UserAgent check. But this is getting a bit overkill depending on the sensitivity of your data.

    Hope it helps…

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
link Im having trouble converting the html entites into html characters, (&# 8217;) i
For some reason, after submitting a string like this Jack’s Spindle from a text
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I would like my Web page http://www.gmarks.org/math_in_e-mail.txt on my Apache 2.2.14 server to display
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I would like to count the length of a string with PHP. The string
this is what i have right now Drawing an RSS feed into the php,
I've got a string that has curly quotes in it. I'd like to replace
I have this code to decode numeric html entities to the UTF8 equivalent character.

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.