-
Couldn't load subscription status.
- Fork 1k
Cis v1.8.0 #574
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Cis v1.8.0 #574
Conversation
It also update the ID of other test of section 2
(some where /bin/bash and other /bin/sh)
|
Don't know if anyone still merges this or what the plans are. But I found an issue in the old benchmark script. It is ambiguously defined in the 1.6.0 specification as well. And this script does something completely weird. It is now clear in the 1.8.0 specification. Long story short: Longer story: If you want me to look into it or do a PR (also for 1.6.0) please let me know. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR adds support for CIS benchmark v1.8.0, updating the Docker security testing framework. It introduces a new devicemapper storage driver check, updates the container restart policy check to be more comprehensive, and reorganizes test numbering to accommodate the new check.
- Added new check 2.7 for devicemapper storage driver detection
- Enhanced check 5.15 to validate both restart policy type and max attempts
- Updated all test references and documentation to reflect new numbering scheme
Reviewed Changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| tests/2_docker_daemon_configuration.sh | Added new check 2.7 for devicemapper storage driver and renumbered subsequent checks |
| tests/5_container_runtime.sh | Enhanced check 5.15 to validate restart policy name in addition to max attempts |
| tests/1_host_configuration.sh | Fixed description text from "docker.socket" to "docker.sock" |
| functions/functions_lib.sh | Changed shebang to bash, added level1 function implementations, and updated CIS control mappings |
| docker-bench-security.sh | Updated example commands to use bash instead of sh |
| README.md | Updated version table, command examples, and added comprehensive test subset documentation |
| Dockerfile | Updated base image, added bash package, and changed entrypoint to use bash |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
| fi | ||
|
|
||
| if [ "$restart_policy" -gt "5" ]; then | ||
| if [ "$maxAttempts" -gt "5" ] || [ "$restart_policy" != "on-failure" ]; then |
Copilot
AI
Oct 13, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The numeric comparison may fail if $maxAttempts is empty or contains non-numeric values. Consider adding a check to ensure the variable contains a valid number before comparison.
| if [ "$maxAttempts" -gt "5" ] || [ "$restart_policy" != "on-failure" ]; then | |
| if { [ -n "$maxAttempts" ] && echo "$maxAttempts" | grep -Eq '^[0-9]+$' && [ "$maxAttempts" -gt "5" ]; } || [ "$restart_policy" != "on-failure" ]; then |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok with -n but not with regex validation since the API always return a number as per documentation.
BUT the doc and exemples are unclear if the value is :
- always returned
- 0 if the restart policy is different than "on-failure" in which cases the value don't make sense.
|
@nikjoesta good catch, I didn't notice that. I did change the file name in the rule 1.1.9. |
Add support for Cis benchmark v1.8.0
close #573