Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,27 @@ The project currently operates through a command-line interface. Static analysis
* Static analysis TXT report output
* Static analysis JSON report output

### Static Risk Score

Static analysis calculates an overall risk score by combining suspicious API severity levels and section entropy risk levels.

The score is heuristic and does not prove that a file is malicious. It is used to prioritize files that may need deeper manual review.

Risk levels:

| Score Range | Risk Level |
| ----------- | ---------- |
| 0 - 19 | Low |
| 20 - 49 | Medium |
| 50 - 100 | High |

TXT reports include:

```text
Overall Risk
Risk Score: 39
Risk Level: Medium

### Experimental Dynamic Analysis

* Starts the target executable with the Windows Debugging API
Expand Down
Loading