Jump to content

Another PHP weirdo. Session varibles being passed with cookies turned off????


cs.punk

Recommended Posts

Try this out for yourself with cookies turned off

 

freaky.php

<?php
session_start();


$_SESSION['number'] = 3;
$_SESSION['key'] = time();


$key = "{$_SESSION['key']}";

if ($key == "")
{die("You will never know #1") ;
}
else
{echo "HUH?@!??????????????????????" . $key;
  print_r ($_SESSION);
}
?>

 

... I am trying to make a 'sql querier' file... Protected by a password... I know this is rather pointless but I still feel to continue :-[. And that if cookies is turned off it kinda well not really protects me from a brute force attack... Although whats there to protect?...

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.