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_target.cgi
#!/usr/bin/perl # Show a form to edit or create a target use strict; use warnings; require './iscsi-server-lib.pl'; our (%text, %in); my $conf = &get_iscsi_config(); &ReadParse(); # Get the target, or create a new one my $target; if ($in{'new'}) { &ui_print_header(undef, $text{'target_create'}, ""); $target = { 'num' => &find_free_num($conf, 'target'), 'type' => 'target', 'flags' => 'rw', 'network' => '192.168.1.0/24' }; } else { $target = &find($conf, "target", $in{'num'}); $target || &text('target_egone', $in{'num'}); &ui_print_header(undef, $text{'target_edit'}, ""); } # Show editing form print &ui_form_start("save_target.cgi", "post"); print &ui_hidden("new", $in{'new'}); print &ui_hidden("num", $in{'num'}); print &ui_table_start($text{'target_header'}, undef, 2); # Target name/number print &ui_table_row($text{'target_name'}, $target->{'type'}.$target->{'num'}); # Extent or device to share my @poss = map { [ $_->{'type'}.$_->{'num'}, &describe_object($_) ] } ( &find($conf, 'extent'), &find($conf, 'device') ); print &ui_table_row($text{'target_export'}, &ui_select("export", $target->{'export'}, \@poss, 1, 0, !$in{'new'})); # Sharing mode print &ui_table_row($text{'target_flags'}, &ui_select("flags", $target->{'flags'}, [ [ 'ro', $text{'targets_flags_ro'} ], [ 'rw', $text{'targets_flags_rw'} ] ])); # Client network my $all = $target->{'network'} eq 'any' || $target->{'network'} eq 'all' || $target->{'network'} =~ /^0(\.0)*\/0$/ ? 1 : 0; my ($net, $mask) = $all ? ( "", "" ) : split(/\//, $target->{'network'}); print &ui_table_row($text{'target_network'}, &ui_radio("network_def", $all, [ [ 1, $text{'target_network_all'} ], [ 0, $text{'target_network_net'} ] ])." ". &ui_textbox("network", $net, 15)." / ". &ui_textbox("mask", $mask, 15)); print &ui_table_end(); if ($in{'new'}) { print &ui_form_end([ [ undef, $text{'create'} ] ]); } else { print &ui_form_end([ [ undef, $text{'save'} ], [ 'delete', $text{'delete'} ] ]); } &ui_print_footer("list_targets.cgi", $text{'targets_return'});
Close