From 5d962a3be10d14cf4ec451c6716924f8e49ee24a Mon Sep 17 00:00:00 2001 From: Adam Doupe Date: Tue, 6 Aug 2024 14:26:58 +0000 Subject: [PATCH] Put back walkthrough! --- pwnshop/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pwnshop/__main__.py b/pwnshop/__main__.py index 0e484c4..2123989 100644 --- a/pwnshop/__main__.py +++ b/pwnshop/__main__.py @@ -74,7 +74,7 @@ def handle_verify(args, challenge): return verify_challenge(challenge, debug=args.debug, flag=args.flag, strace=args.strace) def handle_verify_module(args): - for n,c in enumerate(c(seed=args.seed, walthrough=args.walkthrough) for c in pwnshop.MODULE_LEVELS[args.module]): + for n,c in enumerate(c(seed=args.seed, walkthrough=args.walkthrough) for c in pwnshop.MODULE_LEVELS[args.module]): print(f"Verifying {args.module} level {n+1}.") verify_challenge(c, debug=args.debug, flag=args.flag, strace=args.strace)