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 /
dpkg /
Delete
Unzip
Name
Size
Permission
Date
Action
sh
[ DIR ]
drwxr-xr-x
2023-07-12 09:37
abitable
362
B
-rw-r--r--
2023-05-11 02:04
architecture.mk
644
B
-rw-r--r--
2023-05-11 02:04
buildflags.mk
1.77
KB
-rw-r--r--
2023-05-11 02:04
buildopts.mk
392
B
-rw-r--r--
2023-05-11 02:04
buildtools.mk
2.71
KB
-rw-r--r--
2023-05-11 02:04
cputable
2.1
KB
-rw-r--r--
2023-05-11 02:04
default.mk
362
B
-rw-r--r--
2023-05-11 02:04
no-pie-compile.specs
77
B
-rw-r--r--
2023-05-11 02:04
no-pie-link.specs
65
B
-rw-r--r--
2023-05-11 02:04
ostable
2.06
KB
-rw-r--r--
2023-05-11 02:04
pie-compile.specs
97
B
-rw-r--r--
2023-05-11 02:04
pie-link.specs
76
B
-rw-r--r--
2023-05-11 02:04
pkg-info.mk
1.53
KB
-rw-r--r--
2023-05-11 02:04
tupletable
2.2
KB
-rw-r--r--
2023-05-11 02:04
vendor.mk
1.61
KB
-rw-r--r--
2023-05-11 02:04
Save
Rename
# This Makefile fragment (since dpkg 1.16.1) defines the following # vendor-related variables: # # DEB_VENDOR: output of «dpkg-vendor --query Vendor». # DEB_PARENT_VENDOR: output of «dpkg-vendor --query Parent» (can be empty). # # This Makefile fragment also defines a set of "dpkg_vendor_derives_from" # macros that can be used to verify if the current vendor derives from # another vendor. The unversioned variant defaults to the v0 version if # undefined, which can be defined explicitly to one of the versions or the # versioned macros can be used directly. The following are example usages: # # - dpkg_vendor_derives_from (since dpkg 1.16.1) # # ifeq ($(shell $(call dpkg_vendor_derives_from,ubuntu)),yes) # ... # endif # # - dpkg_vendor_derives_from_v0 (since dpkg 1.19.3) # # ifeq ($(shell $(call dpkg_vendor_derives_from_v0,ubuntu)),yes) # ... # endif # # - dpkg_vendor_derives_from_v1 (since dpkg 1.19.3) # # dpkg_vendor_derives_from = $(dpkg_vendor_derives_from_v1) # ifeq ($(call dpkg_vendor_derives_from,ubuntu),yes) # ... # endif # ifeq ($(call dpkg_vendor_derives_from_v1,ubuntu),yes) # ... # endif dpkg_late_eval ?= $(or $(value DPKG_CACHE_$(1)),$(eval DPKG_CACHE_$(1) := $(shell $(2)))$(value DPKG_CACHE_$(1))) DEB_VENDOR = $(call dpkg_late_eval,DEB_VENDOR,dpkg-vendor --query Vendor) DEB_PARENT_VENDOR = $(call dpkg_late_eval,DEB_PARENT_VENDOR,dpkg-vendor --query Parent) dpkg_vendor_derives_from_v0 = dpkg-vendor --derives-from $(1) && echo yes || echo no dpkg_vendor_derives_from_v1 = $(shell $(dpkg_vendor_derives_from_v0)) dpkg_vendor_derives_from ?= $(dpkg_vendor_derives_from_v0)