From fd76e55093b0644e00e4cae215cdebfb99f72b66 Mon Sep 17 00:00:00 2001 From: Sebdraven Date: Tue, 20 Apr 2021 13:56:45 +0200 Subject: [PATCH] Update yeti.py fix typo --- misp_modules/modules/expansion/yeti.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misp_modules/modules/expansion/yeti.py b/misp_modules/modules/expansion/yeti.py index 7dddf2e..1288838 100644 --- a/misp_modules/modules/expansion/yeti.py +++ b/misp_modules/modules/expansion/yeti.py @@ -145,7 +145,7 @@ class Yeti(): def __get_object_ns_record(self, obj_to_add): object_dns_record = MISPObject('dns-record') - object_dns_record.add_attribute('queried_domain', self.attribute['value']) + object_dns_record.add_attribute('queried-domain', self.attribute['value']) object_dns_record.add_attribute('ns-record', obj_to_add['value']) object_dns_record.add_reference(self.attribute['uuid'], 'related_to')