Upload files to "/"

This commit is contained in:
2026-04-27 21:48:14 +00:00
parent da158a40a3
commit 92c17a6090
2 changed files with 16 additions and 2 deletions
+2 -2
View File
@@ -3,7 +3,7 @@
sudo clear sudo clear
sudo rm -rf cav.log sudo rm -rf cav.log
echo 'Updating...' echo 'Updating...'
sudo apt install ufw gufw clamav clamtk bleachbit fail2ban sudo apt install ufw gufw clamav clamtk bleachbit
echo 'Checking Firewall...' echo 'Checking Firewall...'
sudo ufw status sudo ufw status
sudo ufw allow ssh sudo ufw allow ssh
@@ -16,6 +16,6 @@ sudo systemctl start clamav-freshclam.service
echo 'Cleaning...' echo 'Cleaning...'
bleachbit --clean system.tmp system.cache system.trash deepscan.tmp deepscan.thumbs_db deepscan.ds_store bleachbit --clean system.tmp system.cache system.trash deepscan.tmp deepscan.thumbs_db deepscan.ds_store
echo 'Scanning...' echo 'Scanning...'
clamscan --bell -raoiz --bytecode --scan-mail --phishing-sigs --cross-fs --log=cav.log --heuristic-alerts --phishing-scan-urls #--detect-pua #--detect-structured #-v clamscan -razio --log=cav.log --bell --cross-fs --bytecode --scan-mail --phishing-sigs --heuristic-alerts --phishing-scan-urls #--detect-pua #--detect-structured #-v
echo 'Done.' echo 'Done.'
read -n1 read -n1
+14
View File
@@ -0,0 +1,14 @@
#!/bin/bash
sudo clear
echo 'ClamAV'
echo 'Updating...'
sudo apt install clamav
sudo systemctl stop clamav-freshclam.service
sudo freshclam
sudo systemctl start clamav-freshclam.service
echo 'Scanning...'
clamscan -raz --log=cav.log --bell --cross-fs --bytecode --scan-mail --phishing-sigs --heuristic-alerts --phishing-scan-urls #--detect-pua #--detect-structured #-v
echo 'Done.'
read -n1
clear