我不知你用的是什么技术,我用的是ASP.NET,里面的Request..ServerVariables 包含了客户端几乎所有的信息
用以下C#代码:
Response.Write("<h1>Show Request.ServerVariables </h1>");
foreach (string s in Request.ServerVariables.AllKeys)
{
Response.Write(s + " = " + Request.ServerVariables[s] + "<br>");
}
可以打印出你所用的机器的信息,包括实际物理目录、IP地址等等
至于你所提供的信息
CAPTURED:596957792:NA:NA:Sep 01 2005:281806:NLS:NLS:NLS:57480571:200508300001:NA:NA:NA:NA:NA
我不知道这代表什么,可能是对方服务器拿到你的机器信息自己又加工了一下返回给你
但仅仅针对你提出的问题,我估计 Request.ServerVariables collections 能满足你的需要
用以下C#代码:
Response.Write("<h1>Show Request.ServerVariables </h1>");
foreach (string s in Request.ServerVariables.AllKeys)
{
Response.Write(s + " = " + Request.ServerVariables[s] + "<br>");
}
可以打印出你所用的机器的信息,包括实际物理目录、IP地址等等
至于你所提供的信息
CAPTURED:596957792:NA:NA:Sep 01 2005:281806:NLS:NLS:NLS:57480571:200508300001:NA:NA:NA:NA:NA
我不知道这代表什么,可能是对方服务器拿到你的机器信息自己又加工了一下返回给你
但仅仅针对你提出的问题,我估计 Request.ServerVariables collections 能满足你的需要