Asp超详细显示客户端系统信息

admin 2021年4月3日19:04:32评论53 views字数 7963阅读26分32秒阅读模式

Asp超详细显示客户端系统信息,asp获取Ip,asp获取浏览器类型,asp获取操作系统类型,asp获取来路页面,asp获取真实IP,asp获取代理IP。

Asp超详细显示客户端系统信息,原创源码:

"" Then
        GetReferer = Request.ServerVariables("HTTP_REFERER")
    Else
        If Len(Request.QueryString)  0 Then CanShu = "?" & Request.QueryString
        GetReferer = "http://" & Request.Servervariables("HTTP_HOST") & Request.ServerVariables("SCRIPT_NAME") & CanShu
    End If
End Function

Function GetIP() '绕过代理获取真实IP
    Dim StrIPAddr
    If Request.ServerVariables("HTTP_X_FORWARDED_FOR") = "" OR InStr(Request.ServerVariables("HTTP_X_FORWARDED_FOR"), "unknown") > 0 Then
        StrIPAddr = Request.ServerVariables("REMOTE_ADDR")
    ElseIf InStr(Request.ServerVariables("HTTP_X_FORWARDED_FOR"), ",") > 0 Then
        StrIPAddr = Mid(Request.ServerVariables("HTTP_X_FORWARDED_FOR"), 1, InStr(Request.ServerVariables("HTTP_X_FORWARDED_FOR"), ",")-1)
    ElseIf InStr(Request.ServerVariables("HTTP_X_FORWARDED_FOR"), ";") > 0 Then
        StrIPAddr = Mid(Request.ServerVariables("HTTP_X_FORWARDED_FOR"), 1, InStr(Request.ServerVariables("HTTP_X_FORWARDED_FOR"), ";")-1)
    Else
        StrIPAddr = Request.ServerVariables("HTTP_X_FORWARDED_FOR")
    End If
    GetIP = Trim(Mid(StrIPAddr, 1, 30))
End Function

