From a0e045c021d0577c3ac42072d238854e5309bea0 Mon Sep 17 00:00:00 2001 From: cairo <101215230+cairoeth@users.noreply.github.com> Date: Sat, 16 Mar 2024 02:10:47 -0500 Subject: [PATCH] Update team_provider.py --- paradigmctf.py/ctf_launchers/team_provider.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paradigmctf.py/ctf_launchers/team_provider.py b/paradigmctf.py/ctf_launchers/team_provider.py index 0ea5b72..ebfcd8d 100644 --- a/paradigmctf.py/ctf_launchers/team_provider.py +++ b/paradigmctf.py/ctf_launchers/team_provider.py @@ -43,7 +43,7 @@ def __check_ticket(self, ticket: str) -> Ticket: std_base64chars = "0123456789" custom = "0629851743" - key = b'G69S2TR9MBg3NI9FTGzAfJh3xn549mswWtL6fB66m2Q=' + key = b'SsfrHv5cpJ3wpunuWJUmS3cZ7OBAhV0qf6aOJLINbNI=' decrypted = decrypt(ticket, key).decode() x = decrypted.translate(str(ticket).maketrans(custom, std_base64chars))