Skip to content

Commit

Permalink
Merge pull request #178 from PatelN123/f
Browse files Browse the repository at this point in the history
Adds new pages
  • Loading branch information
PatelN123 authored Mar 7, 2022
2 parents 335012e + 3b9698e commit 62c251b
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 2 deletions.
31 changes: 31 additions & 0 deletions Website/docs/digitalsupportnotes/Security/firewall.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
id: firewalls
description: What are security firewalls?
slug: /security/firewalls
title: 🧱 Firewall
---

## Purpose
To prevent unauthorised access to a machine or network.

## How?
It monitors all traffic which passes through it and can permit or deny it based on programmed rules.

## Types
Hardware and software

### Where are they located and what do they protect?
A physical firewall is a physical device which is located at (usually) the internet connection of the network. It protects the entire network from outside intrusion. <br />
A software firewall is a program which runs on an individual device and just protects that device from outside intrusion.

## Parameters
The parameters that can filter traffic are: <br />
`-` Source or destination IP address. <br />
`-` Protocol used such as HTTP <br />
`-` Port number used such as 80 <br />
`-` Specific words or phrases <br />
`-` Domain names <br />
`-` Program or application <br />

This is not an exhaustive list and are only examples.

28 changes: 28 additions & 0 deletions Website/docs/digitalsupportnotes/Security/mitigation.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
id: mitigation
description: What is security mitigation?
slug: /mitigation
title: 💥 Mitigation
---

Risk mitigation is the strategy to prepare and lessen the effecets of threats faced by a business.

## Risk mitigation controls
`-` Firewall to secure internet connections <br />
`-` Choose most secure settings for devices and software <br />
`-` Control access to data and services
`-` Protection from viruses and malware <br />
`-` Up-to-date software and devices <br />
`-` Anti-virus and anti-malware software <br />
`-` Firewalls - Both hardware and software <br />
`-` Intrusion detection and prevention systems (IDS and IPS) <br />
`-` Encryption - purpose, process and protocols <br />
`-` User access, policies and procedures - user permission <br />
`-` Staff training and CPD (Continuous professional development) - Human firewall <br />
`-` Back-ups - full, incrememntal and differential <br />
`-` Software and system maintenance: <br />
`--` Scheduled maintenance <br />
`--` Interruption to service <br />
`-` Air gaps <br />
`-` Honeypot <br />
`-` Virtual Private Networks (VPNs) <br />
4 changes: 2 additions & 2 deletions Website/src/components/Sponsors/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import Translate from '@docusaurus/Translate';
import Link from '@docusaurus/Link';
import clsx from 'clsx';

const Playgrounds = [
const Sponsors = [
{
name: <><img src="https://img.stackshare.io/service/12547/OIhIQ6XR_400x400.jpg" class="icon-inline" />🪐 Instatus</>,
url: 'https://instatus.com/',
Expand Down Expand Up @@ -100,7 +100,7 @@ function PlaygroundCard({name, image, url, description}: Props) {
export function PlaygroundCardsRow(): JSX.Element {
return (
<div className="row">
{Playgrounds.map((playground) => (
{Sponsors.map((playground) => (
<PlaygroundCard key={playground.name} {...playground} />
))}
</div>
Expand Down

2 comments on commit 62c251b

@vercel
Copy link

@vercel vercel bot commented on 62c251b Mar 7, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on 62c251b Mar 7, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.