We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5222726 commit aa9ca92Copy full SHA for aa9ca92
1 file changed
lib/downloaders/malwarebazaar.py
@@ -54,7 +54,7 @@ def download(hash: str, apikey: str = "") -> bytes:
54
data = requests.post(
55
"https://mb-api.abuse.ch/api/v1/",
56
data={"query": "get_file", _bazaar_map[len(hash)]: hash},
57
- headers={"API-KEY": integrations_cfg.abusech.apikey or apikey, "User-Agent": "CAPE Sandbox"},
+ headers={"Auth-Key": integrations_cfg.abusech.apikey or apikey, "User-Agent": "CAPE Sandbox"},
58
)
59
if data.ok:
60
try:
0 commit comments