From 513e8eabc667cf36d8744ad117e40a5eca5ac80d Mon Sep 17 00:00:00 2001 From: Alexandre Dulaunoy Date: Thu, 15 Apr 2021 10:33:36 +0200 Subject: [PATCH] chg: [tests] historical records in threatcrowd --- tests/test_expansions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_expansions.py b/tests/test_expansions.py index 62ca7f1..2781c38 100644 --- a/tests/test_expansions.py +++ b/tests/test_expansions.py @@ -464,7 +464,7 @@ class TestExpansions(unittest.TestCase): def test_threatcrowd(self): query_types = ('domain', 'ip-src', 'md5', 'whois-registrant-email') query_values = ('circl.lu', '185.194.93.14', '616eff3e9a7575ae73821b4668d2801c', 'hostmaster@eurodns.com') - results = ('185.194.93.14', 'cve.circl.lu', 'devilreturns.com', 'navabi.lu') + results = ('149.13.33.4', 'cve.circl.lu', 'devilreturns.com', 'navabi.lu') for query_type, query_value, result in zip(query_types, query_values, results): query = {"module": "threatcrowd", query_type: query_value} response = self.misp_modules_post(query)