malware scan
- myVesta
- Site Admin
- Posts: 946
- Joined: Fri Jun 19, 2020 9:59 am
- Has thanked: 9 times
- Been thanked: 6 times
with clamav:
with maldet + clamav:
Code: Select all
apt update
apt install clamdscan clamav
freshclam
# scan whole server
nice -n 19 ionice -c 3 clamscan -r -i /home/
# scan specific domain
nice -n 19 ionice -c 3 clamscan -r -i /home/user/web/domain.com/public_html/
Code: Select all
apt update
apt install clamdscan
wget https://www.rfxn.com/downloads/maldetect-current.tar.gz
tar -xvf maldetect-current.tar.gz
cd maldetect-1.6.4/
./install.sh
systemctl stop maldet
systemctl disable maldet
# scan whole server
cd ~
maldet -a
maldet --report 200113-1058.3612
# scan specific domain
nice -n 19 ionice -c 3 maldet -a /home/user/web/domain.com/public_html/
maldet --report 200113-1058.3612
- myVesta
- Site Admin
- Posts: 946
- Joined: Fri Jun 19, 2020 9:59 am
- Has thanked: 9 times
- Been thanked: 6 times
https://globedrill.com/how-to-remove-un ... ux-server/
also:
also:
Code: Select all
apt remove clamdscan clamav