Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.216.68
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
ruby /
vendor_ruby /
xmlrpc /
Delete
Unzip
Name
Size
Permission
Date
Action
base64.rb
1.56
KB
-rw-r--r--
2022-06-10 04:06
client.rb
18.93
KB
-rw-r--r--
2022-06-10 04:06
config.rb
825
B
-rw-r--r--
2022-06-10 04:06
create.rb
6.42
KB
-rw-r--r--
2022-06-10 04:06
datetime.rb
3.34
KB
-rw-r--r--
2022-06-10 04:06
marshal.rb
1.45
KB
-rw-r--r--
2022-06-10 04:06
parser.rb
15.45
KB
-rw-r--r--
2022-06-10 04:06
server.rb
19.89
KB
-rw-r--r--
2022-06-10 04:06
utils.rb
3.9
KB
-rw-r--r--
2022-06-10 04:06
Save
Rename
# frozen_string_literal: false # # Copyright (C) 2001, 2002, 2003 by Michael Neumann (mneumann@ntecs.de) # # $Id$ # require "xmlrpc/parser" require "xmlrpc/create" require "xmlrpc/config" require "xmlrpc/utils" module XMLRPC # :nodoc: # Marshalling of XMLRPC::Create#methodCall and XMLRPC::Create#methodResponse class Marshal include ParserWriterChooseMixin class << self def dump_call( methodName, *params ) new.dump_call( methodName, *params ) end def dump_response( param ) new.dump_response( param ) end def load_call( stringOrReadable ) new.load_call( stringOrReadable ) end def load_response( stringOrReadable ) new.load_response( stringOrReadable ) end alias dump dump_response alias load load_response end # class self def initialize( parser = nil, writer = nil ) set_parser( parser ) set_writer( writer ) end def dump_call( methodName, *params ) create.methodCall( methodName, *params ) end def dump_response( param ) create.methodResponse( ! param.kind_of?( XMLRPC::FaultException ) , param ) end # Returns <code>[ methodname, params ]</code> def load_call( stringOrReadable ) parser.parseMethodCall( stringOrReadable ) end # Returns +paramOrFault+ def load_response( stringOrReadable ) parser.parseMethodResponse( stringOrReadable )[1] end end # class Marshal end