mirror of
https://github.com/ovh/debian-cis.git
synced 2024-11-22 21:47:02 +01:00
Fixed 6.15 netstat analysis
This commit is contained in:
parent
22fcd6ca74
commit
6e366172f8
@ -14,7 +14,8 @@ set -u # One variable unset, it's over
|
|||||||
# This function will be called if the script status is on enabled / audit mode
|
# This function will be called if the script status is on enabled / audit mode
|
||||||
audit () {
|
audit () {
|
||||||
info "Checking netport ports opened"
|
info "Checking netport ports opened"
|
||||||
eval 'RESULT=$(netstat -an | grep LIST | grep ":25[[:space:]]")'
|
RESULT=$(netstat -an | grep LIST | grep ":25[[:space:]]") || :
|
||||||
|
RESULT=${RESULT:-}
|
||||||
debug "Result is $RESULT"
|
debug "Result is $RESULT"
|
||||||
if [ -z "$RESULT" ]; then
|
if [ -z "$RESULT" ]; then
|
||||||
ok "Nothing listens on 25 port, probably unix socket configured"
|
ok "Nothing listens on 25 port, probably unix socket configured"
|
||||||
@ -31,7 +32,8 @@ audit () {
|
|||||||
# This function will be called if the script status is on enabled mode
|
# This function will be called if the script status is on enabled mode
|
||||||
apply () {
|
apply () {
|
||||||
info "Checking netport ports opened"
|
info "Checking netport ports opened"
|
||||||
eval 'RESULT=$(netstat -an | grep LIST | grep ":25[[:space:]]")'
|
RESULT=$(netstat -an | grep LIST | grep ":25[[:space:]]") || :
|
||||||
|
RESULT=${RESULT:-}
|
||||||
debug "Result is $RESULT"
|
debug "Result is $RESULT"
|
||||||
if [ -z "$RESULT" ]; then
|
if [ -z "$RESULT" ]; then
|
||||||
ok "Nothing listens on 25 port, probably unix socket configured"
|
ok "Nothing listens on 25 port, probably unix socket configured"
|
||||||
|
Loading…
Reference in New Issue
Block a user