Linux server.thearyasamaj.org 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
Apache
: 103.90.241.146 | : 216.73.216.213
Cant Read [ /etc/named.conf ]
5.6.40
ftpuser@mantra.thearyasamaj.org
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 /
usermin /
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.38
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 : DynamicWait.pm
package WebminUI::DynamicWait; use WebminCore; =head2 new WebminUI::DynamicWait(&start-function, [&args]) A page element indicating that something is happening. =cut sub new { my ($self, $func, $args) = @_; $self = { 'func' => $func, 'args' => $args, 'name' => "dynamic".++$dynamic_count, 'width' => 80, 'delay' => 20 }; bless($self); return $self; } =head2 set_message(text) Sets the text describing what we are waiting for =cut sub set_message { my ($self, $message) = @_; $self->{'message'} = $message; } sub get_message { my ($self) = @_; return $self->{'message'}; } =head2 html() Returns the HTML for the text field used to indicate progress =cut sub html { my ($self) = @_; my $rv; if ($self->get_message()) { $rv .= $self->get_message()."<p>\n"; } $rv .= "<form name=form_$self->{'name'}>"; $rv .= "<input name=$self->{'name'} size=$self->{'width'} disabled=true style='font-family: courier'>"; $rv .= "</form>"; return $rv; } =head2 start() Called by the page to begin the progress. Also starts a process to update the Javascript text box =cut sub start { my ($self) = @_; $self->{'pid'} = fork(); if (!$self->{'pid'}) { my $pos = 0; while(1) { select(undef, undef, undef, $self->{'delay'}/1000.0); my $str = (" " x $pos) . ("x" x 10); print "<script>window.document.forms[\"form_$self->{'name'}\"].$self->{'name'}.value = \"$str\";</script>\n"; $pos++; $pos = 0 if ($pos == $self->{'width'}); } exit; } &{$self->{'func'}}($self, @{$self->{'args'}}); } =head2 stop() Called back by the function when whatever we were waiting for is done =cut sub stop { my ($self) = @_; if ($self->{'pid'}) { kill('TERM', $self->{'pid'}); } my $str = (" " x ($self->{'width'}/2 - 2)) . "DONE"; print "<script>window.document.forms[\"form_$self->{'name'}\"].$self->{'name'}.value = \"$str\";</script>\n"; } =head2 set_wait(wait) If called with a non-zero arg, generation of the page should wait until this the progress is complete. Otherwise, the page will be generated completely before the start function is called =cut sub set_wait { my ($self, $wait) = @_; $self->{'wait'} = $wait; } sub get_wait { my ($self) = @_; return $self->{'wait'}; } =head2 set_page(WebminUI::Page) Called when this dynamic text box is added to a page =cut sub set_page { my ($self, $page) = @_; $self->{'page'} = $page; } sub set_width { my ($self, $width) = @_; $self->{'width'} = $width; } =head2 needs_unbuffered() Must return 1 if the page needs to be in un-buffered and no-table mode =cut sub needs_unbuffered { return 0; } 1;
Close