Function GetBrType() '获取浏览器类型(可以判断:47种浏览器;GoogLe,Grub,MSN,Yahoo!蜘蛛;十种常见IE插件)
    Dim StrType, TheInfo, Tmp1, Sysver
    GetBrType = "Other Unknown"
    TheInfo = UCase(Request.ServerVariables("HTTP_USER_AGENT"))
    if Instr(TheInfo,UCase("mozilla"))>0 then GetBrType = "Mozilla"
    if Instr(TheInfo,UCase("icab"))>0 then GetBrType = "iCab"
    if Instr(TheInfo,UCase("lynx"))>0 then GetBrType = "Lynx"
    if Instr(TheInfo,UCase("links"))>0 then GetBrType = "Links"
    if Instr(TheInfo,UCase("elinks"))>0 then GetBrType = "ELinks"
    if Instr(TheInfo,UCase("jbrowser"))>0 then GetBrType = "JBrowser"
    if Instr(TheInfo,UCase("konqueror"))>0 then GetBrType = "konqueror"
    if Instr(TheInfo,UCase("wget"))>0 then GetBrType = "wget"
    if Instr(TheInfo,UCase("ask jeeves"))>0 or Instr(TheInfo,UCase("teoma"))>0 then GetBrType = "Ask Jeeves/Teoma"
    if Instr(TheInfo,UCase("wget"))>0 then GetBrType = "wget"
    if Instr(TheInfo,UCase("opera"))>0 then GetBrType = "opera"
    if Instr(TheInfo,UCase("NOKIAN"))>0 then GetBrType = "NOKIAN(诺基亚手机)"
    if Instr(TheInfo,UCase("SPV"))>0 then GetBrType = "SPV(多普达手机)"
    if Instr(TheInfo,UCase("Jakarta Commons"))>0 then GetBrType = "Jakarta Commons-HttpClient"
    if Instr(TheInfo,UCase("Gecko"))>0 then
        StrType = "[Gecko] "
        GetBrType = "Mozilla Series"
        if Instr(TheInfo,UCase("aol"))>0 then GetBrType = "AOL"
        if Instr(TheInfo,UCase("netscape"))>0 then GetBrType = "Netscape"
        if Instr(TheInfo,UCase("firefox"))>0 then GetBrType = "FireFox"
        if Instr(TheInfo,UCase("chimera"))>0 then GetBrType = "Chimera"
        if Instr(TheInfo,UCase("camino"))>0 then GetBrType = "Camino"
        if Instr(TheInfo,UCase("galeon"))>0 then GetBrType = "Galeon"
        if Instr(TheInfo,UCase("k-meleon"))>0 then GetBrType = "K-Meleon"
        GetBrType = StrType & GetBrType
    end if
    if Instr(TheInfo,UCase("bot"))>0 or Instr(TheInfo,UCase("crawl"))>0 then
        StrType = "[Bot/Crawler]"
        if Instr(TheInfo,UCase("grub"))>0 then GetBrType = "Grub"
        if Instr(TheInfo,UCase("googlebot"))>0 then GetBrType = "GoogleBot"
        if Instr(TheInfo,UCase("msnbot"))>0 then GetBrType = "MSN Bot"
        if Instr(TheInfo,UCase("slurp"))>0 then GetBrType = "Yahoo! Slurp"
        GetBrType = StrType & GetBrType
    end if
    if Instr(TheInfo,UCase("applewebkit"))>0 then
        StrType = "[AppleWebKit]"
        GetBrType = ""
        if Instr(TheInfo,UCase("omniweb"))>0 then GetBrType = "OmniWeb"
        if Instr(TheInfo,UCase("safari"))>0 then GetBrType = "Safari"
        GetBrType = StrType & GetBrType
    end if
    if Instr(TheInfo,UCase("msie"))>0 then
        StrType = "[MSIE"
        Tmp1 = mid(TheInfo,(Instr(TheInfo,UCase("MSIE"))+4),6)
        Tmp1 = left(Tmp1,Instr(Tmp1,";")-1)
        StrType = StrType & Tmp1 & "]"
        GetBrType = "Internet Explorer"
        GetBrType = StrType & GetBrType
    end if
    if Instr(TheInfo,UCase("msn"))>0 then GetBrType = "MSN"
    if Instr(TheInfo,UCase("aol"))>0 then GetBrType = "AOL"
    if Instr(TheInfo,UCase("webtv"))>0 then GetBrType = "WebTV"
    if Instr(TheInfo,UCase("myie2"))>0 then GetBrType = "MyIE2"
    if Instr(TheInfo,UCase("maxthon"))>0 then GetBrType = "Maxthon(傲游浏览器)"
    if Instr(TheInfo,UCase("gosurf"))>0 then GetBrType = "GoSurf(冲浪高手浏览器)"
    if Instr(TheInfo,UCase("netcaptor"))>0 then GetBrType = "NetCaptor"
    if Instr(TheInfo,UCase("sleipnir"))>0 then GetBrType = "Sleipnir"
    if Instr(TheInfo,UCase("avant browser"))>0 then GetBrType = "AvantBrowser"
    if Instr(TheInfo,UCase("greenbrowser"))>0 then GetBrType = "GreenBrowser"
    if Instr(TheInfo,UCase("slimbrowser"))>0 then GetBrType = "SlimBrowser"
    if Instr(TheInfo,UCase("360SE"))>0 then GetBrType = GetBrType & "-360SE(360安全浏览器)"
    if Instr(TheInfo,UCase("QQDownload"))>0 then GetBrType = GetBrType & "-QQDownload(QQ下载器)"
    if Instr(TheInfo,UCase("TheWorld"))>0 then GetBrType = GetBrType & "-TheWorld(世界之窗浏览器)"
    if Instr(TheInfo,UCase("icafe8"))>0 then GetBrType = GetBrType & "-icafe8(网维大师网吧管理插件)"
    if Instr(TheInfo,UCase("TencentTraveler"))>0 then GetBrType = GetBrType & "-TencentTraveler(腾讯TT浏览器)"
    if Instr(TheInfo,UCase("baiduie8"))>0 then GetBrType = GetBrType & "-baiduie8(百度IE8.0)"
    if Instr(TheInfo,UCase("iCafeMedia"))>0 then GetBrType = GetBrType & "-iCafeMedia(网吧网媒趋势插件)"
    if Instr(TheInfo,UCase("DigExt"))>0 then GetBrType = GetBrType & "-DigExt(IE5允许脱机阅读模式特殊标记)"
    if Instr(TheInfo,UCase("baiduds"))>0 then GetBrType = GetBrType & "-baiduds(百度硬盘搜索)"
    if Instr(TheInfo,UCase("CNCDialer"))>0 then GetBrType = GetBrType & "-CNCDialer(数控拨号)"
    if Instr(TheInfo,UCase("NOKIAN85"))>0 then GetBrType = GetBrType & "-NOKIAN85(诺基亚手机)"
    if Instr(TheInfo,UCase("SPV_C600"))>0 then GetBrType = GetBrType & "-SPV_C600(多普达C600)"
    if Instr(TheInfo,UCase("Smartphone"))>0 then GetBrType = GetBrType & "-Smartphone(Windows Mobile for Smartphone Edition 操作系统的智能手机)"
End Function

