Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 3.144.104.175
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
snap /
core /
17200 /
usr /
share /
perl5 /
Debconf /
FrontEnd /
[ HOME SHELL ]
Name
Size
Permission
Action
Kde
[ DIR ]
drwxr-xr-x
Dialog.pm
7.22
KB
-rw-r--r--
Editor.pm
2.11
KB
-rw-r--r--
Gnome.pm
5.13
KB
-rw-r--r--
Kde.pm
4.31
KB
-rw-r--r--
Noninteractive.pm
734
B
-rw-r--r--
Passthrough.pm
6.29
KB
-rw-r--r--
Readline.pm
3.53
KB
-rw-r--r--
ScreenSize.pm
881
B
-rw-r--r--
Teletype.pm
1.54
KB
-rw-r--r--
Text.pm
155
B
-rw-r--r--
Web.pm
2.6
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ScreenSize.pm
#!/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
Close