Skip to content

Commit

Permalink
Added security disclosure page
Browse files Browse the repository at this point in the history
  • Loading branch information
lonnieezell committed Nov 10, 2021
1 parent e957016 commit 27c3a7e
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/Config/Routes.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down
11 changes: 11 additions & 0 deletions app/Controllers/Disclosures.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?php

namespace App\Controllers;

class Disclosures extends BaseController
{
public function index()
{
echo $this->render('disclosures');
}
}
43 changes: 43 additions & 0 deletions app/Views/disclosures.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<?= $this->extend('layouts/app') ?>

<?= $this->section('content') ?>

<!-- CONTENT -->
<div class="clr"></div>
<section id="content-outer">
<div id="content-inner">
<div id="policies-icon-holder">
<img src="/assets/icons/44521256.png" id="policies-icon"/>
</div><!--icon ends here-->

<p>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.
</p>

<p>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.
</p>


<div class="inner-page-text-box">
<div class="inner-page-text-box-title">Disclosures</div>

<div class="clr"></div>

<div class="inner-page-text-sub-box">
<div class="inner-page-text-sub-box-title">CodeIgniter.com Email Spoofing</div>

<p>Oct 25, 2021 - <b>The MX</b> 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.
</p>
</div>
</div>

</div><!--content-inner ends here-->
</section><!--section end -->


<div class="clr"></div>

<?= $this->endSection() ?>
1 change: 1 addition & 0 deletions app/Views/layouts/_footer.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<div id="footer-inner-left">
<a href="/policies" class="footer-menu-item" >Policies</a>
<a href="/the-fine-print" class="footer-menu-item" >The Fine Print</a>
<a href="/security-disclosures" class="footer-menu-item" >Security Disclosures</a>
<a href="/news" class="footer-menu-item">News</a>
<a href="/discuss" class="footer-menu-item" >Discuss</a>
<a href="/contribute" class="footer-menu-item" >Contribute</a>
Expand Down

0 comments on commit 27c3a7e

Please sign in to comment.