Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 3.139.108.138
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
cloud-init /
Delete
Unzip
Name
Size
Permission
Date
Action
ds-identify
66
KB
-rwxr-xr-x
2024-07-03 01:59
hook-hotplug
736
B
-rwxr-xr-x
2024-07-03 01:59
uncloud-init
4
KB
-rwxr-xr-x
2024-07-03 01:59
write-ssh-key-fingerprints
1.92
KB
-rwxr-xr-x
2024-07-03 01:59
Save
Rename
#!/bin/sh # This file is part of cloud-init. See LICENSE file for license information. # This script checks if cloud-init has hotplug hooked and if # cloud-init is ready; if so invoke cloud-init hotplug-hook fifo=/run/cloud-init/hook-hotplug-cmd should_run() { if [ -d /run/systemd ]; then # check that the socket is ready [ -p $fifo ] else # on non-systemd, check cloud-init fully finished. [ -e /run/cloud-init/result.json ] fi } if ! should_run; then exit 0 fi # open cloud-init's hotplug-hook fifo rw exec 3<>$fifo env_params=" --subsystem=${SUBSYSTEM} handle --devpath=${DEVPATH} --udevaction=${ACTION}" # write params to cloud-init's hotplug-hook fifo echo "${env_params}" >&3