mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-20 14:29:51 -04:00
Merge pull request #1532 from alphagov/info-risk-mgmt
Info risk mgmt page added.
This commit is contained in:
@@ -130,3 +130,8 @@ def features():
|
|||||||
@main.route('/using_notify')
|
@main.route('/using_notify')
|
||||||
def using_notify():
|
def using_notify():
|
||||||
return render_template('views/using-notify.html')
|
return render_template('views/using-notify.html')
|
||||||
|
|
||||||
|
|
||||||
|
@main.route('/information-risk-management')
|
||||||
|
def information_risk_management():
|
||||||
|
return render_template('views/information-risk-management.html')
|
||||||
|
|||||||
63
app/templates/views/information-risk-management.html
Normal file
63
app/templates/views/information-risk-management.html
Normal file
@@ -0,0 +1,63 @@
|
|||||||
|
{% from "components/table.html" import mapping_table, row, text_field, edit_field, field %}
|
||||||
|
{% extends "withoutnav_template.html" %}
|
||||||
|
|
||||||
|
{% block per_page_title %}
|
||||||
|
Information risk management
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block maincolumn_content %}
|
||||||
|
|
||||||
|
<div class="grid-row">
|
||||||
|
<div class="column-two-thirds">
|
||||||
|
<h1 class="heading-large">Approach to information risk management</h1>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
The information risk management approach taken by GOV.UK Notify is aligned to the guidance provided by the
|
||||||
|
National Cyber Security Centre (NCSC) on GOV.UK.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
The scope includes the risk assessment of:
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<ul class="list list-bullet">
|
||||||
|
<li>the GOV.UK Notify technical solution, infrastructure and supporting operations</li>
|
||||||
|
<li>the text message, email, and letter service providers used by GOV.UK Notify</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
The ongoing information risk management activities include:
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<ul class="list list-bullet">
|
||||||
|
<li>formal risk assessments using a methodology based on
|
||||||
|
<a href="http://www.iso.org/iso/catalogue_detail?csnumber=56742">ISO 27005</a>:2011
|
||||||
|
and supplemented by reference to NCSC standards and guidance documentation</li>
|
||||||
|
<li><a href="https://www.cesg.gov.uk/articles/check-fundamental-principles">CHECK</a>-based
|
||||||
|
IT Health Check (ITHC) testing (annual and on major change)</li>
|
||||||
|
<li>residual risk statement preparation and active management of the risk treatment plan</li>
|
||||||
|
<li>regular updates to the Privacy Impact Assessment</li>
|
||||||
|
<li>security impact assessments</li>
|
||||||
|
<li>legal reviews of the service’s Privacy Policy, Terms of Use and Data Sharing and Financial
|
||||||
|
Agreement to ensure Data Protection Act (‘DPA’) compliance</li>
|
||||||
|
<li>Office of the Government’s SIRO (OGSIRO) offshoring approvals to host data within the EEA</li>
|
||||||
|
<li>annual reviews of the risk acceptance status with the Cabinet Office Senior Information Risk Owner (SIRO)</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Controls implemented for the GOV.UK Notify technical solution and operational support team include:
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<ul class="list list-bullet">
|
||||||
|
<li>Data encryption in transit and at rest</li>
|
||||||
|
<li>Protective Monitoring</li>
|
||||||
|
<li>System administration staff SC cleared</li>
|
||||||
|
<li>Service subject to Cabinet Office and GDS security governance</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Information within the GOV.UK Notify service is deemed to have a classification of ‘OFFICIAL’ under
|
||||||
|
the Government Security Classifications Policy.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
{% endblock %}
|
||||||
@@ -17,7 +17,8 @@ def test_logged_in_user_redirects_to_choose_service(
|
|||||||
|
|
||||||
|
|
||||||
@pytest.mark.parametrize('view', [
|
@pytest.mark.parametrize('view', [
|
||||||
'cookies', 'using_notify', 'pricing', 'terms', 'integration_testing', 'roadmap', 'features'
|
'cookies', 'using_notify', 'pricing', 'terms', 'integration_testing', 'roadmap',
|
||||||
|
'features', 'information_risk_management'
|
||||||
])
|
])
|
||||||
def test_static_pages(
|
def test_static_pages(
|
||||||
client,
|
client,
|
||||||
|
|||||||
Reference in New Issue
Block a user