Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)](LICENSE)

A structure-aware CONtainer FUZZing tool for container images that can generate
malformed container images.
Expand Down Expand Up @@ -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
```

Expand Down