ahmedBargady commited on
Commit
21fa7a3
·
verified ·
1 Parent(s): d6d6683

Update ThreatFox_MalDomains/README.md

Browse files
Files changed (1) hide show
  1. ThreatFox_MalDomains/README.md +9 -1
ThreatFox_MalDomains/README.md CHANGED
@@ -1,5 +1,13 @@
 
 
1
  This dataset has 140 columns which:
2
  - 1 column for input
3
  - 1 column for classes
4
  - 1 column for labels
5
- - 137 columns for collected shared metadata
 
 
 
 
 
 
 
1
+ ## Columns
2
+
3
  This dataset has 140 columns which:
4
  - 1 column for input
5
  - 1 column for classes
6
  - 1 column for labels
7
+ - 137 columns for collected shared metadata
8
+
9
+ ## 0 As Null Values vs. Honet Null values
10
+
11
+ ## 0 As Null Values vs. Honest Null Values
12
+
13
+ When a metadata lookup fails — no RDAP record, no TLS handshake, a domain that doesn't resolve — the value for those features is genuinely *unknown*, not zero. The original collector filled these gaps with `0`, which conflates two very different things: a **measured zero** ("the DNS scan ran and found no MX record") and a **missing value** ("we never got an answer"). This is harmful because the missingness rate itself is class-discriminative — benign domains serve a TLS certificate and resolve to an IP roughly 30 points more often than malicious ones — so a fabricated `0` quietly becomes a proxy for the label, inflating in-distribution scores through an artifact that does not transfer to new data. The **honest-null** convention keeps the value column truthful (empty when unknown, `0` only when actually measured as zero) and instead captures the legitimate "no footprint" signal explicitly through a separate per-category **missingness mask**. The result is a representation where `0` always means the same thing across every dataset, and the model learns the real signal of a missing footprint rather than a leaky, dataset-specific fake zero.