picoCTF

【picoCTF】~logon~ WriteUp

問題文 The factory is hiding things from all of its users. Can you login as Joe and find what they've been looking at? https://jupiter.challenges.picoctf.org/problem/15796/ (link) or http://jupiter.challenges.picoctf.org:15796 WriteUp user…

【picoCTF】~Cookies~ WriteUp

問題文 Who doesn't love cookies? Try to figure out the best one. http://mercury.picoctf.net:29649/ WriteUp 「Search」ボタンを押下して、Cookieを確認する。 name=-1が設定されている。 コントロールにsnickerdoodleと表示されているので、そのまま入…

【picoCTF】~Mind your Ps and Qs~ WriteUp

問題文 In RSA, a small e value can be problematic, but what about N? Can you decrypt this? values valuesファイルが与えられる。 Decrypt my super sick RSA: c: 861270243527190895777142537838333832920579264010533029282104230006461420086153423 …

【picoCTF】~Mode26~ WriteUp

Mode26 Cryptography can be easy, do you know what ROT13 is? ROT13ということなので、素直に13文字づらす。 text = input() SHIFT_AMOUNT = 13 ALPHABET_SIZE = 26 def rot13(target: str) -> str: if 'a' <= target <= 'z': shifted_char = (ord(target)…