From 32f9573e79228b549a14425bc635bd8feb9420f1 Mon Sep 17 00:00:00 2001 From: Yan Date: Tue, 5 Nov 2024 02:22:39 -0700 Subject: [PATCH] remove verify-module in favor of --module for pwnshop verify --- Dockerfile | 1 + pwnshop/__main__.py | 76 ++++++++++++++++++++++++++------------------- tests/test.sh | 2 +- 3 files changed, 46 insertions(+), 33 deletions(-) diff --git a/Dockerfile b/Dockerfile index b7c838a..d7effe7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,6 +27,7 @@ RUN apt-get update && xargs apt-get install --no-install-recommends -yqq < /tmp/out +( pwnshop verify -m example_module || true ) > /tmp/out cat /tmp/out | grep "SUCCEEDED: ShellExample" cat /tmp/out | grep "SUCCEEDED: ShellOptimized" cat /tmp/out | grep "FAILED: ShellBadVerifier"