Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.35
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
perl5 /
Delete
Unzip
Name
Size
Permission
Date
Action
Algorithm
[ DIR ]
drwxr-xr-x
2020-08-24 23:49
Archive
[ DIR ]
drwxr-xr-x
2020-08-24 23:49
BackupManager
[ DIR ]
drwxr-xr-x
2020-11-17 09:17
CGI
[ DIR ]
drwxr-xr-x
2024-10-04 13:32
Config
[ DIR ]
drwxr-xr-x
2024-10-04 13:32
Date
[ DIR ]
drwxr-xr-x
2023-03-10 11:53
Debconf
[ DIR ]
drwxr-xr-x
2017-06-20 11:40
Debian
[ DIR ]
drwxr-xr-x
2020-08-24 23:49
Dpkg
[ DIR ]
drwxr-xr-x
2024-03-12 22:00
Encode
[ DIR ]
drwxr-xr-x
2024-10-04 13:32
Error
[ DIR ]
drwxr-xr-x
2018-02-14 11:37
Exporter
[ DIR ]
drwxr-xr-x
2020-08-24 23:49
File
[ DIR ]
drwxr-xr-x
2020-08-24 23:55
Git
[ DIR ]
drwxr-xr-x
2020-08-24 23:42
HTML
[ DIR ]
drwxr-xr-x
2024-10-04 13:32
HTTP
[ DIR ]
drwxr-xr-x
2024-10-04 13:32
IO
[ DIR ]
drwxr-xr-x
2024-10-04 13:32
LWP
[ DIR ]
drwxr-xr-x
2024-10-04 13:32
Mail
[ DIR ]
drwxr-xr-x
2020-08-24 23:49
Sys
[ DIR ]
drwxr-xr-x
2020-08-24 23:49
Text
[ DIR ]
drwxr-xr-x
2017-06-20 11:41
Time
[ DIR ]
drwxr-xr-x
2020-08-24 23:47
URI
[ DIR ]
drwxr-xr-x
2020-08-24 23:47
CGI.pm
121.33
KB
-rw-r--r--
2016-10-13 15:51
CGI.pod
65.35
KB
-rw-r--r--
2016-10-13 15:50
DebianLinux.pm
5.28
KB
-rw-r--r--
2016-06-06 00:03
DebianNet.pm
14.09
KB
-rw-r--r--
2017-01-15 12:37
Dpkg.pm
2.93
KB
-rw-r--r--
2022-05-24 15:28
Error.pm
24.29
KB
-rw-r--r--
2016-07-17 17:03
Fh.pm
166
B
-rw-r--r--
2016-10-13 15:51
Git.pm
46.05
KB
-rw-r--r--
2016-11-29 22:06
URI.pm
33.96
KB
-rw-r--r--
2016-01-08 04:15
Save
Rename
# This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. package Dpkg; =encoding utf8 =head1 NAME Dpkg - module with core variables =head1 DESCRIPTION The Dpkg module provides a set of variables with information concerning this system installation. =cut use strict; use warnings; our $VERSION = '1.03'; our @EXPORT_OK = qw( $PROGNAME $PROGVERSION $PROGMAKE $PROGTAR $PROGPATCH $CONFDIR $ADMINDIR $LIBDIR $DATADIR ); our @EXPORT = qw( $version $progname $admindir $dpkglibdir $pkgdatadir ); use Exporter qw(import); =head1 VARIABLES =over 4 =item $Dpkg::PROGNAME Contains the name of the current program. =item $Dpkg::PROGVERSION Contains the version of the dpkg suite. =item $Dpkg::PROGMAKE Contains the name of the system GNU make program. =item $Dpkg::PROGTAR Contains the name of the system GNU tar program. =item $Dpkg::PROGPATCH Contains the name of the system GNU patch program (or another implementation that is directory traversal resistant). =item $Dpkg::CONFDIR Contains the path to the dpkg system configuration directory. =item $Dpkg::ADMINDIR Contains the path to the dpkg database directory. =item $Dpkg::LIBDIR Contains the path to the dpkg methods and plugins directory. =item $Dpkg::DATADIR Contains the path to the dpkg architecture tables directory. =back =cut our ($PROGNAME) = $0 =~ m{(?:.*/)?([^/]*)}; # The following lines are automatically fixed at install time our $PROGVERSION = '1.18.26'; our $PROGMAKE = '/usr/bin/make'; our $PROGTAR = 'tar'; our $PROGPATCH = 'patch'; our $CONFDIR = '/etc/dpkg'; our $ADMINDIR = '/var/lib/dpkg'; our $LIBDIR = '/usr/lib/dpkg'; our $DATADIR = '/usr/share/dpkg'; $DATADIR = $ENV{DPKG_DATADIR} if defined $ENV{DPKG_DATADIR}; # XXX: Backwards compatibility, to be removed on VERSION 2.00. ## no critic (Variables::ProhibitPackageVars) our $version = $PROGVERSION; our $admindir = $ADMINDIR; our $dpkglibdir = $LIBDIR; our $pkgdatadir = $DATADIR; ## use critic =head1 CHANGES =head2 Version 1.03 (dpkg 1.18.24) New variable: $PROGPATCH. =head2 Version 1.02 (dpkg 1.18.11) New variable: $PROGTAR, $PROGMAKE. =head2 Version 1.01 (dpkg 1.17.0) New variables: $PROGNAME, $PROGVERSION, $CONFDIR, $ADMINDIR, $LIBDIR and $DATADIR. Deprecated variables: $version, $admindir, $dpkglibdir and $pkgdatadir. =head2 Version 1.00 (dpkg 1.15.6) Mark the module as public. =cut 1;