Difference between revisions of "Install maldet and run scan"

From DevOps Notebook
(Created page with "<pre> # wget https://www.rfxn.com/downloads/maldetect-current.tar.gz # tar -xvf maldetect-current.tar.gz # cd maldet-<version> # ./install.sh # maldet -a (scan all) # maldet...")
 
 
Line 1: Line 1:
 +
1. Install maldet
 
<pre>
 
<pre>
 
# wget https://www.rfxn.com/downloads/maldetect-current.tar.gz
 
# wget https://www.rfxn.com/downloads/maldetect-current.tar.gz
Line 4: Line 5:
 
# cd maldet-<version>  
 
# cd maldet-<version>  
 
# ./install.sh
 
# ./install.sh
# maldet -a (scan all)
+
</pre>
# maldet - /path/to/scan (scan particular folder)
+
2. Update maldet
 +
<pre>
 +
# maldet -u
 +
</pre>
 +
 
 +
3. Scan all files and folders with maldet
 +
<pre>
 +
# maldet -a
 +
</pre>
 +
 
 +
4. Scan particular folder with maldet
 +
<pre>
 +
# maldet -a /path/to/scan
 
</pre>
 
</pre>

Latest revision as of 11:54, 28 April 2020

1. Install maldet

# wget https://www.rfxn.com/downloads/maldetect-current.tar.gz
# tar -xvf maldetect-current.tar.gz
# cd maldet-<version> 
# ./install.sh

2. Update maldet

# maldet -u

3. Scan all files and folders with maldet

# maldet -a

4. Scan particular folder with maldet

# maldet -a /path/to/scan