diff --git a/include/tests_storage b/include/tests_storage index 06d08c61..c6b05cab 100644 --- a/include/tests_storage +++ b/include/tests_storage @@ -61,7 +61,6 @@ AddHP 3 3 fi - LogText "Test: Checking USB devices authorization to connect to the system" FOUND=0 USBDEVICESPATH="/sys/bus/usb/devices/usb" @@ -70,24 +69,26 @@ if [ `cat "${device}/authorized_default"` -eq 1 ]; then FOUND=1 LogText "Test: ${device} is authorized by default" + report "usb_authorized_default_device[]=${device}" elif [ `cat "${device}/authorized"` -eq 1 ]; then FOUND=1 - LogText "Test: ${device} is authorized for now" + LogText "Test: ${device} is authorized currently" + report "usb_authorized_device[]=${device}" fi fi done if [ ${FOUND} -eq 1 ]; then - LogText "Result: Some USB devices are authorized by default or temporary to connect to the system" + LogText "Result: Some USB devices are authorized by default (or temporary) to connect to the system" Display --indent 2 --text "- Checking USB devices authorization" --result "ENABLED" --color RED - ReportSuggestion ${TEST_NO} "Disable USB devices authorization, to prevent unauthorized storage or data theft" + # To-Be-Added: create documentation and enable the suggestion + #ReportSuggestion ${TEST_NO} "Disable USB devices authorization, to prevent unauthorized storage or data theft" AddHP 0 3 else - LogText "Result: None USB devices are authorized by default or temporary to connect to the system" + LogText "Result: None USB devices are authorized by default (or temporary) to connect to the system" Display --indent 2 --text "- Checking USB devices authorization" --result "DISABLED" --color GREEN AddHP 3 3 fi - fi # #################################################################################