Skip to content

Commit

Permalink
Merge pull request #1114 from red-ship-it/master
Browse files Browse the repository at this point in the history
Update TorBlutMagie to point to alternative domain
  • Loading branch information
nusantara-self authored Oct 21, 2024
2 parents b70a97d + 69d9c8f commit e408f82
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions analyzers/TorBlutmagie/TorBlutmagie.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"license": "AGPL-V3",
"url": "https://github.com/TheHive-Project/Cortex-Analyzers",
"version": "1.0",
"description": "Query http://torstatus.blutmagie.de/query_export.php/Tor_query_EXPORT.csv for TOR exit nodes IP addresses or names.",
"description": "Query https://torstatus.rueckgr.at/query_export.php/Tor_query_EXPORT.csv (formerly TorBlutmagie) for TOR exit nodes IP addresses or names.",
"dataTypeList": ["ip", "domain", "fqdn"],
"command": "TorBlutmagie/tor_blutmagie_analyzer.py",
"baseConfig": "TorBlutmagie",
Expand All @@ -24,5 +24,9 @@
"multi": false,
"required": false
}
]
],
"registration_required": false,
"subscription_required": false,
"free_subscription": true,
"service_homepage": "https://torstatus.rueckgr.at"
}
2 changes: 1 addition & 1 deletion analyzers/TorBlutmagie/tor_blutmagie.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def __init__(self, cache_duration=3600, cache_root='/tmp/cortex/tor_project'):
self.cache_duration = cache_duration
if self.cache_duration > 0:
self.cache = Cache(cache_root)
self.url = 'http://torstatus.blutmagie.de/query_export.php/Tor_query_EXPORT.csv'
self.url = 'https://torstatus.rueckgr.at/query_export.php/Tor_query_EXPORT.csv'

__cache_key = __name__ + ':raw_data'

Expand Down

0 comments on commit e408f82

Please sign in to comment.