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 : Textarea.pm
package WebminUI::Textarea; use WebminUI::Input; use WebminCore; @ISA = ( "WebminUI::Input" ); =head2 new WebminUI::Textarea(name, value, rows, cols, [wrap], [disabled]) Create a new text box, with the given size =cut sub new { if (defined(&WebminUI::Theme::Textarea::new)) { return new WebminUI::Theme::Textarea(@_[1..$#_]); } my ($self, $name, $value, $rows, $cols, $wrap, $disabled) = @_; $self = { }; bless($self); $self->set_name($name); $self->set_value($value); $self->set_rows($rows); $self->set_cols($cols); $self->set_disabled($disabled); return $self; } =head2 html() Returns the HTML for this text area =cut sub html { my ($self) = @_; return &ui_textarea($self->get_name(), $self->get_value(), $self->get_rows(), $self->get_cols(), $self->get_wrap(), $self->get_disabled()); } sub set_rows { my ($self, $rows) = @_; $self->{'rows'} = $rows; } sub get_rows { my ($self) = @_; return $self->{'rows'}; } sub set_cols { my ($self, $cols) = @_; $self->{'cols'} = $cols; } sub get_cols { my ($self) = @_; return $self->{'cols'}; } sub set_wrap { my ($self, $wrap) = @_; $self->{'wrap'} = $wrap; } sub get_wrap { my ($self) = @_; return $self->{'wrap'}; } sub set_validation_func { my ($self, $func) = @_; $self->{'validation_func'} = $func; } =head2 set_validation_regexp(regexp, message) =cut sub set_validation_regexp { my ($self, $regexp, $message) = @_; $self->{'validation_regexp'} = $regexp; $self->{'validation_message'} = $message; } =head2 validate() Returns a list of error messages for this field =cut sub validate { my ($self) = @_; my $value = $self->get_value(); if ($self->{'mandatory'} && $value eq '') { return ( $self->{'mandmesg'} || $text{'ui_mandatory'} ); } if ($self->{'validation_func'}) { my $err = &{$self->{'validation_func'}}($value, $self->{'name'}, $self->{'form'}); return ( $err ) if ($err); } if ($self->{'validation_regexp'}) { if ($value !~ /$self->{'validation_regexp'}/) { return ( $self->{'validation_message'} ); } } return ( ); } =head2 get_value() Returns the value, without any \r characters =cut sub get_value { my ($self) = @_; my $rv = WebminUI::Input::get_value($self); $rv =~ s/\r//g; return $rv; } 1;
Close