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 /
FrontEnd /
Delete
Unzip
Name
Size
Permission
Date
Action
Dialog.pm
7.65
KB
-rw-r--r--
2023-01-08 21:50
Editor.pm
2.11
KB
-rw-r--r--
2023-01-08 21:50
Gnome.pm
7.34
KB
-rw-r--r--
2023-01-08 21:50
Kde.pm
2.04
KB
-rw-r--r--
2023-01-08 21:50
Noninteractive.pm
734
B
-rw-r--r--
2023-01-08 21:50
Passthrough.pm
6.99
KB
-rw-r--r--
2023-01-08 21:50
Readline.pm
3.5
KB
-rw-r--r--
2023-01-08 21:50
ScreenSize.pm
881
B
-rw-r--r--
2023-01-08 21:50
Teletype.pm
1.54
KB
-rw-r--r--
2023-01-08 21:50
Text.pm
155
B
-rw-r--r--
2023-01-08 21:50
Web.pm
2.6
KB
-rw-r--r--
2023-01-08 21:50
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