⚝
One Hat Cyber Team
⚝
Your IP:
216.73.217.4
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
proc
/
self
/
root
/
proc
/
self
/
root
/
etc
/
cron.weekly
/
View File Name :
fail2ban-vacuum
#!/bin/sh ### Copyright 1999-2025. WebPros International GmbH. All rights reserved. [ -f "/var/lib/fail2ban/fail2ban.sqlite3" ] || exit 0 outfile=`mktemp /tmp/fail2ban-vacuum.XXXXXX` trap 'rm -f $outfile;' TERM INT EXIT sqlite3 /var/lib/fail2ban/fail2ban.sqlite3 "VACUUM;" >$outfile 2>&1 rc=$? if [ $rc -eq 0 ]; then logger -t fail2ban-vacuum "Vacuum of fail2ban database successfully completed" else logger -t fail2ban-vacuum -f "$outfile" fi exit $rc