Skip to content

Instantly share code, notes, and snippets.

View lior5654's full-sized avatar
🎯
Focusing

Lior Yehezkely lior5654

🎯
Focusing
  • Kfar Yehoshua, Jezreel Valley, Israel
View GitHub Profile
@lior5654
lior5654 / solution.py
Created April 9, 2022 21:16
Solution to PlaidCTF 2022 Process Sample | by H4K47L4N1M
# made by H4K47L4N1M | @lior5654
from typing import Text, List
from sage.all import *
# Constants
ALPHABET = "ABCDEFGHIJKLMNOPQRSTUVWXYZ_!?"
INV_ALPHABET = {c: i for i, c in enumerate(ALPHABET)}