threat-intel 0.1.0

Comprehensive threat intelligence framework with multi-source aggregation, CVE integration, and risk assessment
Documentation
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
# Getting Started

## Installation

Add Threat Intel to your `Cargo.toml`:

```toml
[dependencies]
threat-intel = "0.1"
tokio = { version = "1", features = ["full"] }  # Required for async

# Optional: with tracing support
threat-intel = { version = "0.1", features = ["tracing"] }
```

## First Steps

### 1. Create Configuration

Start with default sources (MITRE ATT&CK, CVE, Abuse.ch):

```rust
use threat_intel::ThreatIntelConfig;

fn main() {
    // Default configuration with 3 built-in sources
    let config = ThreatIntelConfig::default();
    
    println!("Configured sources:");
    for source in config.get_enabled_sources() {
        println!("  - {} ({})", source.name, source.source_type);
    }
}
```

### 2. Initialize Engine

Create and initialize the threat intelligence engine:

```rust
use threat_intel::{ThreatIntelConfig, ThreatIntelEngine};

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    let config = ThreatIntelConfig::default();
    let mut engine = ThreatIntelEngine::new(config);
    
    // Initialize (fetches from all sources)
    println!("Initializing threat intelligence...");
    engine.initialize().await?;
    
    println!("Initialization complete!");
    
    // Get statistics
    let stats = engine.get_stats();
    println!("Loaded {} sources", stats.sources_count);
    println!("Total vulnerabilities: {}", stats.total_vulnerabilities);
    println!("Total IOCs: {}", stats.total_iocs);
    
    Ok(())
}
```

### 3. Query Vulnerabilities

Search for vulnerabilities affecting specific software:

```rust
use threat_intel::{ThreatIntelConfig, ThreatIntelEngine};

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    let config = ThreatIntelConfig::default();
    let mut engine = ThreatIntelEngine::new(config);
    engine.initialize().await?;
    
    // Query Apache 2.4 vulnerabilities
    let vulns = engine.query_vulnerabilities("apache", "2.4").await?;
    
    println!("Found {} vulnerabilities for Apache 2.4:\n", vulns.len());
    
    for vuln in vulns.iter().take(5) {
        println!("CVE: {:?}", vuln.cve_id);
        println!("Severity: {:?}", vuln.severity);
        println!("CVSS: {:?}", vuln.cvss_score);
        println!("Title: {}", vuln.title);
        println!();
    }
    
    Ok(())
}
```

### 4. Assess Risk

Perform risk assessment on discovered vulnerabilities:

```rust
use threat_intel::{ThreatIntelConfig, ThreatIntelEngine};

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    let config = ThreatIntelConfig::default();
    let mut engine = ThreatIntelEngine::new(config);
    engine.initialize().await?;
    
    // Query vulnerabilities
    let vulns = engine.query_vulnerabilities("openssl", "1.0.1").await?;
    
    // Assess risk
    let assessment = engine.assess_risk(&vulns);
    
    println!("Risk Assessment:");
    println!("  Level: {:?}", assessment.level);
    println!("  Score: {:.1}", assessment.score);
    println!("  Critical: {}", assessment.critical_count);
    println!("  High: {}", assessment.high_count);
    println!("  Medium: {}", assessment.medium_count);
    println!("  Low: {}", assessment.low_count);
    println!("\nRecommendations:");
    for (i, rec) in assessment.recommendations.iter().enumerate() {
        println!("  {}. {}", i + 1, rec);
    }
    
    Ok(())
}
```

### 5. Query IOCs

Search for Indicators of Compromise:

```rust
use threat_intel::{ThreatIntelConfig, ThreatIntelEngine, IOCType};

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    let config = ThreatIntelConfig::default();
    let mut engine = ThreatIntelEngine::new(config);
    engine.initialize().await?;
    
    // Query malicious IP addresses
    let malicious_ips = engine.query_iocs(IOCType::IpAddress).await?;
    
    println!("Found {} malicious IP addresses", malicious_ips.len());
    
    for ioc in malicious_ips.iter().take(10) {
        println!("IP: {}", ioc.value);
        println!("Confidence: {:.0}%", ioc.confidence * 100.0);
        println!("First seen: {}", ioc.first_seen);
        println!();
    }
    
    Ok(())
}
```

### 6. Query Threat Actors

Search for threat actor information:

```rust
use threat_intel::{ThreatIntelConfig, ThreatIntelEngine};

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    let config = ThreatIntelConfig::default();
    let mut engine = ThreatIntelEngine::new(config);
    engine.initialize().await?;
    
    // Search for APT groups
    let actors = engine.query_threat_actors("apt").await?;
    
    println!("Found {} threat actors:\n", actors.len());
    
    for actor in actors.iter().take(5) {
        println!("Name: {}", actor.name);
        println!("Aliases: {:?}", actor.aliases);
        println!("Country: {:?}", actor.country);
        println!("Tactics: {}", actor.tactics.join(", "));
        println!();
    }
    
    Ok(())
}
```

## Complete Example

Here's a complete example showing vulnerability scanning and risk assessment:

