forked from rfxn/linux-malware-detect
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request rfxn#362 from samsalisbury/new-flag-dump-report
[Change] add new flag: -E|--dump-report
- Loading branch information
Showing
4 changed files
with
33 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -276,6 +276,11 @@ option gives a detailed summary of usage options: | |
e.g: maldet --report 050910-1534.21135 | ||
e.g: maldet --report SCANID [email protected] | ||
|
||
-D, --dump-report SCANID | ||
Similar to -e/--report except dumps the report to stdout instead. | ||
e.g: maldet --dump-report | ||
e.g: maldet --dump-report 050910-1534.21135 | ||
|
||
-s, --restore FILE|SCANID | ||
Restore file from quarantine queue to orginal path or restore all items from | ||
a specific SCANID | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ maldet \- Linux Malware Detect | |
.PP | ||
maldet [\-h|\-\-help] [\-a|\-\-scan\-all PATH] [\-r|\-\-scan\-recent PATH DAYS] [\-f|\-\-file\-list PATH] | ||
[\-i|\-\-include\-regex] [\-x|\-\-exclude\-regex] [\-b|\-\-background] [\-m|\-\-monitor] [\-k|\-\-kill\-monitor] | ||
[\-c|\-\-checkout] [\-q|\-\-quarantine] [\-s|\-\-restore] [\-n|\-\-clean] [\-l|\-\-log] [\-e|\-\-report] | ||
[\-c|\-\-checkout] [\-q|\-\-quarantine] [\-s|\-\-restore] [\-n|\-\-clean] [\-l|\-\-log] [\-e|\-\-report] [\-E|\-\-dump\-report] | ||
[\-u|\-\-update\-sigs] | ||
.SH DESCRIPTION | ||
Linux Malware Detect is a malware scanner for Linux released under the GNU GPLv2 license, that is designed around the threats faced in shared hosted environments. It uses threat data from network edge intrusion detection systems to extract malware that is actively being used in attacks and generates signatures for detection. In addition, threat data is also derived from user submissions with the LMD checkout feature and from malware community resources. The signatures that LMD uses are MD5 file hashes and HEX pattern matches, they are also easily exported to any number of detection tools such as ClamAV. | ||
|
@@ -187,6 +187,12 @@ e.g: maldet \fB\-\-report\fR list | |
e.g: maldet \fB\-\-report\fR 050910\-1534.21135 | ||
e.g: maldet \fB\-\-report\fR SCANID [email protected] | ||
.HP | ||
\fB\-e\fR, \fB\-\-dump-report\fR SCANID | ||
.IP | ||
Similar to \-\-report but dumps the report to stdout instead. | ||
e.g: maldet \fB\-\-dump\-report\fR | ||
e.g: maldet \fB\-\-dump\-report\fR 050910\-1534.21135 | ||
.HP | ||
\fB\-s\fR, \fB\-\-restore\fR FILE|SCANID | ||
.IP | ||
Restore file from quarantine queue to orginal path or restore all items from | ||
|