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::ScreenSize; use strict; use Debconf::Gettext; use base qw(Debconf::FrontEnd); sub init { my $this=shift; $this->SUPER::init(@_); $this->resize; # Get current screen size. $SIG{WINCH}=sub { if (defined $this) { $this->resize; } }; } sub resize { my $this=shift; if (exists $ENV{LINES}) { $this->screenheight($ENV{'LINES'}); $this->screenheight_guessed(0); } else { my ($rows)=`stty -a 2>/dev/null` =~ m/rows (\d+)/s; if ($rows) { $this->screenheight($rows); $this->screenheight_guessed(0); } else { $this->screenheight(25); $this->screenheight_guessed(1); } } if (exists $ENV{COLUMNS}) { $this->screenwidth($ENV{'COLUMNS'}); } else { my ($cols)=`stty -a 2>/dev/null` =~ m/columns (\d+)/s; $this->screenwidth($cols || 80); } } 1