```rust
use threat_intel::{ThreatIntelConfig, ThreatIntelEngine, RiskLevel};

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    // 1. Setup
    println!("=== Threat Intelligence Scanner ===\n");
    
    let config = ThreatIntelConfig::default();
    let mut engine = ThreatIntelEngine::new(config);
    
    // 2. Initialize
    println!("Initializing threat intelligence sources...");
    engine.initialize().await?;
    
    let stats = engine.get_stats();
    println!("✓ Loaded {} sources\n", stats.sources_count);
    
    // 3. Scan multiple products
    let products = vec![
        ("apache", "2.4"),
        ("openssl", "1.1.1"),
        ("nginx", "1.18"),
    ];
    
    for (product, version) in products {
        println!("--- Scanning {} {} ---", product, version);
        
        // Query vulnerabilities
        let vulns = engine.query_vulnerabilities(product, version).await?;
        println!("Found {} vulnerabilities", vulns.len());
        
        // Assess risk
        let assessment = engine.assess_risk(&vulns);
        
        // Color-coded risk level
        let risk_icon = match assessment.level {
            RiskLevel::Critical => "🔴 CRITICAL",
            RiskLevel::High => "🟠 HIGH",
            RiskLevel::Medium => "🟡 MEDIUM",
            RiskLevel::Low => "đŸŸĸ LOW",
            RiskLevel::Info => "â„šī¸  INFO",
        };
        
        println!("Risk Level: {}", risk_icon);
        println!("Risk Score: {:.1}", assessment.score);
        println!("Breakdown:");
        println!("  Critical: {}", assessment.critical_count);
        println!("  High: {}", assessment.high_count);
        println!("  Medium: {}", assessment.medium_count);
        println!("  Low: {}", assessment.low_count);
        
        if !assessment.recommendations.is_empty() {
            println!("\nTop Recommendations:");
            for rec in assessment.recommendations.iter().take(3) {
                println!("  â€ĸ {}", rec);
            }
        }
        
        println!();
    }
    
    Ok(())
}
```

## Custom Sources

Add your own threat intelligence sources:

```rust
use threat_intel::{
    ThreatIntelConfig, SourceConfig, SourceType, AuthType,
    UpdateFrequency, SourceCapability
};

fn main() {
    let mut config = ThreatIntelConfig::default();
    
    // Add custom source
    let custom_source = SourceConfig {
        id: "my_threat_feed".to_string(),
        name: "My Threat Feed".to_string(),
        source_type: SourceType::Custom,
        enabled: true,
        api_url: Some("https://api.mycompany.com/threats".to_string()),
        api_key: Some(std::env::var("THREAT_API_KEY").unwrap()),
        auth_type: AuthType::Bearer,
        update_frequency: UpdateFrequency::Hourly,
        priority: 8,
        capabilities: vec![
            SourceCapability::Vulnerabilities,
            SourceCapability::Ioc,
        ],
        timeout_secs: 30,
        retry_count: 3,
    };
    
    config.add_source(custom_source);
    
    println!("Custom source configured!");
}
```

## Periodic Sync

Keep threat intelligence up to date:

```rust
use threat_intel::{ThreatIntelConfig, ThreatIntelEngine};
use tokio::time::{sleep, Duration};

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    let config = ThreatIntelConfig::default();
    let mut engine = ThreatIntelEngine::new(config);
    engine.initialize().await?;
    
    // Sync every 6 hours
    loop {
        println!("Syncing threat intelligence...");
        
        match engine.sync().await {
            Ok(_) => {
                let stats = engine.get_stats();
                println!("✓ Sync complete");
                println!("  Vulnerabilities: {}", stats.total_vulnerabilities);
                println!("  IOCs: {}", stats.total_iocs);
            }
            Err(e) => {
                eprintln!("✗ Sync failed: {}", e);
            }
        }
        
        sleep(Duration::from_secs(6 * 3600)).await;
    }
}
```

## Error Handling

All operations return `Result` for proper error handling:

```rust
use threat_intel::{ThreatIntelConfig, ThreatIntelEngine};

#[tokio::main]
async fn main() {
    let config = ThreatIntelConfig::default();
    let mut engine = ThreatIntelEngine::new(config);
    
    // Handle initialization errors
    match engine.initialize().await {
        Ok(_) => println!("Initialized successfully"),
        Err(e) => {
            eprintln!("Initialization failed: {}", e);
            return;
        }
    }
    
    // Handle query errors
    match engine.query_vulnerabilities("apache", "2.4").await {
        Ok(vulns) => println!("Found {} vulnerabilities", vulns.len()),
        Err(e) => eprintln!("Query failed: {}", e),
    }
}
```

## Configuration Options

### Adjust Sync Interval

```rust
let mut config = ThreatIntelConfig::default();
config.sync_interval_hours = 12;  // Sync every 12 hours
```

### Cache Settings

```rust
let mut config = ThreatIntelConfig::default();
config.cache_enabled = true;
config.cache_ttl_hours = 6;  // Cache expires after 6 hours
```

### Disable Sources

```rust
let mut config = ThreatIntelConfig::default();
config.set_source_enabled("mitre_attack", false);  // Disable MITRE
```

## Next Steps

- Read [Architecture]./architecture.md for system design
- Check [Use Cases]./use-cases.md for real-world applications
- Review [API Reference]./api-reference.md for detailed documentation
- See [Configuration Guide]./configuration.md for advanced options

## Troubleshooting

### Network Errors

If sources fail to fetch:
- Check internet connection
- Verify API keys are correct
- Check firewall/proxy settings
- Review source URLs

### Slow Initialization

If initialization is slow:
- Reduce number of sources
- Increase timeout values
- Check network latency
- Use cached data when possible

### Empty Results

If queries return no results:
- Ensure sources initialized successfully
- Check query parameters (spelling)
- Verify sources have relevant capabilities
- Try broader search terms

## Getting Help

- **Documentation**: See `/docs/` directory
- **Examples**: Check `examples/` directory
- **Issues**: https://github.com/redasgard/threat-intel/issues
- **Email**: hello@redasgard.com