Linux r-1tbfree-gecko-e8ip2zsa-2f967-wvg4t 6.12.63-84.121.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Dec 31 02:07:30 UTC 2025 x86_64
PHP/8.5.2 (Development Server)
: | : 10.16.14.243
Cant Read [ /etc/named.conf ]
8.5.2
root
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 /
share /
perl5 /
Debconf /
Element /
Web /
[ HOME SHELL ]
Name
Size
Permission
Action
Boolean.pm
671
B
-rw-r--r--
Error.pm
171
B
-rw-r--r--
Multiselect.pm
967
B
-rw-r--r--
Note.pm
170
B
-rw-r--r--
Password.pm
494
B
-rw-r--r--
Progress.pm
242
B
-rw-r--r--
Select.pm
887
B
-rw-r--r--
String.pm
478
B
-rw-r--r--
Text.pm
326
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Multiselect.pm
#!/usr/bin/perl # This file was preprocessed, do not edit! package Debconf::Element::Web::Multiselect; use warnings; use strict; use base qw(Debconf::Element::Multiselect); sub show { my $this=shift; $_=$this->question->extended_description; s/\n/\n<br>\n/g; $_.="\n<p>\n"; my %value = map { $_ => 1 } $this->translate_default; my $id=$this->id; $_.="<b>".$this->question->description."</b>\n<select multiple name=\"$id\">\n"; my $c=0; foreach my $x ($this->question->choices_split) { if (! $value{$x}) { $_.="<option value=".$c++.">$x\n"; } else { $_.="<option value=".$c++." selected>$x\n"; } } $_.="</select>\n"; return $_; } sub value { my $this=shift; return $this->SUPER::value() unless @_; my @values=@_; $this->question->template->i18n(''); my @choices=$this->question->choices_split; $this->question->template->i18n(1); $this->SUPER::value(join(', ', $this->order_values(map { $choices[$_] } @values))); } 1
Close