File size: 25,366 Bytes
07fcfbd | 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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 | #!/usr/bin/env python3
"""
Programmatic NER annotator for APT/threat-intel descriptions.
Processes apt_descriptions.jsonl -> llm_annotated_apt.jsonl
"""
import json
import re
import sys
from pathlib import Path
from collections import defaultdict
INPUT = Path("/home/ubuntu/alkyline/data/raw/apt_reports/apt_descriptions.jsonl")
OUTPUT = Path("/home/ubuntu/alkyline/data/processed/llm_annotated_apt.jsonl")
# ─── Entity dictionaries ───
# We'll build MALWARE, THREAT_ACTOR, TOOL lists from the data itself plus known lists.
# Then use regex for structured types.
KNOWN_TOOLS = {
"Mimikatz", "PsExec", "Cobalt Strike", "Metasploit", "Nmap", "BloodHound",
"AdFind", "Impacket", "PowerSploit", "Rubeus", "SharpHound", "LaZagne",
"CrackMapExec", "Responder", "Empire", "Covenant", "Sliver", "Brute Ratel",
"Havoc", "Mythic", "PoshC2", "SilentTrinity", "Meterpreter", "Netcat", "nc",
"WinRM", "PuTTY", "WinSCP", "RDP", "TeamViewer", "AnyDesk", "ScreenConnect",
"ConnectWise", "Ngrok", "ngrok", "Chisel", "ligolo", "ProxyChains",
"proxychains", "Tor", "socat", "curl", "wget", "certutil", "bitsadmin",
"WMIC", "wmic", "PowerShell", "powershell", "cmd.exe", "cmd", "cscript",
"wscript", "mshta", "regsvr32", "rundll32", "schtasks", "at.exe",
"net.exe", "ipconfig", "tasklist", "taskkill", "nltest", "dsquery",
"csvde", "ldifde", "ntdsutil", "vssadmin", "wevtutil",
"Sysinternals", "ProcDump", "procdump", "Process Monitor",
"Process Explorer", "Autoruns", "Sysmon", "PsService",
"7-Zip", "7zip", "WinRAR", "RAR", "UPX",
"Volatility", "FTK", "Wireshark",
"MSBuild", "InstallUtil", "Regasm", "Regsvcs",
"Certreq", "CMSTP", "cmstp",
"esentutl", "expand", "extrac32", "findstr",
"forfiles", "ftp", "makecab", "msiexec",
"pcalua", "replace", "rpcping", "SyncAppvPublishingServer",
"xwizard", "Msbuild", "Dnscmd",
"Advanced IP Scanner", "Angry IP Scanner",
"Rclone", "rclone", "MEGAsync", "megacmd",
"SharpView", "Seatbelt", "GhostPack",
"Invoke-Obfuscation", "Invoke-Mimikatz",
"Net-GPPPassword", "Get-GPPPassword",
"Sharphound", "PlinkPlink", "Plink",
"Remote Desktop Protocol", "SSH",
"Living off the Land", "LOLBin", "LOLBins",
"LOLBAS",
"BITSAdmin", "Certutil", "Reg.exe",
"Remcos", "QuasarRAT", "Quasar RAT",
"NjRAT", "njRAT", "DarkComet",
"AsyncRAT", "Async RAT",
"Atera", "Splashtop", "GoToAssist",
"LogMeIn", "Ammyy Admin", "NetSupport",
"UltraVNC", "TightVNC", "VNC",
"SecureCRT", "MobaXterm", "Xshell",
"Hashcat", "John the Ripper",
"Hydra", "Medusa", "Aircrack-ng",
"sqlmap", "SQLMap", "Burp Suite",
"Nikto", "DirBuster", "Gobuster",
"ffuf", "wfuzz", "Sublist3r",
"Amass", "Subfinder", "Masscan",
"Shodan", "Censys", "ZoomEye",
"FOFA", "GreyNoise",
"theHarvester", "Recon-ng", "SpiderFoot",
"Maltego", "FOCA",
"Social-Engineer Toolkit", "SET",
"BeEF", "King Phisher", "Gophish",
"Evilginx", "Modlishka",
"CobaltStrike", "Cobalt Strike Beacon",
}
KNOWN_SYSTEMS = {
"Windows", "Linux", "macOS", "Mac OS X", "Mac OS", "iOS", "Android",
"Unix", "FreeBSD", "Solaris", "AIX", "HP-UX",
"Windows 10", "Windows 11", "Windows 7", "Windows 8", "Windows XP",
"Windows Vista", "Windows Server", "Windows Server 2003",
"Windows Server 2008", "Windows Server 2012", "Windows Server 2016",
"Windows Server 2019", "Windows Server 2022",
"Ubuntu", "Debian", "CentOS", "Red Hat", "RHEL", "Fedora",
"Kali Linux", "Arch Linux", "SUSE", "openSUSE", "Alpine Linux",
"Chrome OS", "ChromeOS", "Tizen", "HarmonyOS",
"Microsoft Office", "Microsoft Word", "Microsoft Excel",
"Microsoft PowerPoint", "Microsoft Outlook", "Microsoft Access",
"Microsoft Exchange", "Exchange Server", "Exchange Online",
"Microsoft SharePoint", "SharePoint",
"Microsoft Teams", "Office 365", "Microsoft 365",
"Active Directory", "Azure AD", "Azure Active Directory", "Entra ID",
"Azure", "AWS", "Amazon Web Services", "Google Cloud", "GCP",
"VMware", "ESXi", "vCenter", "vSphere", "Hyper-V",
"Docker", "Kubernetes", "OpenShift",
"Apache", "Nginx", "nginx", "IIS", "Tomcat", "JBoss", "WebLogic",
"MySQL", "PostgreSQL", "MongoDB", "Redis", "Elasticsearch",
"SQL Server", "Oracle Database", "MariaDB", "SQLite",
"SAP", "Salesforce", "ServiceNow", "Jira", "Confluence",
"WordPress", "Drupal", "Joomla", "Magento",
"Citrix", "Fortinet", "FortiGate", "FortiOS",
"Palo Alto", "PAN-OS", "Cisco ASA", "Cisco IOS",
"SonicWall", "Sophos", "Barracuda",
"Ivanti", "Pulse Secure", "Pulse Connect Secure",
"Juniper", "MikroTik", "Ubiquiti",
"Zimbra", "Zoho", "cPanel", "Plesk",
"Git", "GitHub", "GitLab", "Bitbucket",
"Jenkins", "TeamCity", "Bamboo", "CircleCI",
"Splunk", "QRadar", "ArcSight", "LogRhythm",
"CrowdStrike Falcon", "Carbon Black", "SentinelOne",
"Microsoft Defender", "Windows Defender",
"Symantec", "McAfee", "Kaspersky", "ESET",
"Trend Micro", "Bitdefender", "Avast", "AVG",
"Chrome", "Firefox", "Safari", "Edge", "Internet Explorer", "IE",
"Opera", "Brave",
"Outlook", "Thunderbird", "Gmail",
"Telegram", "WhatsApp", "Signal", "Discord", "Slack",
"Zoom", "Skype", "WebEx",
"Adobe Reader", "Adobe Acrobat", "Adobe Flash",
"Java", "JRE", "JDK", ".NET", ".NET Framework",
"Python", "Node.js", "PHP", "Ruby", "Perl", "Go", "Rust",
"OpenSSL", "OpenSSH",
"QNAP", "Synology", "NAS",
"Confluence Server", "Atlassian Confluence",
"SolarWinds", "SolarWinds Orion",
"Zoho ManageEngine", "ManageEngine",
"pfSense", "OPNsense",
"Cobalt Strike", # Also appears as a platform/system
"Kerberos", "LDAP", "NTLM", "SMB", "WMI", "DCOM",
"Group Policy", "GPO",
"VPN", "SSL VPN",
"UEFI", "BIOS",
"Cisco", "Huawei",
"NETGEAR", "TP-Link", "D-Link", "Zyxel",
"Microsoft IIS",
"Android operating system",
"Google Play", "App Store",
"Telegram Bot API",
}
KNOWN_ORGS = {
"Microsoft", "Google", "Apple", "Amazon", "Meta", "Facebook",
"Mandiant", "CrowdStrike", "Palo Alto Networks", "Unit 42",
"FireEye", "Recorded Future", "Proofpoint", "Symantec",
"Kaspersky", "ESET", "Trend Micro", "Bitdefender",
"Sophos", "McAfee", "Avast", "F-Secure", "Fortinet",
"Check Point", "SentinelOne", "Carbon Black",
"Cisco Talos", "Talos", "Volexity", "Secureworks",
"Dragos", "ThreatConnect", "Anomali", "ReversingLabs",
"VirusTotal", "Hybrid Analysis", "ANY.RUN",
"MITRE", "NIST", "CISA", "NSA", "FBI", "CIA", "DHS",
"Europol", "Interpol", "GCHQ", "MI5", "MI6", "BND",
"CERT-UA", "CERT-FR", "CERT-EU", "US-CERT", "CERT/CC",
"ANSSI", "NCSC", "ASD", "ACSC", "CCCS", "BSI", "CNMF",
"NCA", "DOJ", "Department of Justice",
"Treasury Department", "OFAC",
"Rapid7", "Qualys", "Tenable", "BeyondTrust",
"Okta", "Duo", "RSA",
"Red Canary", "Huntress", "Arctic Wolf",
"Zscaler", "Cloudflare", "Akamai", "Fastly",
"Splunk", "Elastic", "Sumo Logic",
"VMware", "Broadcom", "Intel", "AMD", "NVIDIA",
"Cisco", "Juniper", "Huawei",
"AT&T", "Verizon", "T-Mobile",
"ThreatFabric", "PCrisk", "Cyfirma", "Group-IB",
"Positive Technologies", "Intezer", "Deep Instinct",
"BlackBerry", "Lookout", "Zimperium",
"WithSecure", "Trellix", "Cybereason",
"IBM", "IBM X-Force", "X-Force",
"Sekoia", "Intrinsec",
"CISA and FBI", "NSA and CISA",
"Citizen Lab", "EFF", "Amnesty International",
"Bellingcat", "Atlantic Council",
"The DFIR Report", "DFIR Report",
"Lumen Technologies", "Lumen Black Lotus Labs",
"Black Lotus Labs",
"Lab52", "Clearsky", "ClearSky",
"Netskope", "Mimecast", "Abnormal Security",
"Cofense", "PhishLabs", "Area 1 Security",
"ExtraHop", "Corelight", "Vectra",
"Wiz", "Orca Security", "Lacework",
"Aqua Security", "Sysdig",
"Snyk", "Sonatype", "JFrog",
"HackerOne", "Bugcrowd", "Synack",
"NCC Group", "Fox-IT", "PwC",
"Deloitte", "EY", "KPMG", "Accenture",
"BAE Systems", "Raytheon", "Northrop Grumman",
"Lockheed Martin", "General Dynamics",
"Booz Allen Hamilton",
"National Security Agency",
"Federal Bureau of Investigation",
"Department of Homeland Security",
"Cybersecurity and Infrastructure Security Agency",
}
VULN_KEYWORDS = {
"buffer overflow", "stack overflow", "heap overflow",
"integer overflow", "integer underflow",
"use-after-free", "use after free",
"double free", "null pointer dereference",
"format string", "format string vulnerability",
"race condition", "TOCTOU",
"SQL injection", "SQL Injection", "SQLi",
"cross-site scripting", "XSS", "Cross-Site Scripting",
"cross-site request forgery", "CSRF", "XSRF",
"server-side request forgery", "SSRF",
"XML external entity", "XXE",
"remote code execution", "RCE",
"Remote Code Execution",
"local privilege escalation", "LPE",
"privilege escalation",
"arbitrary code execution",
"command injection", "OS command injection",
"code injection", "code execution",
"path traversal", "directory traversal",
"local file inclusion", "LFI",
"remote file inclusion", "RFI",
"insecure deserialization", "deserialization vulnerability",
"authentication bypass", "authorization bypass",
"memory corruption", "out-of-bounds read", "out-of-bounds write",
"type confusion", "information disclosure",
"denial of service", "DoS", "DDoS",
"man-in-the-middle", "MitM", "MITM",
"zero-day", "zero day", "0-day", "0day",
"supply chain attack", "supply chain compromise",
"DLL hijacking", "DLL side-loading", "DLL sideloading",
"DLL search order hijacking",
"reflective DLL injection", "process injection",
"process hollowing", "thread hijacking",
"COM hijacking", "COM-hijacking",
"credential dumping", "credential theft",
"pass-the-hash", "pass-the-ticket",
"golden ticket", "silver ticket",
"Kerberoasting", "AS-REP roasting",
"brute force", "brute-force", "password spraying",
"credential stuffing", "phishing",
"spear-phishing", "spearphishing", "spear phishing",
"watering hole", "drive-by download",
"clickjacking", "session hijacking",
"DNS hijacking", "DNS spoofing", "DNS poisoning",
"ARP spoofing", "BGP hijacking",
"rootkit", "bootkit",
"keylogging", "keylogger",
"screen capture", "clipboard hijacking",
"log4shell", "Log4Shell",
"ProxyLogon", "ProxyShell", "ProxyNotShell",
"EternalBlue", "BlueKeep",
"Zerologon", "PrintNightmare", "Follina",
"Spring4Shell", "SpringShell",
"Shellshock", "Heartbleed", "POODLE", "DROWN",
"Spectre", "Meltdown",
"living-off-the-land",
}
# ─── Regex patterns ───
CVE_RE = re.compile(r'CVE-\d{4}-\d{4,7}')
IP_RE = re.compile(r'\b(?:\d{1,3}\.){3}\d{1,3}\b')
HASH_MD5 = re.compile(r'\b[a-fA-F0-9]{32}\b')
HASH_SHA1 = re.compile(r'\b[a-fA-F0-9]{40}\b')
HASH_SHA256 = re.compile(r'\b[a-fA-F0-9]{64}\b')
EMAIL_RE = re.compile(r'\b[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}\b')
URL_RE = re.compile(r'https?://[^\s\)<>\]]+')
DOMAIN_RE = re.compile(r'\b(?:[a-zA-Z0-9-]+\.)+(?:com|net|org|io|ru|cn|info|biz|xyz|top|tk|ml|ga|cf|gq|cc|pw|ly|me|co|tv|in|de|uk|fr|it|es|br|au|ca|jp|kr|tw|hk|sg|my|ph|vn|th|id|za|ng|ke|ua|by|kz|ir|iq|sy|su|gov|mil|edu|int|onion|bit)\b')
FILEPATH_RE = re.compile(r'(?:[A-Z]:\\(?:[^\s\\/:*?"<>|]+\\)*[^\s\\/:*?"<>|]+|/(?:etc|usr|var|tmp|opt|home|root|proc|sys|dev|bin|sbin|lib|mnt|media|boot|run|srv)/[^\s]+|%[A-Za-z_]+%(?:\\[^\s]+)?)')
MD_LINK_RE = re.compile(r'\[([^\]]*)\]\([^\)]*\)')
def strip_markdown_links(text):
"""Replace [Name](url) with Name, return new text and offset map."""
result = []
last = 0
# old_pos -> new_pos mapping for offset correction
offset_shifts = [] # list of (old_pos, shift_amount)
cumulative_shift = 0
for m in MD_LINK_RE.finditer(text):
start, end = m.start(), m.end()
link_text = m.group(1)
# Everything before this match
result.append(text[last:start])
result.append(link_text)
# The removed portion: from end of link_text to end of match
removed = (end - start) - len(link_text)
cumulative_shift += removed
offset_shifts.append((end, cumulative_shift))
last = end
result.append(text[last:])
new_text = ''.join(result)
return new_text, offset_shifts
def old_to_new_offset(old_pos, offset_shifts):
"""Convert an offset in the original text to offset in cleaned text."""
shift = 0
for boundary, cum_shift in offset_shifts:
if old_pos >= boundary:
shift = cum_shift
else:
break
return old_pos - shift
def find_all_occurrences(text, pattern, case_sensitive=True):
"""Find all occurrences of pattern in text, return list of (start, end)."""
results = []
if not pattern:
return results
flags = 0 if case_sensitive else re.IGNORECASE
# Escape for regex, use word boundaries for short patterns
escaped = re.escape(pattern)
if len(pattern) >= 2:
regex = re.compile(r'(?<![a-zA-Z0-9_])' + escaped + r'(?![a-zA-Z0-9_])', flags)
else:
regex = re.compile(escaped, flags)
for m in regex.finditer(text):
results.append((m.start(), m.end()))
return results
def annotate_entry(entry):
"""Annotate a single entry, return output dict."""
raw_text = entry['text']
name = entry['name']
source = entry['source']
alt_names = entry.get('alt_names', [])
attribution = entry.get('attribution', [])
# Step 1: Strip markdown links
text, offset_shifts = strip_markdown_links(raw_text)
# Step 2: Collect spans
spans = defaultdict(list) # "LABEL: entity_text" -> [[start, end], ...]
def add_spans(label, occurrences, entity_text):
if occurrences:
key = f"{label}: {entity_text}"
for start, end in occurrences:
# Verify offset
if text[start:end] == entity_text:
spans[key].append([start, end])
def add_regex_spans(label, regex):
for m in regex.finditer(text):
entity_text = m.group()
key = f"{label}: {entity_text}"
spans[key].append([m.start(), m.end()])
# 2a: Regex-based types
add_regex_spans("CVE_ID", CVE_RE)
add_regex_spans("IP_ADDRESS", IP_RE)
add_regex_spans("EMAIL", EMAIL_RE)
add_regex_spans("URL", URL_RE)
add_regex_spans("FILEPATH", FILEPATH_RE)
# Hashes (check length specificity: sha256 > sha1 > md5)
# Track matched positions to avoid overlaps
hash_positions = set()
for m in HASH_SHA256.finditer(text):
key = f"HASH: {m.group()}"
spans[key].append([m.start(), m.end()])
hash_positions.update(range(m.start(), m.end()))
for m in HASH_SHA1.finditer(text):
if m.start() not in hash_positions:
key = f"HASH: {m.group()}"
spans[key].append([m.start(), m.end()])
hash_positions.update(range(m.start(), m.end()))
for m in HASH_MD5.finditer(text):
if m.start() not in hash_positions:
key = f"HASH: {m.group()}"
spans[key].append([m.start(), m.end()])
# Domains - but not if part of URL or email
url_positions = set()
for m in URL_RE.finditer(text):
url_positions.update(range(m.start(), m.end()))
for m in EMAIL_RE.finditer(text):
url_positions.update(range(m.start(), m.end()))
for m in DOMAIN_RE.finditer(text):
if m.start() not in url_positions:
key = f"DOMAIN: {m.group()}"
spans[key].append([m.start(), m.end()])
# 2b: Name-based entity detection
# Determine if this entry's name is malware, threat_actor, or tool
is_actor_source = 'actor' in source or 'campaign' in source
is_technique = 'technique' in source
# The entry name and alt_names
all_names_for_entry = [name] + alt_names
if not is_technique:
if is_actor_source:
label = "THREAT_ACTOR"
else:
# Check if it's a known tool
if name in KNOWN_TOOLS:
label = "TOOL"
else:
label = "MALWARE"
for n in all_names_for_entry:
if len(n) >= 2:
occs = find_all_occurrences(text, n, case_sensitive=True)
if not occs and len(n) >= 4:
occs = find_all_occurrences(text, n, case_sensitive=False)
add_spans(label, occs, n)
# Also search for the actual text match if case-insensitive matched
for start, end in occs:
actual = text[start:end]
if actual != n:
# Use the actual text from the document
key = f"{label}: {actual}"
spans[key].append([start, end])
# Remove the non-matching key
wrong_key = f"{label}: {n}"
if wrong_key in spans and [start, end] in spans[wrong_key]:
spans[wrong_key].remove([start, end])
# Attribution -> THREAT_ACTOR
for actor in attribution:
if len(actor) >= 2:
occs = find_all_occurrences(text, actor, case_sensitive=True)
add_spans("THREAT_ACTOR", occs, actor)
# 2c: Dictionary-based matching
# Known threat actors
for actor in KNOWN_ACTORS:
if len(actor) >= 3:
occs = find_all_occurrences(text, actor, case_sensitive=True)
add_spans("THREAT_ACTOR", occs, actor)
# Known tools
for tool in KNOWN_TOOLS:
if len(tool) >= 3:
occs = find_all_occurrences(text, tool, case_sensitive=True)
add_spans("TOOL", occs, tool)
# Known systems
for sys_name in KNOWN_SYSTEMS:
if len(sys_name) >= 2:
cs = len(sys_name) >= 4 # case sensitive for longer names
occs = find_all_occurrences(text, sys_name, case_sensitive=cs)
add_spans("SYSTEM", occs, sys_name)
# Known orgs
for org in KNOWN_ORGS:
if len(org) >= 3:
occs = find_all_occurrences(text, org, case_sensitive=True)
add_spans("ORGANIZATION", occs, org)
# Vulnerability keywords
for vuln in VULN_KEYWORDS:
if len(vuln) >= 3:
cs = len(vuln) >= 5
occs = find_all_occurrences(text, vuln, case_sensitive=cs)
add_spans("VULNERABILITY", occs, vuln)
# 2d: Cross-reference - find other entry names mentioned in this text
# (handled by global name matching below)
# 3: Deduplicate and verify all spans
final_spans = {}
for key, positions in spans.items():
# Deduplicate
unique_positions = []
seen = set()
for pos in positions:
t = tuple(pos)
if t not in seen:
seen.add(t)
# Verify
label_entity = key.split(": ", 1)
if len(label_entity) == 2:
entity_text = label_entity[1]
if text[pos[0]:pos[1]] == entity_text:
unique_positions.append(pos)
if unique_positions:
final_spans[key] = unique_positions
return {
"text": text,
"spans": final_spans,
"info": {
"source": "apt_reports",
"name": name,
}
}
def build_global_name_sets(entries):
"""Build sets of known malware, actors from all entries."""
malware_names = set()
actor_names = set()
tool_names = set(KNOWN_TOOLS)
for e in entries:
source = e['source']
name = e['name']
alts = e.get('alt_names', [])
is_actor = 'actor' in source or 'campaign' in source
is_technique = 'technique' in source
if is_technique:
continue
all_n = [name] + alts
for n in all_n:
if is_actor:
actor_names.add(n)
elif n in KNOWN_TOOLS:
tool_names.add(n)
else:
malware_names.add(n)
for a in e.get('attribution', []):
actor_names.add(a)
return malware_names, actor_names, tool_names
# Build KNOWN_ACTORS globally (will be populated in main)
KNOWN_ACTORS = set()
def main():
global KNOWN_ACTORS
print("Loading entries...")
entries = []
with open(INPUT) as f:
for line in f:
entries.append(json.loads(line))
print(f"Loaded {len(entries)} entries")
print("Building global name sets...")
malware_names, actor_names, tool_names = build_global_name_sets(entries)
KNOWN_ACTORS = actor_names
print(f" Malware: {len(malware_names)}, Actors: {len(actor_names)}, Tools: {len(tool_names)}")
# Add cross-reference matching: for each entry, also search for
# other known malware/actor/tool names mentioned in text.
# To keep it efficient, we only search names >= 4 chars.
# Build a combined lookup for cross-referencing
cross_ref_malware = {n for n in malware_names if len(n) >= 4 and not n.isdigit()}
cross_ref_actors = {n for n in actor_names if len(n) >= 4 and not n.isdigit()}
cross_ref_tools = {n for n in tool_names if len(n) >= 4}
print(f"Cross-ref candidates: malware={len(cross_ref_malware)}, actors={len(cross_ref_actors)}, tools={len(cross_ref_tools)}")
# Pre-compile cross-ref patterns for efficiency
# Group by first character for faster matching
print("Processing entries...")
with open(OUTPUT, 'w') as out:
for i, entry in enumerate(entries):
result = annotate_entry(entry)
# Cross-reference: search for other known entities
text = result['text']
# Only do cross-ref for malware/actor names that appear in text
# Use a fast pre-check
for n in cross_ref_malware:
if n in text:
occs = find_all_occurrences(text, n, case_sensitive=True)
for start, end in occs:
actual = text[start:end]
key = f"MALWARE: {actual}"
if key not in result['spans']:
result['spans'][key] = []
if [start, end] not in result['spans'][key]:
result['spans'][key].append([start, end])
for n in cross_ref_actors:
if n in text:
occs = find_all_occurrences(text, n, case_sensitive=True)
for start, end in occs:
actual = text[start:end]
key = f"THREAT_ACTOR: {actual}"
if key not in result['spans']:
result['spans'][key] = []
if [start, end] not in result['spans'][key]:
result['spans'][key].append([start, end])
for n in cross_ref_tools:
if n in text:
occs = find_all_occurrences(text, n, case_sensitive=True)
for start, end in occs:
actual = text[start:end]
key = f"TOOL: {actual}"
if key not in result['spans']:
result['spans'][key] = []
if [start, end] not in result['spans'][key]:
result['spans'][key].append([start, end])
# Remove empty span keys
result['spans'] = {k: v for k, v in result['spans'].items() if v}
# Resolve overlapping labels: prefer more specific
# Priority: CVE_ID > THREAT_ACTOR > MALWARE > TOOL > VULNERABILITY > SYSTEM > ORGANIZATION > others
# For overlapping spans at same position, keep highest priority
pos_to_keys = defaultdict(list)
for key, positions in result['spans'].items():
for pos in positions:
pos_to_keys[tuple(pos)].append(key)
PRIORITY = {
'CVE_ID': 10, 'IP_ADDRESS': 9, 'HASH': 9, 'EMAIL': 9,
'URL': 9, 'DOMAIN': 8, 'FILEPATH': 8,
'THREAT_ACTOR': 7, 'MALWARE': 6, 'TOOL': 5,
'VULNERABILITY': 4, 'SYSTEM': 3, 'ORGANIZATION': 2,
}
for pos, keys in pos_to_keys.items():
if len(keys) > 1:
# Keep highest priority
best_key = max(keys, key=lambda k: PRIORITY.get(k.split(":")[0], 0))
for k in keys:
if k != best_key:
if list(pos) in result['spans'].get(k, []):
result['spans'][k].remove(list(pos))
# Clean empty
result['spans'] = {k: v for k, v in result['spans'].items() if v}
out.write(json.dumps(result, ensure_ascii=False) + '\n')
if (i + 1) % 500 == 0:
print(f" Processed {i+1}/{len(entries)}")
print(f"Done! Wrote {len(entries)} entries to {OUTPUT}")
if __name__ == '__main__':
main()
|