File size: 1,077 Bytes
90a6e1c
 
9725700
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90a6e1c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!doctype html>
<html>
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width" />
    <title>Malware Detector Demo</title>
    <link rel="stylesheet" href="style.css" />
  </head>
  <body>
    <div class="card">
      <h1>🛡️ Malware Detector</h1>
      <p class="subtitle">Random Forest PE Malware Classifier</p>
      <hr>
      <p>Upload a PE file (EXE, DLL) or paste feature vector data to get a malicious/benign prediction with confidence score.</p>
      <p class="info">⬇️ <strong>Model:</strong> Random Forest (scikit-learn) trained on EMBER dataset</p>
      <p class="info">📊 <strong>Accuracy:</strong> ~96% | <strong>AUC-ROC:</strong> ~0.99</p>
      <hr>
      <div class="links">
        <a href="https://huggingface.co/dev9269/malware-detector-rf" target="_blank">Model Card</a>
        <a href="https://github.com/Dev9269/malware-detector" target="_blank">Source Code</a>
        <a href="https://huggingface.co/dev9269/ember-malware-rf" target="_blank">EMBER Variant</a>
      </div>
    </div>
  </body>
</html>