From df6784859e70c2d08aa5b77f03eb15698fdeb3c4 Mon Sep 17 00:00:00 2001 From: Alexandre Dulaunoy Date: Thu, 25 Feb 2021 07:24:19 +0100 Subject: [PATCH] new: [dkim] DomainKeys Identified Mail - DKIM object template --- objects/dkim/.definition.json.swp | Bin 0 -> 12288 bytes objects/dkim/definition.json | 77 ++++++++++++++++++++++++++++++ 2 files changed, 77 insertions(+) create mode 100644 objects/dkim/.definition.json.swp create mode 100644 objects/dkim/definition.json diff --git a/objects/dkim/.definition.json.swp b/objects/dkim/.definition.json.swp new file mode 100644 index 0000000000000000000000000000000000000000..e4276b4fa88987841f4e9a958ce7d19597c3f4a7 GIT binary patch literal 12288 zcmeI2zi$&U6oB2%v>=dJkdSMJE?kq41g@PUp{NR~prA?!f$!`qZtoX9yJ{2#{sWdS z?CdP8h>eW_iIssFG4K~4-n(9q=+Fv;Dj}YwFFwci^YiCqh~lVyZ#d%NN}EAB$5=bR z{^(%w1N*kjm{dNM9y^XNs)!BQv5 znId1=sfv?gp0Ff!lL0b-2E0pxaDjENb?UGB6|uxGoWDzM$N(8217v^T;@a*jQN{mwUgzTDJvN9v|Y6&WA{WPl8i0Wv@a$N(8217v^RHpn6s8axi|{5WttqT=7#+8TMPxp8rc5yzXT3h0gzw|^Zt0vg zk$1nQTF?94oOt5Xln-v*;hS5V-0HZns?HPEswJ%P3B$-u-hU%wr}tg62Cj0%B8cL% ub8e1n);#T8;4JxYz)j8{>wT$oY%-b7?Ck1sP=EZ;kN9~c6`a_FP1p|$4HI?% literal 0 HcmV?d00001 diff --git a/objects/dkim/definition.json b/objects/dkim/definition.json new file mode 100644 index 0000000..36f4dd0 --- /dev/null +++ b/objects/dkim/definition.json @@ -0,0 +1,77 @@ +{ + "attributes": { + "d": { + "description": "DKIM domain used for the selector record", + "misp-attribute": "domain", + "ui-priority": 1 + }, + "dkim": { + "description": "DomainKeys Identified Mail - DKIM full DNS TXT record", + "misp-attribute": "dkim", + "ui-priority": 1 + }, + "h": { + "description": "DKIM hash type", + "disable_correlation": true, + "misp-attribute": "text", + "sane_default": [ + "sha1", + "md5" + ], + "ui-priority": 1 + }, + "k": { + "description": "DKIM key type", + "disable_correlation": true, + "misp-attribute": "text", + "sane_default": [ + "rsa" + ], + "ui-priority": 1 + }, + "n": { + "description": "DKIM administrator note", + "disable_correlation": true, + "misp-attribute": "text", + "ui-priority": 1 + }, + "public-key": { + "description": "DKIM public key", + "misp-attribute": "text", + "ui-priority": 1 + }, + "s": { + "description": "DKIM service record", + "disable_correlation": true, + "misp-attribute": "text", + "ui-priority": 1 + }, + "t": { + "description": "DKIM domain testing", + "disable_correlation": true, + "misp-attribute": "text", + "sane_default": [ + "y", + "s" + ], + "ui-priority": 1 + }, + "version": { + "description": "DKIM version", + "disable_correlation": true, + "misp-attribute": "text", + "sane_default": [ + "DKIM1" + ], + "ui-priority": 1 + } + }, + "description": "DomainKeys Identified Mail - DKIM", + "meta-category": "misc", + "name": "dkim", + "required": [ + "dkim" + ], + "uuid": "7f1e45a5-b050-433e-83c1-1bf8c8d9e4a5", + "version": 1 +} \ No newline at end of file