Function GetSysVer() '获取系统类型(可以判断:29种操作系统(包括手机))
    GetSysVer="Other Unknown"
    TheInfo = UCase(Request.ServerVariables("HTTP_USER_AGENT"))
    if Instr(TheInfo,UCase("x11"))>0 or Instr(TheInfo,UCase("Unix"))>0 then GetSysVer="Unix"
    if Instr(TheInfo,UCase("Sunos"))>0 or Instr(TheInfo,UCase("SUN OS"))>0 then GetSysVer="SUN OS"
    if Instr(TheInfo,UCase("PowerPC"))>0 or Instr(TheInfo,UCase("PPC"))>0 then GetSysVer="PowerPC"
    if Instr(TheInfo,UCase("Macintosh"))>0 then GetSysVer="Mac"
    if Instr(TheInfo,UCase("Mac OSX"))>0 then GetSysVer="MacOSX"
    if Instr(TheInfo,UCase("FreeBSD"))>0 then GetSysVer="FreeBSD"
    if Instr(TheInfo,UCase("Linux"))>0 then GetSysVer="Linux"
    if Instr(TheInfo,UCase("Palmsource"))>0 or Instr(TheInfo,UCase("PalmOS"))>0 then GetSysVer="PalmOS"
    if Instr(TheInfo,UCase("WAP"))>0 then GetSysVer="WAP Mobile Phone"
    if Instr(TheInfo,UCase("Win98"))>0 then GetSysVer="Win 98"
    if Instr(TheInfo,UCase("NOKIAN"))>0 then GetSysVer="NOKIAN(诺基亚手机)"
    if Instr(TheInfo,UCase("Media Center"))>0 then GetSysVer="Windows XP Media Center PC"
    if Instr(TheInfo,UCase("Windows"))>0 then
        GetSysVer="Windows Series"
        if Instr(TheInfo,UCase("Windows CE"))>0 then GetSysVer="Windows CE"
        if Instr(TheInfo,UCase("Windows 95"))>0 then GetSysVer="Windows 95"
        if Instr(TheInfo,UCase("Windows 98"))>0 then GetSysVer="Windows 98"
        if Instr(TheInfo,UCase("Windows 2000"))>0 then GetSysVer="Windows 2000"
        if Instr(TheInfo,UCase("Windows XP"))>0 then GetSysVer="Windows XP"
        if Instr(TheInfo,UCase("Windows NT"))>0 then
            GetSysVer="Windows NT Series"
            if Instr(TheInfo,UCase("Windows NT 4.0"))>0 then GetSysVer="Windows 9x/98/95"
            if Instr(TheInfo,UCase("Windows NT 5.0"))>0 then GetSysVer="Windows 2000"
            if Instr(TheInfo,UCase("Windows NT 5.1"))>0 then GetSysVer="Windows XP"
            if Instr(TheInfo,UCase("Windows NT 5.2"))>0 then GetSysVer="Windows Server 2003"
            if Instr(TheInfo,UCase("Windows NT 6.0"))>0 then GetSysVer="Windows Vista/Windows Server 2008"
            if Instr(TheInfo,UCase("Windows NT 6.1"))>0 then GetSysVer="Windows Server 2008 R2/Windows 7 Series"
        end if
    end if
    if Instr(TheInfo,UCase("Tablet PC"))>0 then GetSysVer=GetSysVer & "-Tablet PC(平板电脑)"
    if Instr(TheInfo,UCase("Jakarta Commons"))>0 then GetSysVer=GetSysVer & "-Jakarta Commons-HttpClient"
    if Instr(TheInfo,UCase("bsalsa.com"))>0 then GetSysVer=GetSysVer & "-[BOT]bsalsa.com(搜索引型)"
End Function

Response.Write "真实IP:" & GetIP() & "
" Response.Write "代理IP:" & Request.ServerVariables("REMOTE_ADDR") & "
" Response.Write "访问时间:" & Date() & " " & Time() & "
" Response.Write "系统:" & GetSysVer & "
" Response.Write "语言:" & Request.ServerVariables("Http_Accept_Language") & "
" Response.Write "浏览器:" & GetBrType & "
" Response.Write "URL编码:" & Request.ServerVariables("Http_Accept_Encoding") & "
" Response.Write "方式:" & Request.ServerVariables("Request_Method") & "
" Response.Write "目标IP:" & Request.ServerVariables("LOCAL_ADDR") & "
" Response.Write "访问地址:" & GetReferer & "
" Response.Write "用户信息:" & Request.ServerVariables("Http_User_Agent") & "
" Response.End %>

留言评论(旧系统):

怎么保存记录 @ 2013-06-02 13:03:23

怎么保存记录?

本站回复:

写到文件或数据库里。

文章来源于lcx.cc:Asp超详细显示客户端系统信息

  • 左青龙
  • 微信扫一扫
  • weinxin
  • 右白虎
  • 微信扫一扫
  • weinxin
admin
  • 本文由 发表于 2021年4月3日19:04:32
  • 转载请保留本文链接(CN-SEC中文网:感谢原作者辛苦付出):
                   Asp超详细显示客户端系统信息http://cn-sec.com/archives/319802.html

发表评论

匿名网友 填写信息