From 097ff3229f55921ec156401e4c0e7974f1e08bb0 Mon Sep 17 00:00:00 2001 From: "@trimstray" Date: Tue, 29 Jan 2019 01:10:09 +0100 Subject: [PATCH] fixed typos --- README.md | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 68fa663..1ed4c02 100644 --- a/README.md +++ b/README.md @@ -591,21 +591,26 @@ proc /proc proc defaults,hidepid=2 0 0 | Secure `/proc` filesystem with `hidepid=2` option | :black_square_button: | :black_square_button: | ## Services + ### Disable all unnecessary services -The action in this section provide guidance on some of unwanted applications and services which you might not needed but they are installed by default during OS installation and unknowingly start eating your system resources and also threats to the system security.If unused services is not enabled then it cannot be exploited. + +The action in this section provide guidance on some of unwanted applications and services which you might not needed but they are installed by default during OS installation and unknowingly start eating your system resources and also threats to the system security. If unused services is not enabled then it cannot be exploited. + #### :eight_pointed_black_star: Common Unix Print System -The Common Unix Print System (CUPS) provides the ability to print to both local and -network printers.If the system does not need to accept print jobs from other systems, it's recommended that CUPS be disabled to reduce the potential attack. +The Common Unix Print System (CUPS) provides the ability to print to both local and network printers. If the system does not need to accept print jobs from other systems, it's recommended that CUPS be disabled to reduce the potential attack. Run the following command to verify cups is not enabled: -``` + +```bash # systemctl is-enabled cups disabled ``` -Run the following command to disable cups : -``` +Run the following command to disable cups: + +```bash # systemctl disable cups ``` -References: http://www.cups.org + +[Source](http://www.cups.org)