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?...

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.