Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
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 /
Delete
Unzip
Name
Size
Permission
Date
Action
Client
[ DIR ]
drwxr-xr-x
2023-07-12 09:37
DbDriver
[ DIR ]
drwxr-xr-x
2023-07-12 09:37
Element
[ DIR ]
drwxr-xr-x
2023-07-12 09:37
Format
[ DIR ]
drwxr-xr-x
2023-07-12 09:37
FrontEnd
[ DIR ]
drwxr-xr-x
2023-07-12 09:37
Template
[ DIR ]
drwxr-xr-x
2023-07-12 09:37
AutoSelect.pm
1.9
KB
-rw-r--r--
2023-01-08 21:50
Base.pm
499
B
-rw-r--r--
2023-01-08 21:50
ConfModule.pm
15.37
KB
-rw-r--r--
2023-01-08 21:50
Config.pm
6.99
KB
-rw-r--r--
2023-01-08 21:50
Db.pm
1.17
KB
-rw-r--r--
2023-01-08 21:50
DbDriver.pm
2.31
KB
-rw-r--r--
2023-01-08 21:50
Element.pm
196
B
-rw-r--r--
2023-01-08 21:50
Encoding.pm
1.45
KB
-rw-r--r--
2023-01-08 21:50
Format.pm
133
B
-rw-r--r--
2023-01-08 21:50
FrontEnd.pm
2.8
KB
-rw-r--r--
2023-01-08 21:50
Gettext.pm
301
B
-rw-r--r--
2023-01-08 21:50
Iterator.pm
198
B
-rw-r--r--
2023-01-08 21:50
Log.pm
914
B
-rw-r--r--
2023-01-08 21:50
Path.pm
291
B
-rw-r--r--
2023-01-08 21:50
Priority.pm
642
B
-rw-r--r--
2023-01-08 21:50
Question.pm
5.73
KB
-rw-r--r--
2023-01-08 21:50
Template.pm
8.01
KB
-rw-r--r--
2023-01-08 21:50
TmpFile.pm
374
B
-rw-r--r--
2023-01-08 21:50
Save
Rename
#!/usr/bin/perl -w # This file was preprocessed, do not edit! package Debconf::FrontEnd; use strict; use Debconf::Gettext; use Debconf::Priority; use Debconf::Log ':all'; use base qw(Debconf::Base); sub init { my $this=shift; $this->elements([]); $this->interactive(''); $this->capb(''); $this->title(''); $this->requested_title(''); $this->info(undef); $this->need_tty(1); } sub elementtype { my $this=shift; my $ret; if (ref $this) { ($ret) = ref($this) =~ m/Debconf::FrontEnd::(.*)/; } else { ($ret) = $this =~ m/Debconf::FrontEnd::(.*)/; } return $ret; } my %nouse; sub _loadelementclass { my $this=shift; my $type=shift; my $nodebug=shift; if (! UNIVERSAL::can("Debconf::Element::$type", 'new')) { return if $nouse{$type}; eval qq{use Debconf::Element::$type}; if ($@ || ! UNIVERSAL::can("Debconf::Element::$type", 'new')) { warn sprintf(gettext("Unable to load Debconf::Element::%s. Failed because: %s"), $type, $@) if ! $nodebug; $nouse{$type}=1; return; } } } sub makeelement { my $this=shift; my $question=shift; my $nodebug=shift; my $type=$this->elementtype.'::'.ucfirst($question->type); $type=~s/::$//; # in case the question has no type.. $this->_loadelementclass($type, $nodebug); my $element="Debconf::Element::$type"->new(question => $question); return if ! ref $element; return $element; } sub add { my $this=shift; my $element=shift; foreach (@{$this->elements}) { return if $element->question == $_->question; } $element->frontend($this); push @{$this->elements}, $element; } sub go { my $this=shift; $this->backup(''); foreach my $element (@{$this->elements}) { $element->show; return if $this->backup && $this->capb_backup; } return 1; } sub progress_start { my $this=shift; my $min=shift; my $max=shift; my $question=shift; my $type = $this->elementtype.'::Progress'; $this->_loadelementclass($type); my $element="Debconf::Element::$type"->new(question => $question); unless (ref $element) { return; } $element->frontend($this); $element->progress_min($min); $element->progress_max($max); $element->progress_cur($min); $element->start; $this->progress_bar($element); } sub progress_set { my $this=shift; my $value=shift; return $this->progress_bar->set($value); } sub progress_step { my $this=shift; my $inc=shift; return $this->progress_set($this->progress_bar->progress_cur + $inc); } sub progress_info { my $this=shift; my $question=shift; return $this->progress_bar->info($question); } sub progress_stop { my $this=shift; $this->progress_bar->stop; $this->progress_bar(undef); } sub clear { my $this=shift; $this->elements([]); } sub default_title { my $this=shift; $this->title(sprintf(gettext("Configuring %s"), shift)); $this->requested_title($this->title); } sub shutdown {} 1