Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 3.134.94.230
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
perl5 /
Debconf /
Element /
Web /
Delete
Unzip
Name
Size
Permission
Date
Action
Boolean.pm
660
B
-rw-r--r--
2022-02-20 14:42
Error.pm
160
B
-rw-r--r--
2022-02-20 14:42
Multiselect.pm
958
B
-rw-r--r--
2022-02-20 14:42
Note.pm
159
B
-rw-r--r--
2022-02-20 14:42
Password.pm
483
B
-rw-r--r--
2022-02-20 14:42
Progress.pm
231
B
-rw-r--r--
2022-02-20 14:42
Select.pm
877
B
-rw-r--r--
2022-02-20 14:42
String.pm
467
B
-rw-r--r--
2022-02-20 14:42
Text.pm
315
B
-rw-r--r--
2022-02-20 14:42
Save
Rename
#!/usr/bin/perl -w # This file was preprocessed, do not edit! package Debconf::Element::Web::Multiselect; 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