Linux jobworks 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:53:05 UTC 2026 x86_64
Apache/2.4.58 (Ubuntu)
Server IP : 10.0.1.5 & Your IP : 216.73.217.52
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 /
DbDriver /
Delete
Unzip
Name
Size
Permission
Date
Action
Backup.pm
1.61
KB
-rw-r--r--
2024-04-12 12:40
Cache.pm
4.72
KB
-rw-r--r--
2024-04-12 12:40
Copy.pm
959
B
-rw-r--r--
2024-04-12 12:40
Debug.pm
961
B
-rw-r--r--
2024-04-12 12:40
DirTree.pm
1.95
KB
-rw-r--r--
2024-04-12 12:40
Directory.pm
3.62
KB
-rw-r--r--
2024-04-12 12:40
File.pm
3.64
KB
-rw-r--r--
2024-04-12 12:40
LDAP.pm
6.07
KB
-rw-r--r--
2024-04-12 12:40
PackageDir.pm
3.59
KB
-rw-r--r--
2024-04-12 12:40
Pipe.pm
1.77
KB
-rw-r--r--
2024-04-12 12:40
Stack.pm
5.14
KB
-rw-r--r--
2024-04-12 12:40
Save
Rename
#!/usr/bin/perl # This file was preprocessed, do not edit! package Debconf::DbDriver::Debug; use warnings; use strict; use Debconf::Log qw{:all}; use base 'Debconf::DbDriver'; use fields qw(db); sub init { my $this=shift; if (! ref $this->{db}) { $this->{db}=$this->driver($this->{db}); unless (defined $this->{db}) { $this->error("could not find db"); } } } sub DESTROY {} sub AUTOLOAD { my $this=shift; (my $command = our $AUTOLOAD) =~ s/.*://; debug "db $this->{name}" => "running $command(".join(",", map { "'$_'" } @_).") .."; if (wantarray) { my @ret=$this->{db}->$command(@_); debug "db $this->{name}" => "$command returned (".join(", ", @ret).")"; return @ret if @ret; } else { my $ret=$this->{db}->$command(@_); if (defined $ret) { debug "db $this->{name}" => "$command returned \'$ret\'"; return $ret; } else { debug "db $this->{name}" => "$command returned undef"; } } return; # failure } 1