Skip to content
This repository has been archived by the owner on Sep 16, 2022. It is now read-only.

Adds new patch id recommended actions #738

Merged
merged 1 commit into from
Feb 28, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 5 additions & 55 deletions backend/recommended_actions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,17 +95,7 @@
terminal_title: |
Here are the steps to resolve this issue.
terminal_code: |
Find your sshd_config file
$ sudo find /etc -iname sshd_config

Open the file above in your favorite editor
$ sudo vim /path/to/sshd_config

Find the line that says 'AllowAgentForwarding', and change it into 'AllowAgentForwarding no'.
If the line does not exist, add it. Also, please note that lines starting with '#' are disabled

Once you've added the line, make sure to restart SSH by running
$ sudo service ssh restart
$ sudo wott-agent patch openssh-agent-forwarding

- title: Password authentication enabled for OpenSSH
id: 2003
Expand All @@ -132,17 +122,7 @@
terminal_title: |
Here are the steps to resolve this issue.
terminal_code: |
Find your sshd_config file
$ sudo find /etc -iname sshd_config

Open the file above in your favorite editor
$ sudo vim /path/to/sshd_config

Find the line that says 'PasswordAuthentication', and change it into 'PasswordAuthentication no'.
If the line does not exist, add it. Also, please note that lines starting with '#' are disabled

Once you've added the line, make sure to restart SSH by running
$ sudo service ssh restart
$ sudo wott-agent patch openssh-password-auth

- title: Root login enabled for OpenSSH
id: 2002
Expand All @@ -167,17 +147,7 @@
terminal_title: |
Here are the steps to resolve this issue.
terminal_code: |
Find your sshd_config file
$ sudo find /etc -iname sshd_config

Open the file above in your favorite editor
$ sudo vim /path/to/sshd_config

Find the line that says 'PermitRootLogin', and change it into 'PermitRootLogin no'.
If the line does not exist, add it. Also, please note that lines starting with '#' are disabled

Once you've added the line, make sure to restart SSH by running
$ sudo service ssh restart
$ sudo wott-agent patch openssh-root-login

- title: Empty passwords permitted for OpenSSH
id: 2001
Expand All @@ -202,17 +172,7 @@
terminal_title: |
Here are the steps to resolve this issue.
terminal_code: |
Find your sshd_config file
$ sudo find /etc -iname sshd_config

Open the file above in your favorite editor
$ sudo vim /path/to/sshd_config

Find the line that says 'PermitEmptyPasswords', and change it into 'PermitEmptyPasswords no'.
If the line does not exist, add it. Also, please note that lines starting with '#' are disabled

Once you've added the line, make sure to restart SSH by running
$ sudo service ssh restart
$ sudo wott-agent patch openssh-empty-password

- title: Insecure protocol option enabled for OpenSSH
id: 2005
Expand All @@ -237,17 +197,7 @@
terminal_title: |
Here are the steps to resolve this issue.
terminal_code: |
Find your sshd_config file
$ sudo find /etc -iname sshd_config

Open the file above in your favorite editor
$ sudo vim /path/to/sshd_config

Find the line that says 'Protocol', and change it into 'Protocol 2'.
If the line does not exist, add it. Also, please note that lines starting with '#' are disabled

Once you've added the line, make sure to restart SSH by running
$ sudo service ssh restart
$ sudo wott-agent patch openssh-protocol

- title: Automatic security updates not enabled
id: 6
Expand Down