sha256sum -c evidence/HASHES.txtsha256sum data/all.txt
cat SHA256SUMS.txt | grep data/all.txtImport data/ioc/stix-bundle.json into MISP or OpenCTI and validate against STIX 2.1 schema.
with open('data/all.txt') as f:
domains = [l.strip() for l in f if l.strip()]
print(len(domains)) # matches total in READMEfrom collections import Counter
with open('data/all.txt') as f:
tlds = Counter(l.strip().rsplit('.', 1)[-1] for l in f if l.strip())
print(tlds.most_common())