From 55da18436e83eb06cb8d4fa0dad6d448588bc693 Mon Sep 17 00:00:00 2001 From: Efrenn Alba Date: Mon, 21 Apr 2025 21:59:49 -0500 Subject: [PATCH 1/4] Agregar archivo securesandbox.json para crear dominio. --- domains/securesandbox.json | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 domains/securesandbox.json diff --git a/domains/securesandbox.json b/domains/securesandbox.json new file mode 100644 index 000000000..9672bf382 --- /dev/null +++ b/domains/securesandbox.json @@ -0,0 +1,9 @@ +{ + "description": "Dominio para pruebas de cyberseguridad con dominio is-a.dev", + "owner": { + "username": "CrowleyCrowd", + "email": "ealba.cuentas@outlook.com", + "discord": "crowleycrowd" + }, + "record": {} +} From 30fe7d0d9c2d4424a4a6b9d9d19ab894add7a2fa Mon Sep 17 00:00:00 2001 From: Efrenn Alba Date: Tue, 22 Apr 2025 12:52:38 -0500 Subject: [PATCH 2/4] =?UTF-8?q?Eliminar=20la=20secci=C3=B3n=20"record"=20d?= =?UTF-8?q?el=20archivo=20securesandbox.json?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- domains/securesandbox.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/domains/securesandbox.json b/domains/securesandbox.json index 9672bf382..66f63d166 100644 --- a/domains/securesandbox.json +++ b/domains/securesandbox.json @@ -4,6 +4,5 @@ "username": "CrowleyCrowd", "email": "ealba.cuentas@outlook.com", "discord": "crowleycrowd" - }, - "record": {} + } } From 3111368c96b2704c1b81b94a3df86a71c2b3451e Mon Sep 17 00:00:00 2001 From: Efrenn Alba Date: Tue, 22 Apr 2025 20:42:26 -0500 Subject: [PATCH 3/4] feat: Add TXT and MX Records --- domains/securesandbox.json | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/domains/securesandbox.json b/domains/securesandbox.json index 66f63d166..d98558e65 100644 --- a/domains/securesandbox.json +++ b/domains/securesandbox.json @@ -2,7 +2,30 @@ "description": "Dominio para pruebas de cyberseguridad con dominio is-a.dev", "owner": { "username": "CrowleyCrowd", - "email": "ealba.cuentas@outlook.com", + "email": "ealba.platforms@outlook.com", "discord": "crowleycrowd" + }, + "record": { + "MX": [ + { + "host/name": "send", + "target": "feedback-smtp.us-east-1.amazonses.com", + "priority": 10 + } + ], + "TXT": [ + { + "host/name": "send", + "target": "v=spf1 include:amazonses.com ~all" + }, + { + "host/name": "resend._domainkey", + "target": "p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCqstJSWbINtFx1fSomoSdFnVgLNt9dQgSrwrBQKyWqVd/FCUJxSKftjXAUthTCddxGwggtlrm3nbj8/fwNUpTDJ0znmG3JnuSmZ3Ac/HBrnySZjyQw152/A9eW+wMYMsk4DjACYfkGubdIx12i5LS4YFeBbYjtAVHkf4Oy7Xj2EQIDAQAB" + }, + { + "host/name": "_dmarc", + "target": "v=DMARC1; p=none;" + } + ] } } From e4147a1e650d325256de2e62ae7335641d1848c2 Mon Sep 17 00:00:00 2001 From: Efrenn Alba Date: Tue, 22 Apr 2025 22:37:29 -0500 Subject: [PATCH 4/4] refactor: Simplify MX and TXT record structure in securesandbox.json --- domains/securesandbox.json | 23 ++++------------------- 1 file changed, 4 insertions(+), 19 deletions(-) diff --git a/domains/securesandbox.json b/domains/securesandbox.json index d98558e65..0c25af05a 100644 --- a/domains/securesandbox.json +++ b/domains/securesandbox.json @@ -6,26 +6,11 @@ "discord": "crowleycrowd" }, "record": { - "MX": [ - { - "host/name": "send", - "target": "feedback-smtp.us-east-1.amazonses.com", - "priority": 10 - } - ], + "MX": ["feedback-smtp.us-east-1.amazonses.com"], "TXT": [ - { - "host/name": "send", - "target": "v=spf1 include:amazonses.com ~all" - }, - { - "host/name": "resend._domainkey", - "target": "p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCqstJSWbINtFx1fSomoSdFnVgLNt9dQgSrwrBQKyWqVd/FCUJxSKftjXAUthTCddxGwggtlrm3nbj8/fwNUpTDJ0znmG3JnuSmZ3Ac/HBrnySZjyQw152/A9eW+wMYMsk4DjACYfkGubdIx12i5LS4YFeBbYjtAVHkf4Oy7Xj2EQIDAQAB" - }, - { - "host/name": "_dmarc", - "target": "v=DMARC1; p=none;" - } + "v=spf1 include:amazonses.com ~all", + "p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCqstJSWbINtFx1fSomoSdFnVgLNt9dQgSrwrBQKyWqVd/FCUJxSKftjXAUthTCddxGwggtlrm3nbj8/fwNUpTDJ0znmG3JnuSmZ3Ac/HBrnySZjyQw152/A9eW+wMYMsk4DjACYfkGubdIx12i5LS4YFeBbYjtAVHkf4Oy7Xj2EQIDAQAB", + "v=DMARC1; p=none;" ] } }