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

Latest commit

 

History

History
33 lines (18 loc) · 1.22 KB

README.md

File metadata and controls

33 lines (18 loc) · 1.22 KB

WCA

Web Configuration Auditor: Perform a fully automated secure configuration review using the CIS referential.

Code base analysis via Continuous Integration

via GitHub Actions and GitHub Dependabot

code_static_analysis_and_os_compatibility_tests

test_iis_config_extraction

dependabot

Objective, architecture and decision

See here.

HowTo procedures

See here.

Execution error knowledge-base

Expecting value: line 1 column 1 (char 0)

The file read is encoded using UTF8 BOM encoding.

Convert it to UTF8 (No BOM) encoding, for example, using the following Linux shell command (source):

$ tail -c +4 withBOM.txt > withoutBOM.txt