gitextract_rjb5s7i2/ ├── .editorconfig ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ └── workflows/ │ └── publiccode-yml-validation.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── FAQ ├── HAPPY_USERS.md ├── INSTALL ├── LICENSE ├── README ├── README.md ├── SECURITY.md ├── TODO.md ├── db/ │ └── languages/ │ ├── az │ ├── cn │ ├── da │ ├── de │ ├── en │ ├── es │ ├── fi │ ├── fr │ ├── gr │ ├── he │ ├── hu │ ├── id │ ├── it │ ├── ja │ ├── ko │ ├── nb-NO │ ├── nl │ ├── pl │ ├── pt │ ├── ru │ ├── se │ ├── sk │ └── tr ├── default.prf ├── developer.prf ├── extras/ │ ├── README │ ├── bash_completion.d/ │ │ └── lynis │ ├── build-lynis.sh │ ├── check-lynis.sh │ ├── lynis.spec │ ├── openbsd/ │ │ └── +CONTENTS │ ├── systemd/ │ │ ├── lynis.service │ │ └── lynis.timer │ └── travis-ci/ │ └── before_script.sh ├── include/ │ ├── binaries │ ├── consts │ ├── data_upload │ ├── functions │ ├── helper_audit_dockerfile │ ├── helper_configure │ ├── helper_generate │ ├── helper_show │ ├── helper_system_remote_scan │ ├── helper_update │ ├── osdetection │ ├── parameters │ ├── profiles │ ├── report │ ├── tests_accounting │ ├── tests_authentication │ ├── tests_banners │ ├── tests_boot_services │ ├── tests_containers │ ├── tests_crypto │ ├── tests_custom.template │ ├── tests_databases │ ├── tests_dns │ ├── tests_file_integrity │ ├── tests_file_permissions │ ├── tests_filesystems │ ├── tests_firewalls │ ├── tests_hardening │ ├── tests_homedirs │ ├── tests_insecure_services │ ├── tests_kerberos │ ├── tests_kernel │ ├── tests_kernel_hardening │ ├── tests_ldap │ ├── tests_logging │ ├── tests_mac_frameworks │ ├── tests_mail_messaging │ ├── tests_malware │ ├── tests_memory_processes │ ├── tests_nameservices │ ├── tests_networking │ ├── tests_php │ ├── tests_ports_packages │ ├── tests_printers_spoolers │ ├── tests_scheduling │ ├── tests_shells │ ├── tests_snmp │ ├── tests_squid │ ├── tests_ssh │ ├── tests_storage │ ├── tests_storage_nfs │ ├── tests_system_integrity │ ├── tests_time │ ├── tests_tooling │ ├── tests_usb │ ├── tests_virtualization │ ├── tests_webservers │ └── tool_tips ├── lynis ├── lynis.8 ├── plugins/ │ ├── README │ ├── custom_plugin.template │ ├── plugin_pam_phase1 │ └── plugin_systemd_phase1 └── publiccode.yml