feat(stix_export): wire fingerprint bounties through all endpoints + tests

Remaining files from the fingerprint-bounties + characterizes-SRO commit:
misp_export, repository, bounties mixin, all 4 router endpoints, and test suite
updates. Prerequisite: previous commit added _extract_fingerprint_bounty_data
and the stix_export changes.
This commit is contained in:
2026-05-09 09:14:48 -04:00
parent 51d0fc7b6c
commit 4c6b12dcf8
13 changed files with 181 additions and 4 deletions

View File

@@ -115,6 +115,10 @@ class DummyRepo(BaseRepository):
await super().list_observations_by_attacker(attacker_uuid); return []
async def get_all_observations_for_export(self):
await super().get_all_observations_for_export(); return {}
async def get_fingerprint_bounties_by_ip(self, ip):
await super().get_fingerprint_bounties_by_ip(ip); return []
async def get_all_fingerprint_bounties_for_export(self):
await super().get_all_fingerprint_bounties_for_export(); return {}
async def get_attacker_uuid_by_ip(self, ip):
await super().get_attacker_uuid_by_ip(ip); return None
# TTP rollup surface (TTP_TAGGING.md)
@@ -261,6 +265,10 @@ async def test_base_repo_coverage():
await dr.list_observations_by_attacker("a")
with pytest.raises(NotImplementedError):
await dr.get_all_observations_for_export()
with pytest.raises(NotImplementedError):
await dr.get_fingerprint_bounties_by_ip("1.1.1.1")
with pytest.raises(NotImplementedError):
await dr.get_all_fingerprint_bounties_for_export()
with pytest.raises(NotImplementedError):
await dr.get_attacker_uuid_by_ip("1.1.1.1")
with pytest.raises(NotImplementedError):