Linux ip-172-31-23-187 5.15.0-1084-aws #91~20.04.1-Ubuntu SMP Fri May 2 07:00:04 UTC 2025 aarch64
Apache/2.4.41 (Ubuntu)
: 172.31.23.187 | : 172.31.83.251
Cant Read [ /etc/named.conf ]
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
etc /
init.d /
[ HOME SHELL ]
Name
Size
Permission
Action
apache-htcacheclean
2.43
KB
-rwxr-xr-x
apache2
7.99
KB
-rwxr-xr-x
apparmor
3.65
KB
-rwxr-xr-x
apport
2.85
KB
-rwxr-xr-x
atd
1.05
KB
-rwxr-xr-x
console-setup.sh
1.2
KB
-rwxr-xr-x
cron
2.99
KB
-rwxr-xr-x
cryptdisks
937
B
-rwxr-xr-x
cryptdisks-early
896
B
-rwxr-xr-x
dbus
3.08
KB
-rwxr-xr-x
grub-common
985
B
-rwxr-xr-x
hibagent
1.64
KB
-rwxr-xr-x
hwclock.sh
3.72
KB
-rwxr-xr-x
irqbalance
2.58
KB
-rwxr-xr-x
iscsid
1.47
KB
-rwxr-xr-x
keyboard-setup.sh
1.44
KB
-rwxr-xr-x
kmod
2
KB
-rwxr-xr-x
lvm2
695
B
-rwxr-xr-x
lvm2-lvmpolld
586
B
-rwxr-xr-x
mysql
5.79
KB
-rwxr-xr-x
open-iscsi
2.44
KB
-rwxr-xr-x
php7.4-fpm
4.19
KB
-rwxr-xr-x
php8.0-fpm
4.19
KB
-rwxr-xr-x
plymouth
1.33
KB
-rwxr-xr-x
plymouth-log
752
B
-rwxr-xr-x
procps
924
B
-rwxr-xr-x
rsync
4.31
KB
-rwxr-xr-x
rsyslog
2.8
KB
-rwxr-xr-x
screen-cleanup
1.19
KB
-rwxr-xr-x
ssh
3.85
KB
-rwxr-xr-x
udev
6.71
KB
-rwxr-xr-x
ufw
2.03
KB
-rwxr-xr-x
unattended-upgrades
1.36
KB
-rwxr-xr-x
uuidd
1.28
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : hibagent
#!/bin/sh # hibagent daemon # chkconfig: - 20 80 # description: EC2 instance hibernation agent # processname: hibagent ### BEGIN INIT INFO # Provides: hibagent # Required-Start: $network $remote_fs $syslog # Required-Stop: $network $remote_fs $syslog # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Start EC2 Spot hibernation agent ### END INIT INFO . /lib/lsb/init-functions DAEMON_PATH="/usr/bin" NAME=hibagent DESC="My daemon description" PIDFILE=/var/run/$NAME.pid SCRIPTNAME=/etc/init.d/hibagent DAEMON=hibagent DAEMONOPTS="--config /etc/hibagent-config.cfg --pidfile $PIDFILE" if [ $# -eq 0 ]; then echo "Usage: $0 {start|stop|restart}" exit 1 else COMMAND="$1" fi case $COMMAND in start) printf "%-50s" "Starting $NAME..." if [ -f $PIDFILE ]; then PID=`cat $PIDFILE` if [[ "`ps axf | grep ${PID} | grep -v grep`" ]]; then echo "hibagent is already running" exit 0 fi fi cd $DAEMON_PATH $DAEMON $DAEMONOPTS > /dev/null 2>&1 if [ $? -eq 0 ]; then printf "%s\n" "Ok" else printf "%s\n" "Fail" exit 1 fi ;; status) printf "%-50s" "Checking $NAME..." if [ -f $PIDFILE ]; then PID=`cat $PIDFILE` if [ -z "`ps axf | grep ${PID} | grep -v grep`" ]; then printf "%s\n" "Process dead but pidfile exists" else echo "Running" fi else printf "%s\n" "Service not running" fi ;; stop) printf "%-50s" "Stopping $NAME" if [ -f $PIDFILE ]; then PID=`cat $PIDFILE` kill -HUP $PID printf "%s\n" "Ok" rm -f $PIDFILE exit 0 else printf "%s\n" "already stopped" exit 0 fi ;; restart) $0 stop $0 start ;; *) echo "Usage: $0 {status|start|stop|restart}" exit 1 esac
Close