Originally posted by DigitalExpl0it
open the cookie that it sets, get the varible
and in a php sript do this
<? echo "$varibale[one]"; ?>
My cookies have two varibles usally
$Test[one] and $Test[two]
once there is a cookie on the users system, and its from that site you can just echo out the varible that sits in the cookie.
um, ive been coding PHP a long time, and that didnt make ne sense to me at all.
Im pretty sure in some PHP scripts if the cookie can set the folder that has access to it.
u may need to search for setcookie( in the scripts and make sure it only has 3 parameters.
to see the variable names given to the cookies, use:
echo '<pre>';
print_r( $_COOKIE );
then you have full access to them. I did this to an invision board 🙂