Cookie security

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

  • Guest
    Guest replied
    Can I insert this code: php_value session.use_only_cookies 1
    php_value session.use_trans_sid 0
    in htaccess gives me server error 500

    of which cause the server to appear this error if so what tre
    '???

    Leave a comment:


  • Ponick
    replied
    Step 1.
    Also assuming your webserver is Apache, insert the following code into .htaccess to prevent session IDs from appearing

    php_value session.use_only_cookies 1
    php_value session.use_trans_sid 0



    Step 2.

    Consider the following code, on every page of your site...
    $actualurl= 'http://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
    $correcturl = 'http://www.MYSITE.COM/';
    if ($correcturl != $actualurl) {
    header("HTTP/1.1 301 Moved Permanently");
    header("Location: " . $correcturl);
    exit();
    }



    Leave a comment:


  • ori
    replied
    ive heard ppl using it but ive never needed it ur best to make cookie ($_SESSION) store ip and browser and have each page check that they match or unset the cookie ($_SESSION) i no some ppl just use the cookie id as the session maybe store ses or sid in the cookie as a $_SESSION var then u can just unset($_SESSION['ses']);

    Leave a comment:


  • subzero
    replied
    Use php.ini as your edit that into that

    php.ini
    Code:
    [PHP]
    ; Move to sid off.
    session.use_trans_sid off
    But i never seen this code before session.use_trans_sid off

    Leave a comment:


  • Guest
    Guest replied
    My server does not work this code php_flag session.use_trans_sid off

    Leave a comment:


  • Ponick
    replied
    Originally posted by ripkk2tfk View Post
    What is the best way to prevent cookie's from being stolen?
    In your .htaccess file, use the code below:

    php_flag session.use_trans_sid off Lol

    Leave a comment:


  • subzero
    replied
    Self allowed.

    Only sent to owner !!

    Leave a comment:


  • ripkk2tfk
    started a topic Cookie security

    Cookie security

    What is the best way to prevent cookie's from being stolen?
Working...
X