Feature/lab12#903
Open
KsAKarpeeva73 wants to merge 42 commits into
Open
Conversation
Feature/lab1
Feature/lab2
Feature/lab3
docs: add lab4 submission
Feature/lab5
docs: add lab6 submission
finish 7 lab
fnish lab10
docs: add lab8 submission
## Goal Finish Lab 9 by performing DevSecOps security scans with OWASP ZAP and Trivy, then documenting the findings. ## Changes - Added labs/submission9.md with DevSecOps scan results and analysis - Ran OWASP ZAP baseline scan against OWASP Juice Shop - Documented Medium risk web vulnerabilities and security headers status - Ran Trivy scan for the bkimminich/juice-shop container image - Documented HIGH and CRITICAL container vulnerabilities - Added screenshots of ZAP report and Trivy findings - Included analysis and CI/CD integration reflection ## Testing - [x] OWASP Juice Shop was deployed and verified locally - [x] OWASP ZAP baseline scan completed successfully - [x] ZAP HTML report was generated and analyzed - [x] Trivy container image scan completed successfully - [x] HIGH and CRITICAL vulnerabilities were documented - [x] Screenshots are included as evidence - [x] Documentation is complete and updated ## Lab Checklist - [x] Task 1 β Web Application Scanning with OWASP ZAP - [x] Task 2 β Container Vulnerability Scanning with Trivy
## Goal Finish Lab 11 by demonstrating reproducible builds with Nix, reproducible Docker images, and modern Nix Flakes. ## Changes - Added labs/submission11.md with Nix build results and analysis - Added a simple Go application for reproducible build testing - Added default.nix for building the Go binary with Nix - Added docker.nix for building a reproducible Docker image with dockerTools - Added traditional Dockerfiles for comparison - Added flake.nix and flake.lock for the bonus Flakes task - Documented store paths, SHA256 hashes, Docker image IDs, image sizes, and layer history - Included screenshots proving reproducibility and build results ## Testing - [x] Nix installation was verified - [x] Go application builds successfully with Nix - [x] Repeated Nix builds produced identical store paths - [x] Repeated Nix builds produced identical binary hashes - [x] Traditional Docker builds were compared against Nix builds - [x] Nix-built Docker image produced identical store paths and tarball hashes - [x] Docker image sizes and layer histories were compared - [x] Flake-based builds were tested - [x] Development shell was verified with nix develop - [x] Documentation is complete and updated ## Lab Checklist Platform: GitHub - [x] Task 1 β Build Reproducible Artifacts from Scratch - [x] Task 2 β Reproducible Docker Images with Nix - [x] Bonus Task β Modern Nix with Flakes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Goal
Finish Lab 12 by comparing traditional Docker containers and WASM containers using the same Go source code.
Changes
Testing
Lab Checklist
Key Achievement: Used the same main.go for both traditional Docker and WASM builds. Startup benchmarks were performed with MODE=once for both targets.