top of page

Free Threat Intelligence for CrowdStrike Users: DugganUSA STIX 2.1 Feed

  • Writer: Patrick Duggan
    Patrick Duggan
  • Nov 13, 2025
  • 2 min read

Published: November 13, 2025 Category: Threat Intelligence Vendor: CrowdStrike Falcon




The Value Proposition


DugganUSA discovered 244 threats that billion-dollar vendors (AbuseIPDB, VirusTotal, ThreatFox) scored as ZERO.


That's a 63% unique discovery rate from multi-source correlation.


Your CrowdStrike Falcon platform is excellent. Our free STIX 2.1 feed makes it better.




What You Get



• Free STIX 2.1 threat intelligence feed

• Real-time updates from production security operations

• MITRE ATT&CK mapped indicators

• Zero cost - Democratic Sharing Law (Judge Dredd D6: 99.5% public)

• 244+ unique discoveries missed by major threat intel vendors


Feed URL: `https://analytics.dugganusa.com/api/v1/stix-feed`




CrowdStrike Falcon Integration


Step 1: Access Threat Intelligence Management


1. Log into CrowdStrike Falcon Console 2. Navigate to Threat Intelligence → Indicators 3. Click Import → STIX Feed


Step 2: Configure Feed URL



Feed URL: https://analytics.dugganusa.com/api/v1/stix-feed?days=30&min_confidence=70
Format: STIX 2.1
Authentication: None (Public feed)
Update Frequency: Hourly recommended


Step 3: Map Indicators to Detections



• Import IPv4 indicators as IOCs

• Map MITRE ATT&CK techniques to detections

• Trigger alerts when endpoints contact flagged IPs

• Enrich detections with our threat intelligence


Step 4: Create Custom Detection Logic


Example: Block High-Confidence Threats



sql
-- Falcon Query Language (FQL)
event_simpleName=NetworkConnectIP4
| lookup threat_intel ip_address as RemoteAddressIP4
| where threat_intel.confidence >= 80
| eval severity=case(
    threat_intel.indicator_types contains "malicious-activity", "CRITICAL",
    threat_intel.indicator_types contains "anomalous-activity", "HIGH",
    true, "MEDIUM"
  )


Example: Hunt for Communications with Unique Discoveries



sql
event_simpleName=NetworkConnectIP4
| lookup threat_intel ip_address as RemoteAddressIP4  
| where threat_intel.x_dugganusa_discovery.unique_detection=true
| stats count by ComputerName, RemoteAddressIP4, threat_intel.name




Query Examples


Find All DugganUSA Indicators



sql
event_simpleName=ThreatIntelIndicatorMatch
| where IndicatorSource="DugganUSA LLC"
| stats count by IndicatorValue, IndicatorType, Severity


Correlate with MITRE ATT&CK



sql
event_simpleName=ThreatIntelIndicatorMatch
| where IndicatorSource="DugganUSA LLC"
| join type=left aid, ContextTimestamp 
    [search event_simpleName=DetectionSummaryEvent]
| stats count by Tactic, Technique, IndicatorValue


Unique Discovery Alert



sql
-- Alert on threats missed by other vendors
event_simpleName=ThreatIntelIndicatorMatch
| where IndicatorSource="DugganUSA LLC"
| where threat_intel.x_dugganusa_discovery.sources_with_zero_score != []
| eval missed_vendors=mvjoin(threat_intel.x_dugganusa_discovery.sources_with_zero_score, ", ")
| table ContextTimestamp, ComputerName, IndicatorValue, missed_vendors




Feed Parameters


Customize the feed for your environment:



# Last 7 days, high confidence only
https://analytics.dugganusa.com/api/v1/stix-feed?days=7&min_confidence=85




Why This Matters


CrowdStrike has the telemetry. We have the correlation.


You see threats at the endpoint. We see threats across 5 intelligence sources simultaneously.


When AbuseIPDB scores an IP as zero, VirusTotal scores it as zero, and ThreatFox scores it as zero — but we blocked it at confidence 95% — that's the threat your EDR needs to know about.


244 unique discoveries. Free. Forever.




Democratic Sharing Law


This feed is free because digital goods have zero marginal cost to share.


We're not hoarding threat intelligence behind paywalls. We're publishing it openly because that's how you prove you're not full of shit.


Judge Dredd Dimension 6 (Democratic Sharing): 99.5% public (4,780 files tracked, 1,011 excluded).


7.1x evidence-to-claims ratio. We show receipts.




Technical Details



• Format: STIX 2.1 Bundle

• Attribution: `created_by_ref: identity--dugganusa-llc-f4a8c3d2-1b9e-4f7a-8c2d-9e3f5b6a7c8d`

• Update Frequency: Real-time from production auto-blocking

• License: CC0-1.0 (Public Domain)

• Contact: [email protected]




Support


Questions? Email [email protected]


API issues? Check feed health: `https://analytics.dugganusa.com/api/v1/stix-feed/info`


Documentation: `https://analytics.dugganusa.com/docs/stix-feed.md`




Your security is our problem now.


— DugganUSA LLC (Minnesota)


Comments

Rated 0 out of 5 stars.
No ratings yet

Add a rating
bottom of page