From 27c3a7ea5ae7e8212b834d4ebd6c2a64ca1afc3b Mon Sep 17 00:00:00 2001 From: Lonnie Ezell Date: Tue, 9 Nov 2021 22:18:38 -0600 Subject: [PATCH] Added security disclosure page --- app/Config/Routes.php | 1 + app/Controllers/Disclosures.php | 11 +++++++++ app/Views/disclosures.php | 43 +++++++++++++++++++++++++++++++++ app/Views/layouts/_footer.php | 1 + 4 files changed, 56 insertions(+) create mode 100644 app/Controllers/Disclosures.php create mode 100644 app/Views/disclosures.php diff --git a/app/Config/Routes.php b/app/Config/Routes.php index e815f75..9733ab8 100644 --- a/app/Config/Routes.php +++ b/app/Config/Routes.php @@ -37,6 +37,7 @@ $routes->get('download', 'Download::index'); $routes->get('policies', 'Policies::index'); $routes->get('the-fine-print', 'FinePrint::index'); +$routes->get('security-disclosures', 'Disclosures::index'); // Blog $routes->get('news', 'Blog::index'); diff --git a/app/Controllers/Disclosures.php b/app/Controllers/Disclosures.php new file mode 100644 index 0000000..b1c3929 --- /dev/null +++ b/app/Controllers/Disclosures.php @@ -0,0 +1,11 @@ +render('disclosures'); + } +} diff --git a/app/Views/disclosures.php b/app/Views/disclosures.php new file mode 100644 index 0000000..097aea2 --- /dev/null +++ b/app/Views/disclosures.php @@ -0,0 +1,43 @@ +extend('layouts/app') ?> + +section('content') ?> + + +
+
+
+
+ +
+ +

The following items have been reported to the CodeIgniter core team and addressed as potential security + concerns. Not all of them will affect your sites, but you should periodically review this list to + determine any threats. +

+ +

These disclosures are primarily aimed at the website and surrounding environment. Security disclosures + affecting the framework will be handled through GitHub's built-in Security Advisors functionality. +

+ + +
+
Disclosures
+ +
+ +
+
CodeIgniter.com Email Spoofing
+ +

Oct 25, 2021 - The MX reported that the codeigniter.com domain was able to be used for email + spoofing due to the lack of a DKIM record. We updated the DNS to include a DKIM record as a result. +

+
+
+ +
+
+ + +
+ +endSection() ?> diff --git a/app/Views/layouts/_footer.php b/app/Views/layouts/_footer.php index 786a47e..d347f4b 100644 --- a/app/Views/layouts/_footer.php +++ b/app/Views/layouts/_footer.php @@ -3,6 +3,7 @@