Linux azu-front-29122023-s-1vcpu-2gb-sgp1-01 5.19.0-46-generic #47-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 16 13:30:11 UTC 2023 x86_64
nginx/1.22.0
Server IP : 188.166.228.183 & Your IP : 216.73.216.202
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
etc /
init.d /
Delete
Unzip
Name
Size
Permission
Date
Action
apparmor
3.65
KB
-rwxr-xr-x
2022-09-24 05:21
apport
2.85
KB
-rwxr-xr-x
2022-10-05 16:52
console-setup.sh
1.21
KB
-rwxr-xr-x
2022-08-25 16:25
cron
2.99
KB
-rwxr-xr-x
2021-03-18 07:14
cryptdisks
937
B
-rwxr-xr-x
2022-08-24 06:56
cryptdisks-early
896
B
-rwxr-xr-x
2022-08-24 06:56
dbus
3.08
KB
-rwxr-xr-x
2021-06-28 20:15
grub-common
985
B
-rwxr-xr-x
2022-09-19 22:00
hwclock.sh
1.71
KB
-rwxr-xr-x
2022-05-04 05:38
irqbalance
2.58
KB
-rwxr-xr-x
2021-10-30 18:55
iscsid
1.47
KB
-rwxr-xr-x
2022-07-31 05:16
keyboard-setup.sh
1.45
KB
-rwxr-xr-x
2022-07-18 20:25
kmod
2.01
KB
-rwxr-xr-x
2022-08-22 17:03
lvm2
695
B
-rwxr-xr-x
2022-08-23 04:35
lvm2-lvmpolld
586
B
-rwxr-xr-x
2022-08-23 04:35
multipath-tools
2.76
KB
-rwxr-xr-x
2022-02-19 00:16
mysql
5.48
KB
-rwxr-xr-x
2022-05-18 17:26
nginx
4.47
KB
-rwxr-xr-x
2022-07-23 08:47
open-iscsi
2.38
KB
-rwxr-xr-x
2022-07-31 05:16
open-vm-tools
1.8
KB
-rwxr-xr-x
2022-08-24 15:49
php8.1-fpm
4.19
KB
-rwxr-xr-x
2023-01-16 23:18
plymouth
1.35
KB
-rwxr-xr-x
2022-08-19 14:46
plymouth-log
760
B
-rwxr-xr-x
2022-08-19 14:46
procps
959
B
-rwxr-xr-x
2022-02-25 19:32
rsync
4.31
KB
-rwxr-xr-x
2022-08-16 18:03
screen-cleanup
1.19
KB
-rwxr-xr-x
2021-02-18 16:51
ssh
3.96
KB
-rwxr-xr-x
2022-04-09 21:14
udev
6.71
KB
-rwxr-xr-x
2022-10-11 23:51
ufw
2.03
KB
-rwxr-xr-x
2021-09-19 13:07
unattended-upgrades
1.36
KB
-rwxr-xr-x
2021-02-19 20:11
uuidd
1.28
KB
-rwxr-xr-x
2022-05-04 06:30
Save
Rename
#!/bin/sh ### BEGIN INIT INFO # Provides: plymouth # Required-Start: udev $remote_fs $all # Required-Stop: $remote_fs # Should-Start: $x-display-manager # Should-Stop: $x-display-manager # Default-Start: 2 3 4 5 # Default-Stop: 0 6 # Short-Description: Stop plymouth during boot and start it on shutdown ### END INIT INFO PATH="/sbin:/bin:/usr/sbin:/usr/bin" NAME="plymouth" DESC="Boot splash manager" test -x /usr/sbin/plymouthd || exit 0 if [ -r "/etc/default/${NAME}" ] then . "/etc/default/${NAME}" fi . /lib/lsb/init-functions set -e SPLASH="true" for ARGUMENT in $(cat /proc/cmdline) do case "${ARGUMENT}" in splash*) SPLASH="true" ;; nosplash*|plymouth.enable=0) SPLASH="false" ;; esac done case "${1}" in start) case "${SPLASH}" in true) /usr/bin/plymouth quit --retain-splash ;; esac ;; stop) case "${SPLASH}" in true) if ! plymouth --ping then /usr/sbin/plymouthd --mode=shutdown fi RUNLEVEL="$(/sbin/runlevel | cut -d " " -f 2)" case "${RUNLEVEL}" in 0) TEXT="Shutting down system..." ;; 6) TEXT="Restarting system..." ;; esac /usr/bin/plymouth message --text="${TEXT}" /usr/bin/plymouth --show-splash ;; esac ;; restart|force-reload) ;; *) echo "Usage: ${0} {start|stop|restart|force-reload}" >&2 exit 1 ;; esac exit 0