From 83b0d44cee1487ed56e66f07079e116f3c33a54d Mon Sep 17 00:00:00 2001 From: Roaa Sakr Date: Wed, 7 Jan 2026 12:14:12 -0800 Subject: [PATCH 1/2] update instructions for fuzzing Signed-off-by: Roaa Sakr --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 09f03eb..08433ff 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # confuzzled 😵‍💫 [![Build & Test](https://github.com/romoh/confuzzled/actions/workflows/build.yml/badge.svg?label=Build%20%26%20Test)](https://github.com/romoh/confuzzled/actions/workflows/build.yml) +[!License MIT](https://img.shields.io/badge/License-MIT-blue.svg) A structure-aware CONtainer FUZZing tool for container images that can generate malformed container images. @@ -201,8 +202,11 @@ confuzzled generate \ # 2. Test each image against container runtime for dir in ./corpus/fuzzed-*; do echo "Testing $dir..." - skopeo copy "oci:$dir" docker-daemon:test:fuzz 2>&1 || echo "REJECTED by skopeo" - docker run --rm test:fuzz echo ok 2>&1 || echo "REJECTED by docker" + if skopeo copy "oci:$dir" docker-daemon:test:fuzz 2>&1; then + docker run --rm test:fuzz echo ok 2>&1 || echo "REJECTED by docker" + else + echo "REJECTED by skopeo" + fi done ``` From 9bddc4a8312d49492cef435aa63fe3b84aaf32f9 Mon Sep 17 00:00:00 2001 From: Roaa Sakr Date: Wed, 7 Jan 2026 12:18:23 -0800 Subject: [PATCH 2/2] fix license link Signed-off-by: Roaa Sakr --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 08433ff..6a10035 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # confuzzled 😵‍💫 [![Build & Test](https://github.com/romoh/confuzzled/actions/workflows/build.yml/badge.svg?label=Build%20%26%20Test)](https://github.com/romoh/confuzzled/actions/workflows/build.yml) -[!License MIT](https://img.shields.io/badge/License-MIT-blue.svg) +[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE) A structure-aware CONtainer FUZZing tool for container images that can generate malformed container images.