├── README.md └── ringzer0team ├── coding-challenges └── hash-me-if-you-can │ ├── README.md │ └── code.py ├── cryptography ├── file-recovery │ ├── README.md │ ├── c96ac47d3b5c62b67219113fe6524122.tar │ └── flag │ │ ├── flag.dec │ │ ├── flag.enc │ │ └── private.pem ├── martian-message-part-2 │ ├── README.md │ └── vigenere.py └── public-key-recovery │ ├── README.md │ ├── prikey.pem │ └── pubkey.pem ├── steganography ├── brainsick │ ├── 5411333e505440020a1799da6071851b.gif │ ├── README.md │ ├── flag.rar │ └── flag │ │ └── flag.gif ├── hidden-in-plain-sight │ ├── 618d0e51213fa164d93bd92ca5e099c3.txt │ ├── README.md │ ├── chal.hex │ ├── diff.txt │ ├── flag.txt │ ├── org.hex │ └── original.txt ├── look-inside-the-house │ ├── 3e634b3b5d0658c903fc8d42b033fa57.jpg │ ├── README.md │ └── flag.txt ├── missing-peaces │ ├── README.md │ ├── b730986ccddd83b5f6fb66d2ec362475.jpeg │ ├── qr-bw.png │ └── qr.png ├── sig-id-level-1 │ ├── README.md │ ├── hint.png │ ├── hint2.png │ ├── qr.png │ └── sonic.png ├── sig-id-level-2 │ └── README.md ├── taps-team-have-recorded-some-ghost-sound │ ├── 15d087d9cc86e82b87d0e5ce2cef8583.wav │ ├── README.md │ └── sonic.png ├── victor-reloaded │ ├── README.md │ ├── issues.txt │ ├── original.txt │ ├── ours.txt │ └── victors.txt ├── victor-youre-hiding-me-sth │ ├── README.md │ └── poetry.txt └── your-old-friend-orloge-simard │ ├── 135553e7dfe65469fcf69c167fd1979a.mp3 │ ├── README.md │ ├── flag-morse.png │ ├── morse.png │ └── sonic1.png └── web ├── headache ├── README.md └── flag.png ├── looking-for-password-file └── README.md └── words-mean-something └── README.md /README.md: -------------------------------------------------------------------------------- 1 | # ctf 2 | Solutions to CTF problems. 3 | -------------------------------------------------------------------------------- /ringzer0team/coding-challenges/hash-me-if-you-can/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/coding-challenges/hash-me-if-you-can/README.md -------------------------------------------------------------------------------- /ringzer0team/coding-challenges/hash-me-if-you-can/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/coding-challenges/hash-me-if-you-can/code.py -------------------------------------------------------------------------------- /ringzer0team/cryptography/file-recovery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/cryptography/file-recovery/README.md -------------------------------------------------------------------------------- /ringzer0team/cryptography/file-recovery/c96ac47d3b5c62b67219113fe6524122.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/cryptography/file-recovery/c96ac47d3b5c62b67219113fe6524122.tar -------------------------------------------------------------------------------- /ringzer0team/cryptography/file-recovery/flag/flag.dec: -------------------------------------------------------------------------------- 1 | FLAG-vOAM5ZcReMNzJqOfxLauakHx 2 | -------------------------------------------------------------------------------- /ringzer0team/cryptography/file-recovery/flag/flag.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/cryptography/file-recovery/flag/flag.enc -------------------------------------------------------------------------------- /ringzer0team/cryptography/file-recovery/flag/private.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/cryptography/file-recovery/flag/private.pem -------------------------------------------------------------------------------- /ringzer0team/cryptography/martian-message-part-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/cryptography/martian-message-part-2/README.md -------------------------------------------------------------------------------- /ringzer0team/cryptography/martian-message-part-2/vigenere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/cryptography/martian-message-part-2/vigenere.py -------------------------------------------------------------------------------- /ringzer0team/cryptography/public-key-recovery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/cryptography/public-key-recovery/README.md -------------------------------------------------------------------------------- /ringzer0team/cryptography/public-key-recovery/prikey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/cryptography/public-key-recovery/prikey.pem -------------------------------------------------------------------------------- /ringzer0team/cryptography/public-key-recovery/pubkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/cryptography/public-key-recovery/pubkey.pem -------------------------------------------------------------------------------- /ringzer0team/steganography/brainsick/5411333e505440020a1799da6071851b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/steganography/brainsick/5411333e505440020a1799da6071851b.gif -------------------------------------------------------------------------------- /ringzer0team/steganography/brainsick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/steganography/brainsick/README.md -------------------------------------------------------------------------------- /ringzer0team/steganography/brainsick/flag.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/steganography/brainsick/flag.rar -------------------------------------------------------------------------------- /ringzer0team/steganography/brainsick/flag/flag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/steganography/brainsick/flag/flag.gif -------------------------------------------------------------------------------- /ringzer0team/steganography/hidden-in-plain-sight/618d0e51213fa164d93bd92ca5e099c3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/steganography/hidden-in-plain-sight/618d0e51213fa164d93bd92ca5e099c3.txt -------------------------------------------------------------------------------- /ringzer0team/steganography/hidden-in-plain-sight/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/steganography/hidden-in-plain-sight/README.md -------------------------------------------------------------------------------- /ringzer0team/steganography/hidden-in-plain-sight/chal.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/steganography/hidden-in-plain-sight/chal.hex -------------------------------------------------------------------------------- /ringzer0team/steganography/hidden-in-plain-sight/diff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/steganography/hidden-in-plain-sight/diff.txt -------------------------------------------------------------------------------- /ringzer0team/steganography/hidden-in-plain-sight/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/steganography/hidden-in-plain-sight/flag.txt -------------------------------------------------------------------------------- /ringzer0team/steganography/hidden-in-plain-sight/org.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/steganography/hidden-in-plain-sight/org.hex -------------------------------------------------------------------------------- /ringzer0team/steganography/hidden-in-plain-sight/original.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/steganography/hidden-in-plain-sight/original.txt -------------------------------------------------------------------------------- /ringzer0team/steganography/look-inside-the-house/3e634b3b5d0658c903fc8d42b033fa57.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/steganography/look-inside-the-house/3e634b3b5d0658c903fc8d42b033fa57.jpg -------------------------------------------------------------------------------- /ringzer0team/steganography/look-inside-the-house/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/steganography/look-inside-the-house/README.md -------------------------------------------------------------------------------- /ringzer0team/steganography/look-inside-the-house/flag.txt: -------------------------------------------------------------------------------- 1 | FLAG-5jk682aqoepoi582r940oow 2 | -------------------------------------------------------------------------------- /ringzer0team/steganography/missing-peaces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/steganography/missing-peaces/README.md -------------------------------------------------------------------------------- /ringzer0team/steganography/missing-peaces/b730986ccddd83b5f6fb66d2ec362475.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/steganography/missing-peaces/b730986ccddd83b5f6fb66d2ec362475.jpeg -------------------------------------------------------------------------------- /ringzer0team/steganography/missing-peaces/qr-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/steganography/missing-peaces/qr-bw.png -------------------------------------------------------------------------------- /ringzer0team/steganography/missing-peaces/qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/steganography/missing-peaces/qr.png -------------------------------------------------------------------------------- /ringzer0team/steganography/sig-id-level-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/steganography/sig-id-level-1/README.md -------------------------------------------------------------------------------- /ringzer0team/steganography/sig-id-level-1/hint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/steganography/sig-id-level-1/hint.png -------------------------------------------------------------------------------- /ringzer0team/steganography/sig-id-level-1/hint2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/steganography/sig-id-level-1/hint2.png -------------------------------------------------------------------------------- /ringzer0team/steganography/sig-id-level-1/qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/steganography/sig-id-level-1/qr.png -------------------------------------------------------------------------------- /ringzer0team/steganography/sig-id-level-1/sonic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/steganography/sig-id-level-1/sonic.png -------------------------------------------------------------------------------- /ringzer0team/steganography/sig-id-level-2/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ringzer0team/steganography/taps-team-have-recorded-some-ghost-sound/15d087d9cc86e82b87d0e5ce2cef8583.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/steganography/taps-team-have-recorded-some-ghost-sound/15d087d9cc86e82b87d0e5ce2cef8583.wav -------------------------------------------------------------------------------- /ringzer0team/steganography/taps-team-have-recorded-some-ghost-sound/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/steganography/taps-team-have-recorded-some-ghost-sound/README.md -------------------------------------------------------------------------------- /ringzer0team/steganography/taps-team-have-recorded-some-ghost-sound/sonic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/steganography/taps-team-have-recorded-some-ghost-sound/sonic.png -------------------------------------------------------------------------------- /ringzer0team/steganography/victor-reloaded/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/steganography/victor-reloaded/README.md -------------------------------------------------------------------------------- /ringzer0team/steganography/victor-reloaded/issues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/steganography/victor-reloaded/issues.txt -------------------------------------------------------------------------------- /ringzer0team/steganography/victor-reloaded/original.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/steganography/victor-reloaded/original.txt -------------------------------------------------------------------------------- /ringzer0team/steganography/victor-reloaded/ours.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/steganography/victor-reloaded/ours.txt -------------------------------------------------------------------------------- /ringzer0team/steganography/victor-reloaded/victors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/steganography/victor-reloaded/victors.txt -------------------------------------------------------------------------------- /ringzer0team/steganography/victor-youre-hiding-me-sth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/steganography/victor-youre-hiding-me-sth/README.md -------------------------------------------------------------------------------- /ringzer0team/steganography/victor-youre-hiding-me-sth/poetry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/steganography/victor-youre-hiding-me-sth/poetry.txt -------------------------------------------------------------------------------- /ringzer0team/steganography/your-old-friend-orloge-simard/135553e7dfe65469fcf69c167fd1979a.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/steganography/your-old-friend-orloge-simard/135553e7dfe65469fcf69c167fd1979a.mp3 -------------------------------------------------------------------------------- /ringzer0team/steganography/your-old-friend-orloge-simard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/steganography/your-old-friend-orloge-simard/README.md -------------------------------------------------------------------------------- /ringzer0team/steganography/your-old-friend-orloge-simard/flag-morse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/steganography/your-old-friend-orloge-simard/flag-morse.png -------------------------------------------------------------------------------- /ringzer0team/steganography/your-old-friend-orloge-simard/morse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/steganography/your-old-friend-orloge-simard/morse.png -------------------------------------------------------------------------------- /ringzer0team/steganography/your-old-friend-orloge-simard/sonic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/steganography/your-old-friend-orloge-simard/sonic1.png -------------------------------------------------------------------------------- /ringzer0team/web/headache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/web/headache/README.md -------------------------------------------------------------------------------- /ringzer0team/web/headache/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/web/headache/flag.png -------------------------------------------------------------------------------- /ringzer0team/web/looking-for-password-file/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/web/looking-for-password-file/README.md -------------------------------------------------------------------------------- /ringzer0team/web/words-mean-something/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alirezaomidi/ctf/HEAD/ringzer0team/web/words-mean-something/README.md --------------------------------------------------------------------------------