This repository was archived by the owner on May 18, 2024. It is now read-only.
File tree 7 files changed +946
-668
lines changed
7 files changed +946
-668
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,8 @@ class App extends BaseConfig
27
27
'menudata ' => [
28
28
['name ' => 'bottomNav1 ' , 'link ' => '/help ' ],
29
29
['name ' => 'bottomNav2 ' , 'link ' => '/help/legal ' ],
30
- ['name ' => 'bottomNav3 ' , 'link ' => '/help/about ' ]
30
+ ['name ' => 'bottomNav3 ' , 'link ' => '/help/about ' ],
31
+ ['name ' => 'bottomNav4 ' , 'link ' => '/security-notices ' ],
31
32
]
32
33
];
33
34
Original file line number Diff line number Diff line change 45
45
$ routes ->get ('help ' ,'Help::index ' );
46
46
$ routes ->get ('help/legal ' ,'Help::legal ' );
47
47
$ routes ->get ('help/about ' ,'Help::about ' );
48
+ $ routes ->get ('security-notices ' ,'Security::notices ' );
48
49
49
50
// localized routes
50
51
$ routes ->get ('{locale}/home ' ,'Home::index ' );
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ namespace App \Controllers ;
4
+
5
+ class Security extends BaseController
6
+ {
7
+ /**
8
+ * Security Notices page
9
+ */
10
+ public function notices ()
11
+ {
12
+ $ this ->data ['title ' ] = 'Security Notices ' ;
13
+
14
+ $ this ->render ('security ' );
15
+ }
16
+ }
Original file line number Diff line number Diff line change 9
9
'bottomNav1 ' => 'Policies ' ,
10
10
'bottomNav2 ' => 'The Fine Print ' ,
11
11
'bottomNav3 ' => 'About ' ,
12
+ 'bottomNav4 ' => 'Security Notices ' ,
12
13
];
Original file line number Diff line number Diff line change
1
+ <?= $ this ->extend ('theme/template ' ) ?>
2
+
3
+ <?= $ this ->section ('content ' ) ?>
4
+ <div class="container">
5
+ <div class="row">
6
+
7
+ <p>The following items have been reported to the CodeIgniter core team and addressed as potential security
8
+ concerns. Not all of them will affect your sites, but you should periodically review this list to
9
+ determine any threats.
10
+ </p>
11
+
12
+ <p>These disclosures are primarily aimed at the website and surrounding environment. Security disclosures
13
+ affecting the framework will be handled through GitHub's built-in Security Advisors functionality.
14
+ </p>
15
+
16
+
17
+ <section class="well disclosure">
18
+ <h1>codeigniter.com Email Spoofing</h1>
19
+
20
+ <p>Oct 25, 2021 - <b>The MX</b> reported that the codeigniter.com domain was able to be used for email
21
+ spoofing due to the lack of a DKIM record. We updated the DNS to include a DKIM record as a result.
22
+ </p>
23
+ </section>
24
+ </div>
25
+ </div>
26
+ <?= $ this ->endSection () ?>
You can’t perform that action at this time.
0 commit comments