mirror of
https://github.com/0xsrb/AASRT.git
synced 2026-04-24 09:05:56 +02:00
20 lines
466 B
Python
20 lines
466 B
Python
"""Enrichment modules for AASRT.
|
|
|
|
This module contains data enrichment capabilities:
|
|
- ClawSec threat intelligence integration
|
|
- (Future) WHOIS lookups
|
|
- (Future) Geolocation
|
|
- (Future) SSL/TLS certificate analysis
|
|
- (Future) DNS records
|
|
"""
|
|
|
|
from .clawsec_feed import ClawSecFeedManager, ClawSecFeed, ClawSecAdvisory
|
|
from .threat_enricher import ThreatEnricher
|
|
|
|
__all__ = [
|
|
'ClawSecFeedManager',
|
|
'ClawSecFeed',
|
|
'ClawSecAdvisory',
|
|
'ThreatEnricher'
|
|
]
|