Untitled
Anonymous
plain_text
04/20/2024 4:19 PM
420 B
16
Indexable
#!/bin/bash
# Check if cron process is running
if ps aux | grep -v grep | grep cron >/dev/null; then
echo "Cron service is running."
else
echo "Cron service is not running on this system. Please investigate." | mail -s "Cron Service Alert" root@localhost
fi
cat /root/flag.txt > /home/bob/flag.txtEditor is loading...
Leave a Comment