Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.217.105
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 /
FrontEnd /
Delete
Unzip
Name
Size
Permission
Date
Action
Dialog.pm
7.65
KB
-rw-r--r--
2022-02-20 23:42
Editor.pm
2.11
KB
-rw-r--r--
2022-02-20 23:42
Gnome.pm
7.34
KB
-rw-r--r--
2022-02-20 23:42
Kde.pm
2.04
KB
-rw-r--r--
2022-02-20 23:42
Noninteractive.pm
734
B
-rw-r--r--
2022-02-20 23:42
Passthrough.pm
6.99
KB
-rw-r--r--
2022-02-20 23:42
Readline.pm
3.53
KB
-rw-r--r--
2022-02-20 23:42
ScreenSize.pm
881
B
-rw-r--r--
2022-02-20 23:42
Teletype.pm
1.54
KB
-rw-r--r--
2022-02-20 23:42
Text.pm
155
B
-rw-r--r--
2022-02-20 23:42
Web.pm
2.6
KB
-rw-r--r--
2022-02-20 23:42
Save
Rename
#!/usr/bin/perl -w # This file was preprocessed, do not edit! package Debconf::FrontEnd::Noninteractive; use strict; use Debconf::Encoding qw(width wrap); use Debconf::Gettext; use base qw(Debconf::FrontEnd); sub init { my $this=shift; $this->SUPER::init(@_); $this->need_tty(0); } sub display { my $this=shift; my $text=shift; $Debconf::Encoding::columns=76; $this->display_nowrap(wrap('','',$text)); } sub display_nowrap { my $this=shift; my $text=shift; my @lines=split(/\n/, $text); push @lines, "" if $text=~/\n$/; my $title=$this->title; if (length $title) { unshift @lines, $title, ('-' x width $title), ''; $this->title(''); } foreach (@lines) { print "$_\n"; } } 1