From 53bedc4cc6803760379b42698385ae05deb03e77 Mon Sep 17 00:00:00 2001 From: Richard Liu Date: Mon, 18 Mar 2024 17:56:38 -0500 Subject: [PATCH] add solve --- chals/crypto/not_so_easy_ecc/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/chals/crypto/not_so_easy_ecc/Dockerfile b/chals/crypto/not_so_easy_ecc/Dockerfile index 1e00116..b096ced 100644 --- a/chals/crypto/not_so_easy_ecc/Dockerfile +++ b/chals/crypto/not_so_easy_ecc/Dockerfile @@ -10,6 +10,7 @@ WORKDIR /chal COPY chal.py ./ COPY mini_ecdsa.py ./ COPY tonelli_shanks.py ./ +COPY flag.py ./ RUN chmod 555 chal.py USER chal