├── 2020 ├── ASISCTF_Final │ ├── chloe.py │ └── coffeehouse.cpp ├── DownUnderCTF │ ├── LSBMSB.py │ ├── babyrsa.py │ ├── ceebc.py │ ├── cosmic_rays.py │ ├── extra_cbc.py │ ├── hex_shift_cipher.py │ ├── impeccable.py │ ├── l337crypt.py │ └── rot-i.py ├── InterKosenCTF │ ├── bitcrypto.py │ ├── ciphertexts.py │ ├── ochazuke.py │ ├── padrsa.py │ └── pressure.py ├── LeftoverHashLemma.pdf ├── N1CTF │ ├── babyproof.py │ ├── curve.py │ ├── easyrsa.py │ └── flagbot.py ├── PBCTF │ ├── findrbtree.py │ ├── leak.py │ ├── queensarah2.py │ ├── specialgift.py │ ├── specialgiftrevenge.py │ └── strongcipher.py ├── README.md ├── SECCONCTF │ ├── crypto01.py │ ├── koharu.py │ ├── sharsable.py │ └── urara.py └── TokyoWesternCTF │ ├── alice.py │ ├── circuilar.py │ ├── sqrt.py │ └── twind.py ├── 2021 ├── 0ctffinals │ ├── ezRSA.py │ └── ezRSAplus.py ├── 0ctfquals │ ├── zer0lfsr_minus.py │ ├── zer0lfsr_plus(A).cpp │ └── zer0lfsr_plus.py ├── 0x41CTF │ └── soul_permutation_network.py ├── ACSC │ ├── RSA_stream.py │ ├── cbcbc.py │ ├── shareflag.py │ ├── swap_on_curve.py │ ├── two_rabin.py │ └── wonderful_hash.py ├── ASISCTFQuals │ ├── lagleg.py │ ├── madras.py │ ├── pinhole.py │ └── spiritual.py ├── AeroCTF │ ├── boggart.py │ └── horcrux.py ├── CryptoCTF │ ├── DoRSA.py │ ├── ecchimera.py │ ├── elegantcurve.py │ ├── farm.py │ ├── ferman.py │ ├── improved.py │ ├── linda.py │ ├── maid.py │ ├── miniecc.py │ ├── polish.py │ ├── rima.py │ ├── titu.py │ └── triplet.py ├── DiophantineArgumentofKnowledge.pdf ├── DragonCTF │ └── CRC_warmup.py ├── GoogleCTF │ ├── H1.py │ ├── pythia.py │ ├── story.py │ ├── tiramisu.py │ └── tonality.py ├── HITCONCTF │ ├── alittlersa.py │ ├── eznotrsa.py │ ├── magicdlog.py │ ├── magicrsa.py │ ├── soeasyrsa.py │ └── stillnotrsa.py ├── HTBCyberApocalypse │ ├── forge.py │ ├── hyper_metroid.py │ ├── rsajam.py │ ├── super_metroid.py │ └── whii_phit.py ├── LINECTF │ ├── babycrypto1.py │ ├── babycrypto2.py │ ├── babycrypto3.py │ └── babycrypto4.py ├── N1CTF │ ├── babydefi.ts │ ├── babydefiexploit.sol │ ├── checkin.py │ ├── n1ogin.py │ ├── n1token1.py │ └── n1token2.py ├── OMHCTF │ ├── almostperfect.py │ ├── ans.txt │ ├── csprng.py │ ├── jamal.py │ ├── playingcard.py │ ├── res.txt │ └── towerpower.py ├── RCTF │ └── uncommon2.py ├── README.md ├── RealWorldCTF │ └── homebrew.py ├── SECCONCTF │ ├── OOOO.py │ ├── XXX.py │ ├── qchecker.py │ └── signwars.py ├── SSTF │ ├── RC4.md │ ├── RC4.py │ ├── RSA101.md │ ├── RSA101.py │ ├── decrypt_tls.md │ ├── decrypt_tls.py │ ├── license.md │ ├── license.py │ ├── melorean.md │ └── melorean.py ├── SecurinetsCTF │ ├── mitm.py │ ├── mitm_revenge.py │ ├── shilaformi.py │ ├── signit.py │ └── special.py ├── TSGCTF │ ├── babaisflag.py │ ├── beginnercrypto.py │ ├── flagiswin.py │ ├── lumberjack.py │ ├── lumberjackv2.py │ ├── minimalist.py │ └── thisisdsa.py ├── TetCTF │ ├── uncollidable.py │ ├── unevaluated.py │ └── unimplemented.py ├── angstromCTF │ ├── RSA.py │ ├── exclusive.py │ ├── follow.py │ ├── homeroll.py │ ├── others.txt │ ├── sorandom.py │ └── substitution.py ├── corCTF │ ├── LCGk.py │ ├── cards.py │ ├── friedrice.py │ └── stream.py ├── downunderCTF │ ├── connectthedots.cpp │ ├── connectthedots.py │ ├── flagloader.py │ ├── l33tcryptv2.py │ ├── powersign.py │ └── yadlp.py ├── hackluCTF │ ├── ollvm_post_reversing.py │ ├── silverwater.py │ └── whatthehecc.py ├── hkcertCTF │ ├── freerider.py │ ├── keybackup1.py │ └── keybackup2.py ├── hxpCTF │ ├── A.py │ ├── B.py │ ├── C.py │ ├── D.py │ └── data25.txt ├── inCTF │ ├── baggage.py │ ├── ezexchange.py │ ├── rightnowgenerator.py │ └── troublepair.py ├── midnightsunCTFqual │ ├── blueberry.py │ ├── dbcsig64434.py │ ├── frank.py │ └── ocat_024.py ├── pbctf │ ├── GoodHash.py │ ├── PRNG.py │ ├── YetAnotherRSA.sage │ ├── binarytree.cpp │ └── seedme.py ├── plaidCTF │ ├── leakyblock.py │ ├── leakyblock_simpler.py │ └── xorsa.py ├── pwn2winCTF │ ├── clador.py │ ├── julia.py │ ├── lostexpo.py │ └── toorare.py ├── rarCTF │ ├── A3S.py │ ├── SSS.py │ ├── babycrypt.py │ ├── miniA3S.py │ ├── randompad.py │ ├── rotoRSA.py │ └── snore.py ├── s4CTF │ ├── babyrsa.py │ ├── babyxor.py │ ├── determinant.py │ ├── genie.py │ ├── khayyam.py │ ├── malady.py │ ├── phillip.py │ ├── pts.py │ └── tom.py ├── starCTF │ ├── guesskey2.py │ ├── littlecase.py │ ├── mycurve.py │ └── myenc.py ├── unionCTF │ ├── cr0wnst3rling.py │ ├── humanserver.py │ ├── mordellprimes.py │ ├── neoclassical.py │ └── whyisaraven.py ├── volgaCTFqual │ └── carry.py ├── zer0ptsCTF │ ├── 3-aes.py │ ├── OTorNOTOT.py │ ├── easypseudorandom.py │ ├── janken vs yoshiking.py │ ├── notmordellprimes.py │ ├── puredivision.py │ ├── tokyonetwork.py │ └── warsamup.py └── zh3roCTF │ ├── alice_bob_dave.py │ ├── chaos.py │ ├── injection.py │ ├── numpyMT.py │ ├── real_mersenne.py │ ├── sourceless.py │ └── twist.py ├── 2022 ├── 0CTF │ ├── FakeNFT.json │ ├── FakeNFT.sol │ ├── FoundrySolve.sol │ ├── TctfMarket.json │ ├── TctfNFT.json │ ├── TctfToken.json │ ├── ezRSA+++.py │ └── solve.ts ├── BlackHatMEA │ ├── Day1 │ │ ├── ursa │ │ │ ├── chall.py │ │ │ ├── finish.py │ │ │ └── solve.py │ │ └── webbed │ │ │ ├── app.py │ │ │ ├── solve.py │ │ │ └── solve_remote.py │ ├── Day2 │ │ ├── BeastlyVault │ │ │ ├── app.py │ │ │ └── solve_remote.py │ │ └── ECPC │ │ │ ├── chall.py │ │ │ └── solve.py │ └── Day3 │ │ ├── lweke │ │ ├── chall.py │ │ └── solve.py │ │ └── shopping │ │ ├── chall.py │ │ └── solve.py ├── CODEGATE Finals │ ├── CODEGATE2022Finals-CryptanalysisSummer │ │ ├── challenge │ │ │ └── challenge.py │ │ └── exploit │ │ │ ├── README.md │ │ │ └── solve.py │ └── CODEGATE2022Finals-LookItUp │ │ ├── challenge │ │ ├── Challenge.sol │ │ ├── README.md │ │ └── Setup.sol │ │ └── exploit │ │ ├── ExploitScript.sol │ │ └── README.md ├── CODEGATE Qual │ ├── dark-arts-chal.py │ └── dark-arts-exploit.py ├── CryptoCTF │ ├── aniely.py │ ├── baphomet.py │ ├── gsdp.py │ ├── infinitycastle.py │ ├── keydream.py │ ├── klamkin.py │ ├── lagima.py │ ├── larisa.py │ ├── mino.py │ ├── nlcs.cpp │ ├── persiancat.py │ ├── polyrsa.py │ ├── shaim.py │ ├── sidestep.py │ ├── soda.py │ ├── starterecc.py │ ├── volgo.py │ └── waterysoup.py ├── FCSC │ ├── Gaston.py │ ├── T-Rex.py │ ├── hash-ish.py │ ├── iznogood.cpp │ ├── shuffled.py │ └── tailor.py ├── HITCON2022 │ ├── EasyNTRU.py │ ├── babysss.py │ ├── chimera.py │ ├── secret.py │ └── superprime.py ├── SECCON │ ├── BBB │ │ ├── fin.py │ │ └── solve.py │ ├── PQPQ │ │ └── solve.py │ ├── insufficient │ │ └── solve.py │ ├── noise │ │ └── solve.py │ └── symmetric │ │ ├── solve.py │ │ └── solve_remote.py ├── TetCTF │ ├── algebra.py │ ├── fault.py │ ├── shares.py │ └── sharesv2.py ├── WAConFinals │ ├── rsa-permutation-chall.py │ └── rsa-permutation-solve.py └── WAConQual │ ├── rsa-secret-sharing-chal.py │ └── rsa-secret-sharing-exploit.py ├── 2023 ├── .DS_Store ├── HTMCTF │ ├── .DS_Store │ ├── dphienc.py │ ├── oracle.py │ ├── sushi1.py │ └── sushi2.sage ├── PBCTF │ ├── remake-solution │ │ ├── flag │ │ ├── solve.sage │ │ ├── solve3.sage │ │ └── solve_12.sage │ └── remake │ │ ├── output.txt │ │ └── task.sage └── SECCON-Finals │ ├── .DS_Store │ ├── auth.py │ ├── hell.sage │ ├── koth-round2.py │ └── prng.py ├── .DS_Store └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/.DS_Store -------------------------------------------------------------------------------- /2020/ASISCTF_Final/chloe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2020/ASISCTF_Final/chloe.py -------------------------------------------------------------------------------- /2020/ASISCTF_Final/coffeehouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2020/ASISCTF_Final/coffeehouse.cpp -------------------------------------------------------------------------------- /2020/DownUnderCTF/LSBMSB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2020/DownUnderCTF/LSBMSB.py -------------------------------------------------------------------------------- /2020/DownUnderCTF/babyrsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2020/DownUnderCTF/babyrsa.py -------------------------------------------------------------------------------- /2020/DownUnderCTF/ceebc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2020/DownUnderCTF/ceebc.py -------------------------------------------------------------------------------- /2020/DownUnderCTF/cosmic_rays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2020/DownUnderCTF/cosmic_rays.py -------------------------------------------------------------------------------- /2020/DownUnderCTF/extra_cbc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2020/DownUnderCTF/extra_cbc.py -------------------------------------------------------------------------------- /2020/DownUnderCTF/hex_shift_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2020/DownUnderCTF/hex_shift_cipher.py -------------------------------------------------------------------------------- /2020/DownUnderCTF/impeccable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2020/DownUnderCTF/impeccable.py -------------------------------------------------------------------------------- /2020/DownUnderCTF/l337crypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2020/DownUnderCTF/l337crypt.py -------------------------------------------------------------------------------- /2020/DownUnderCTF/rot-i.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2020/DownUnderCTF/rot-i.py -------------------------------------------------------------------------------- /2020/InterKosenCTF/bitcrypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2020/InterKosenCTF/bitcrypto.py -------------------------------------------------------------------------------- /2020/InterKosenCTF/ciphertexts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2020/InterKosenCTF/ciphertexts.py -------------------------------------------------------------------------------- /2020/InterKosenCTF/ochazuke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2020/InterKosenCTF/ochazuke.py -------------------------------------------------------------------------------- /2020/InterKosenCTF/padrsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2020/InterKosenCTF/padrsa.py -------------------------------------------------------------------------------- /2020/InterKosenCTF/pressure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2020/InterKosenCTF/pressure.py -------------------------------------------------------------------------------- /2020/LeftoverHashLemma.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2020/LeftoverHashLemma.pdf -------------------------------------------------------------------------------- /2020/N1CTF/babyproof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2020/N1CTF/babyproof.py -------------------------------------------------------------------------------- /2020/N1CTF/curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2020/N1CTF/curve.py -------------------------------------------------------------------------------- /2020/N1CTF/easyrsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2020/N1CTF/easyrsa.py -------------------------------------------------------------------------------- /2020/N1CTF/flagbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2020/N1CTF/flagbot.py -------------------------------------------------------------------------------- /2020/PBCTF/findrbtree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2020/PBCTF/findrbtree.py -------------------------------------------------------------------------------- /2020/PBCTF/leak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2020/PBCTF/leak.py -------------------------------------------------------------------------------- /2020/PBCTF/queensarah2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2020/PBCTF/queensarah2.py -------------------------------------------------------------------------------- /2020/PBCTF/specialgift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2020/PBCTF/specialgift.py -------------------------------------------------------------------------------- /2020/PBCTF/specialgiftrevenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2020/PBCTF/specialgiftrevenge.py -------------------------------------------------------------------------------- /2020/PBCTF/strongcipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2020/PBCTF/strongcipher.py -------------------------------------------------------------------------------- /2020/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2020/README.md -------------------------------------------------------------------------------- /2020/SECCONCTF/crypto01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2020/SECCONCTF/crypto01.py -------------------------------------------------------------------------------- /2020/SECCONCTF/koharu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2020/SECCONCTF/koharu.py -------------------------------------------------------------------------------- /2020/SECCONCTF/sharsable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2020/SECCONCTF/sharsable.py -------------------------------------------------------------------------------- /2020/SECCONCTF/urara.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2020/SECCONCTF/urara.py -------------------------------------------------------------------------------- /2020/TokyoWesternCTF/alice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2020/TokyoWesternCTF/alice.py -------------------------------------------------------------------------------- /2020/TokyoWesternCTF/circuilar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2020/TokyoWesternCTF/circuilar.py -------------------------------------------------------------------------------- /2020/TokyoWesternCTF/sqrt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2020/TokyoWesternCTF/sqrt.py -------------------------------------------------------------------------------- /2020/TokyoWesternCTF/twind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2020/TokyoWesternCTF/twind.py -------------------------------------------------------------------------------- /2021/0ctffinals/ezRSA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/0ctffinals/ezRSA.py -------------------------------------------------------------------------------- /2021/0ctffinals/ezRSAplus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/0ctffinals/ezRSAplus.py -------------------------------------------------------------------------------- /2021/0ctfquals/zer0lfsr_minus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/0ctfquals/zer0lfsr_minus.py -------------------------------------------------------------------------------- /2021/0ctfquals/zer0lfsr_plus(A).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/0ctfquals/zer0lfsr_plus(A).cpp -------------------------------------------------------------------------------- /2021/0ctfquals/zer0lfsr_plus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/0ctfquals/zer0lfsr_plus.py -------------------------------------------------------------------------------- /2021/0x41CTF/soul_permutation_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/0x41CTF/soul_permutation_network.py -------------------------------------------------------------------------------- /2021/ACSC/RSA_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/ACSC/RSA_stream.py -------------------------------------------------------------------------------- /2021/ACSC/cbcbc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/ACSC/cbcbc.py -------------------------------------------------------------------------------- /2021/ACSC/shareflag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/ACSC/shareflag.py -------------------------------------------------------------------------------- /2021/ACSC/swap_on_curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/ACSC/swap_on_curve.py -------------------------------------------------------------------------------- /2021/ACSC/two_rabin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/ACSC/two_rabin.py -------------------------------------------------------------------------------- /2021/ACSC/wonderful_hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/ACSC/wonderful_hash.py -------------------------------------------------------------------------------- /2021/ASISCTFQuals/lagleg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/ASISCTFQuals/lagleg.py -------------------------------------------------------------------------------- /2021/ASISCTFQuals/madras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/ASISCTFQuals/madras.py -------------------------------------------------------------------------------- /2021/ASISCTFQuals/pinhole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/ASISCTFQuals/pinhole.py -------------------------------------------------------------------------------- /2021/ASISCTFQuals/spiritual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/ASISCTFQuals/spiritual.py -------------------------------------------------------------------------------- /2021/AeroCTF/boggart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/AeroCTF/boggart.py -------------------------------------------------------------------------------- /2021/AeroCTF/horcrux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/AeroCTF/horcrux.py -------------------------------------------------------------------------------- /2021/CryptoCTF/DoRSA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/CryptoCTF/DoRSA.py -------------------------------------------------------------------------------- /2021/CryptoCTF/ecchimera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/CryptoCTF/ecchimera.py -------------------------------------------------------------------------------- /2021/CryptoCTF/elegantcurve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/CryptoCTF/elegantcurve.py -------------------------------------------------------------------------------- /2021/CryptoCTF/farm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/CryptoCTF/farm.py -------------------------------------------------------------------------------- /2021/CryptoCTF/ferman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/CryptoCTF/ferman.py -------------------------------------------------------------------------------- /2021/CryptoCTF/improved.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/CryptoCTF/improved.py -------------------------------------------------------------------------------- /2021/CryptoCTF/linda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/CryptoCTF/linda.py -------------------------------------------------------------------------------- /2021/CryptoCTF/maid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/CryptoCTF/maid.py -------------------------------------------------------------------------------- /2021/CryptoCTF/miniecc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/CryptoCTF/miniecc.py -------------------------------------------------------------------------------- /2021/CryptoCTF/polish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/CryptoCTF/polish.py -------------------------------------------------------------------------------- /2021/CryptoCTF/rima.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/CryptoCTF/rima.py -------------------------------------------------------------------------------- /2021/CryptoCTF/titu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/CryptoCTF/titu.py -------------------------------------------------------------------------------- /2021/CryptoCTF/triplet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/CryptoCTF/triplet.py -------------------------------------------------------------------------------- /2021/DiophantineArgumentofKnowledge.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/DiophantineArgumentofKnowledge.pdf -------------------------------------------------------------------------------- /2021/DragonCTF/CRC_warmup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/DragonCTF/CRC_warmup.py -------------------------------------------------------------------------------- /2021/GoogleCTF/H1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/GoogleCTF/H1.py -------------------------------------------------------------------------------- /2021/GoogleCTF/pythia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/GoogleCTF/pythia.py -------------------------------------------------------------------------------- /2021/GoogleCTF/story.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/GoogleCTF/story.py -------------------------------------------------------------------------------- /2021/GoogleCTF/tiramisu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/GoogleCTF/tiramisu.py -------------------------------------------------------------------------------- /2021/GoogleCTF/tonality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/GoogleCTF/tonality.py -------------------------------------------------------------------------------- /2021/HITCONCTF/alittlersa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/HITCONCTF/alittlersa.py -------------------------------------------------------------------------------- /2021/HITCONCTF/eznotrsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/HITCONCTF/eznotrsa.py -------------------------------------------------------------------------------- /2021/HITCONCTF/magicdlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/HITCONCTF/magicdlog.py -------------------------------------------------------------------------------- /2021/HITCONCTF/magicrsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/HITCONCTF/magicrsa.py -------------------------------------------------------------------------------- /2021/HITCONCTF/soeasyrsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/HITCONCTF/soeasyrsa.py -------------------------------------------------------------------------------- /2021/HITCONCTF/stillnotrsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/HITCONCTF/stillnotrsa.py -------------------------------------------------------------------------------- /2021/HTBCyberApocalypse/forge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/HTBCyberApocalypse/forge.py -------------------------------------------------------------------------------- /2021/HTBCyberApocalypse/hyper_metroid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/HTBCyberApocalypse/hyper_metroid.py -------------------------------------------------------------------------------- /2021/HTBCyberApocalypse/rsajam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/HTBCyberApocalypse/rsajam.py -------------------------------------------------------------------------------- /2021/HTBCyberApocalypse/super_metroid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/HTBCyberApocalypse/super_metroid.py -------------------------------------------------------------------------------- /2021/HTBCyberApocalypse/whii_phit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/HTBCyberApocalypse/whii_phit.py -------------------------------------------------------------------------------- /2021/LINECTF/babycrypto1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/LINECTF/babycrypto1.py -------------------------------------------------------------------------------- /2021/LINECTF/babycrypto2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/LINECTF/babycrypto2.py -------------------------------------------------------------------------------- /2021/LINECTF/babycrypto3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/LINECTF/babycrypto3.py -------------------------------------------------------------------------------- /2021/LINECTF/babycrypto4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/LINECTF/babycrypto4.py -------------------------------------------------------------------------------- /2021/N1CTF/babydefi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/N1CTF/babydefi.ts -------------------------------------------------------------------------------- /2021/N1CTF/babydefiexploit.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/N1CTF/babydefiexploit.sol -------------------------------------------------------------------------------- /2021/N1CTF/checkin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/N1CTF/checkin.py -------------------------------------------------------------------------------- /2021/N1CTF/n1ogin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/N1CTF/n1ogin.py -------------------------------------------------------------------------------- /2021/N1CTF/n1token1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/N1CTF/n1token1.py -------------------------------------------------------------------------------- /2021/N1CTF/n1token2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/N1CTF/n1token2.py -------------------------------------------------------------------------------- /2021/OMHCTF/almostperfect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/OMHCTF/almostperfect.py -------------------------------------------------------------------------------- /2021/OMHCTF/ans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/OMHCTF/ans.txt -------------------------------------------------------------------------------- /2021/OMHCTF/csprng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/OMHCTF/csprng.py -------------------------------------------------------------------------------- /2021/OMHCTF/jamal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/OMHCTF/jamal.py -------------------------------------------------------------------------------- /2021/OMHCTF/playingcard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/OMHCTF/playingcard.py -------------------------------------------------------------------------------- /2021/OMHCTF/res.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/OMHCTF/res.txt -------------------------------------------------------------------------------- /2021/OMHCTF/towerpower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/OMHCTF/towerpower.py -------------------------------------------------------------------------------- /2021/RCTF/uncommon2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/RCTF/uncommon2.py -------------------------------------------------------------------------------- /2021/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/README.md -------------------------------------------------------------------------------- /2021/RealWorldCTF/homebrew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/RealWorldCTF/homebrew.py -------------------------------------------------------------------------------- /2021/SECCONCTF/OOOO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/SECCONCTF/OOOO.py -------------------------------------------------------------------------------- /2021/SECCONCTF/XXX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/SECCONCTF/XXX.py -------------------------------------------------------------------------------- /2021/SECCONCTF/qchecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/SECCONCTF/qchecker.py -------------------------------------------------------------------------------- /2021/SECCONCTF/signwars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/SECCONCTF/signwars.py -------------------------------------------------------------------------------- /2021/SSTF/RC4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/SSTF/RC4.md -------------------------------------------------------------------------------- /2021/SSTF/RC4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/SSTF/RC4.py -------------------------------------------------------------------------------- /2021/SSTF/RSA101.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/SSTF/RSA101.md -------------------------------------------------------------------------------- /2021/SSTF/RSA101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/SSTF/RSA101.py -------------------------------------------------------------------------------- /2021/SSTF/decrypt_tls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/SSTF/decrypt_tls.md -------------------------------------------------------------------------------- /2021/SSTF/decrypt_tls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/SSTF/decrypt_tls.py -------------------------------------------------------------------------------- /2021/SSTF/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/SSTF/license.md -------------------------------------------------------------------------------- /2021/SSTF/license.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/SSTF/license.py -------------------------------------------------------------------------------- /2021/SSTF/melorean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/SSTF/melorean.md -------------------------------------------------------------------------------- /2021/SSTF/melorean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/SSTF/melorean.py -------------------------------------------------------------------------------- /2021/SecurinetsCTF/mitm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/SecurinetsCTF/mitm.py -------------------------------------------------------------------------------- /2021/SecurinetsCTF/mitm_revenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/SecurinetsCTF/mitm_revenge.py -------------------------------------------------------------------------------- /2021/SecurinetsCTF/shilaformi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/SecurinetsCTF/shilaformi.py -------------------------------------------------------------------------------- /2021/SecurinetsCTF/signit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/SecurinetsCTF/signit.py -------------------------------------------------------------------------------- /2021/SecurinetsCTF/special.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/SecurinetsCTF/special.py -------------------------------------------------------------------------------- /2021/TSGCTF/babaisflag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/TSGCTF/babaisflag.py -------------------------------------------------------------------------------- /2021/TSGCTF/beginnercrypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/TSGCTF/beginnercrypto.py -------------------------------------------------------------------------------- /2021/TSGCTF/flagiswin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/TSGCTF/flagiswin.py -------------------------------------------------------------------------------- /2021/TSGCTF/lumberjack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/TSGCTF/lumberjack.py -------------------------------------------------------------------------------- /2021/TSGCTF/lumberjackv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/TSGCTF/lumberjackv2.py -------------------------------------------------------------------------------- /2021/TSGCTF/minimalist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/TSGCTF/minimalist.py -------------------------------------------------------------------------------- /2021/TSGCTF/thisisdsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/TSGCTF/thisisdsa.py -------------------------------------------------------------------------------- /2021/TetCTF/uncollidable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/TetCTF/uncollidable.py -------------------------------------------------------------------------------- /2021/TetCTF/unevaluated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/TetCTF/unevaluated.py -------------------------------------------------------------------------------- /2021/TetCTF/unimplemented.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/TetCTF/unimplemented.py -------------------------------------------------------------------------------- /2021/angstromCTF/RSA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/angstromCTF/RSA.py -------------------------------------------------------------------------------- /2021/angstromCTF/exclusive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/angstromCTF/exclusive.py -------------------------------------------------------------------------------- /2021/angstromCTF/follow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/angstromCTF/follow.py -------------------------------------------------------------------------------- /2021/angstromCTF/homeroll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/angstromCTF/homeroll.py -------------------------------------------------------------------------------- /2021/angstromCTF/others.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/angstromCTF/others.txt -------------------------------------------------------------------------------- /2021/angstromCTF/sorandom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/angstromCTF/sorandom.py -------------------------------------------------------------------------------- /2021/angstromCTF/substitution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/angstromCTF/substitution.py -------------------------------------------------------------------------------- /2021/corCTF/LCGk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/corCTF/LCGk.py -------------------------------------------------------------------------------- /2021/corCTF/cards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/corCTF/cards.py -------------------------------------------------------------------------------- /2021/corCTF/friedrice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/corCTF/friedrice.py -------------------------------------------------------------------------------- /2021/corCTF/stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/corCTF/stream.py -------------------------------------------------------------------------------- /2021/downunderCTF/connectthedots.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/downunderCTF/connectthedots.cpp -------------------------------------------------------------------------------- /2021/downunderCTF/connectthedots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/downunderCTF/connectthedots.py -------------------------------------------------------------------------------- /2021/downunderCTF/flagloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/downunderCTF/flagloader.py -------------------------------------------------------------------------------- /2021/downunderCTF/l33tcryptv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/downunderCTF/l33tcryptv2.py -------------------------------------------------------------------------------- /2021/downunderCTF/powersign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/downunderCTF/powersign.py -------------------------------------------------------------------------------- /2021/downunderCTF/yadlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/downunderCTF/yadlp.py -------------------------------------------------------------------------------- /2021/hackluCTF/ollvm_post_reversing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/hackluCTF/ollvm_post_reversing.py -------------------------------------------------------------------------------- /2021/hackluCTF/silverwater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/hackluCTF/silverwater.py -------------------------------------------------------------------------------- /2021/hackluCTF/whatthehecc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/hackluCTF/whatthehecc.py -------------------------------------------------------------------------------- /2021/hkcertCTF/freerider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/hkcertCTF/freerider.py -------------------------------------------------------------------------------- /2021/hkcertCTF/keybackup1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/hkcertCTF/keybackup1.py -------------------------------------------------------------------------------- /2021/hkcertCTF/keybackup2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/hkcertCTF/keybackup2.py -------------------------------------------------------------------------------- /2021/hxpCTF/A.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/hxpCTF/A.py -------------------------------------------------------------------------------- /2021/hxpCTF/B.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/hxpCTF/B.py -------------------------------------------------------------------------------- /2021/hxpCTF/C.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/hxpCTF/C.py -------------------------------------------------------------------------------- /2021/hxpCTF/D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/hxpCTF/D.py -------------------------------------------------------------------------------- /2021/hxpCTF/data25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/hxpCTF/data25.txt -------------------------------------------------------------------------------- /2021/inCTF/baggage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/inCTF/baggage.py -------------------------------------------------------------------------------- /2021/inCTF/ezexchange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/inCTF/ezexchange.py -------------------------------------------------------------------------------- /2021/inCTF/rightnowgenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/inCTF/rightnowgenerator.py -------------------------------------------------------------------------------- /2021/inCTF/troublepair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/inCTF/troublepair.py -------------------------------------------------------------------------------- /2021/midnightsunCTFqual/blueberry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/midnightsunCTFqual/blueberry.py -------------------------------------------------------------------------------- /2021/midnightsunCTFqual/dbcsig64434.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/midnightsunCTFqual/dbcsig64434.py -------------------------------------------------------------------------------- /2021/midnightsunCTFqual/frank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/midnightsunCTFqual/frank.py -------------------------------------------------------------------------------- /2021/midnightsunCTFqual/ocat_024.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/midnightsunCTFqual/ocat_024.py -------------------------------------------------------------------------------- /2021/pbctf/GoodHash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/pbctf/GoodHash.py -------------------------------------------------------------------------------- /2021/pbctf/PRNG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/pbctf/PRNG.py -------------------------------------------------------------------------------- /2021/pbctf/YetAnotherRSA.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/pbctf/YetAnotherRSA.sage -------------------------------------------------------------------------------- /2021/pbctf/binarytree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/pbctf/binarytree.cpp -------------------------------------------------------------------------------- /2021/pbctf/seedme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/pbctf/seedme.py -------------------------------------------------------------------------------- /2021/plaidCTF/leakyblock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/plaidCTF/leakyblock.py -------------------------------------------------------------------------------- /2021/plaidCTF/leakyblock_simpler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/plaidCTF/leakyblock_simpler.py -------------------------------------------------------------------------------- /2021/plaidCTF/xorsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/plaidCTF/xorsa.py -------------------------------------------------------------------------------- /2021/pwn2winCTF/clador.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/pwn2winCTF/clador.py -------------------------------------------------------------------------------- /2021/pwn2winCTF/julia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/pwn2winCTF/julia.py -------------------------------------------------------------------------------- /2021/pwn2winCTF/lostexpo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/pwn2winCTF/lostexpo.py -------------------------------------------------------------------------------- /2021/pwn2winCTF/toorare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/pwn2winCTF/toorare.py -------------------------------------------------------------------------------- /2021/rarCTF/A3S.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/rarCTF/A3S.py -------------------------------------------------------------------------------- /2021/rarCTF/SSS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/rarCTF/SSS.py -------------------------------------------------------------------------------- /2021/rarCTF/babycrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/rarCTF/babycrypt.py -------------------------------------------------------------------------------- /2021/rarCTF/miniA3S.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/rarCTF/miniA3S.py -------------------------------------------------------------------------------- /2021/rarCTF/randompad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/rarCTF/randompad.py -------------------------------------------------------------------------------- /2021/rarCTF/rotoRSA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/rarCTF/rotoRSA.py -------------------------------------------------------------------------------- /2021/rarCTF/snore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/rarCTF/snore.py -------------------------------------------------------------------------------- /2021/s4CTF/babyrsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/s4CTF/babyrsa.py -------------------------------------------------------------------------------- /2021/s4CTF/babyxor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/s4CTF/babyxor.py -------------------------------------------------------------------------------- /2021/s4CTF/determinant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/s4CTF/determinant.py -------------------------------------------------------------------------------- /2021/s4CTF/genie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/s4CTF/genie.py -------------------------------------------------------------------------------- /2021/s4CTF/khayyam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/s4CTF/khayyam.py -------------------------------------------------------------------------------- /2021/s4CTF/malady.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/s4CTF/malady.py -------------------------------------------------------------------------------- /2021/s4CTF/phillip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/s4CTF/phillip.py -------------------------------------------------------------------------------- /2021/s4CTF/pts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/s4CTF/pts.py -------------------------------------------------------------------------------- /2021/s4CTF/tom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/s4CTF/tom.py -------------------------------------------------------------------------------- /2021/starCTF/guesskey2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/starCTF/guesskey2.py -------------------------------------------------------------------------------- /2021/starCTF/littlecase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/starCTF/littlecase.py -------------------------------------------------------------------------------- /2021/starCTF/mycurve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/starCTF/mycurve.py -------------------------------------------------------------------------------- /2021/starCTF/myenc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/starCTF/myenc.py -------------------------------------------------------------------------------- /2021/unionCTF/cr0wnst3rling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/unionCTF/cr0wnst3rling.py -------------------------------------------------------------------------------- /2021/unionCTF/humanserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/unionCTF/humanserver.py -------------------------------------------------------------------------------- /2021/unionCTF/mordellprimes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/unionCTF/mordellprimes.py -------------------------------------------------------------------------------- /2021/unionCTF/neoclassical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/unionCTF/neoclassical.py -------------------------------------------------------------------------------- /2021/unionCTF/whyisaraven.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/unionCTF/whyisaraven.py -------------------------------------------------------------------------------- /2021/volgaCTFqual/carry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/volgaCTFqual/carry.py -------------------------------------------------------------------------------- /2021/zer0ptsCTF/3-aes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/zer0ptsCTF/3-aes.py -------------------------------------------------------------------------------- /2021/zer0ptsCTF/OTorNOTOT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/zer0ptsCTF/OTorNOTOT.py -------------------------------------------------------------------------------- /2021/zer0ptsCTF/easypseudorandom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/zer0ptsCTF/easypseudorandom.py -------------------------------------------------------------------------------- /2021/zer0ptsCTF/janken vs yoshiking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/zer0ptsCTF/janken vs yoshiking.py -------------------------------------------------------------------------------- /2021/zer0ptsCTF/notmordellprimes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/zer0ptsCTF/notmordellprimes.py -------------------------------------------------------------------------------- /2021/zer0ptsCTF/puredivision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/zer0ptsCTF/puredivision.py -------------------------------------------------------------------------------- /2021/zer0ptsCTF/tokyonetwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/zer0ptsCTF/tokyonetwork.py -------------------------------------------------------------------------------- /2021/zer0ptsCTF/warsamup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/zer0ptsCTF/warsamup.py -------------------------------------------------------------------------------- /2021/zh3roCTF/alice_bob_dave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/zh3roCTF/alice_bob_dave.py -------------------------------------------------------------------------------- /2021/zh3roCTF/chaos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/zh3roCTF/chaos.py -------------------------------------------------------------------------------- /2021/zh3roCTF/injection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/zh3roCTF/injection.py -------------------------------------------------------------------------------- /2021/zh3roCTF/numpyMT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/zh3roCTF/numpyMT.py -------------------------------------------------------------------------------- /2021/zh3roCTF/real_mersenne.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/zh3roCTF/real_mersenne.py -------------------------------------------------------------------------------- /2021/zh3roCTF/sourceless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/zh3roCTF/sourceless.py -------------------------------------------------------------------------------- /2021/zh3roCTF/twist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2021/zh3roCTF/twist.py -------------------------------------------------------------------------------- /2022/0CTF/FakeNFT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/0CTF/FakeNFT.json -------------------------------------------------------------------------------- /2022/0CTF/FakeNFT.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/0CTF/FakeNFT.sol -------------------------------------------------------------------------------- /2022/0CTF/FoundrySolve.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/0CTF/FoundrySolve.sol -------------------------------------------------------------------------------- /2022/0CTF/TctfMarket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/0CTF/TctfMarket.json -------------------------------------------------------------------------------- /2022/0CTF/TctfNFT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/0CTF/TctfNFT.json -------------------------------------------------------------------------------- /2022/0CTF/TctfToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/0CTF/TctfToken.json -------------------------------------------------------------------------------- /2022/0CTF/ezRSA+++.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/0CTF/ezRSA+++.py -------------------------------------------------------------------------------- /2022/0CTF/solve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/0CTF/solve.ts -------------------------------------------------------------------------------- /2022/BlackHatMEA/Day1/ursa/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/BlackHatMEA/Day1/ursa/chall.py -------------------------------------------------------------------------------- /2022/BlackHatMEA/Day1/ursa/finish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/BlackHatMEA/Day1/ursa/finish.py -------------------------------------------------------------------------------- /2022/BlackHatMEA/Day1/ursa/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/BlackHatMEA/Day1/ursa/solve.py -------------------------------------------------------------------------------- /2022/BlackHatMEA/Day1/webbed/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/BlackHatMEA/Day1/webbed/app.py -------------------------------------------------------------------------------- /2022/BlackHatMEA/Day1/webbed/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/BlackHatMEA/Day1/webbed/solve.py -------------------------------------------------------------------------------- /2022/BlackHatMEA/Day1/webbed/solve_remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/BlackHatMEA/Day1/webbed/solve_remote.py -------------------------------------------------------------------------------- /2022/BlackHatMEA/Day2/BeastlyVault/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/BlackHatMEA/Day2/BeastlyVault/app.py -------------------------------------------------------------------------------- /2022/BlackHatMEA/Day2/BeastlyVault/solve_remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/BlackHatMEA/Day2/BeastlyVault/solve_remote.py -------------------------------------------------------------------------------- /2022/BlackHatMEA/Day2/ECPC/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/BlackHatMEA/Day2/ECPC/chall.py -------------------------------------------------------------------------------- /2022/BlackHatMEA/Day2/ECPC/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/BlackHatMEA/Day2/ECPC/solve.py -------------------------------------------------------------------------------- /2022/BlackHatMEA/Day3/lweke/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/BlackHatMEA/Day3/lweke/chall.py -------------------------------------------------------------------------------- /2022/BlackHatMEA/Day3/lweke/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/BlackHatMEA/Day3/lweke/solve.py -------------------------------------------------------------------------------- /2022/BlackHatMEA/Day3/shopping/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/BlackHatMEA/Day3/shopping/chall.py -------------------------------------------------------------------------------- /2022/BlackHatMEA/Day3/shopping/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/BlackHatMEA/Day3/shopping/solve.py -------------------------------------------------------------------------------- /2022/CODEGATE Finals/CODEGATE2022Finals-CryptanalysisSummer/challenge/challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/CODEGATE Finals/CODEGATE2022Finals-CryptanalysisSummer/challenge/challenge.py -------------------------------------------------------------------------------- /2022/CODEGATE Finals/CODEGATE2022Finals-CryptanalysisSummer/exploit/README.md: -------------------------------------------------------------------------------- 1 | # Cryptanalysis Summer 2 | 3 | writeup: https://eprint.iacr.org/2022/998 -------------------------------------------------------------------------------- /2022/CODEGATE Finals/CODEGATE2022Finals-CryptanalysisSummer/exploit/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/CODEGATE Finals/CODEGATE2022Finals-CryptanalysisSummer/exploit/solve.py -------------------------------------------------------------------------------- /2022/CODEGATE Finals/CODEGATE2022Finals-LookItUp/challenge/Challenge.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/CODEGATE Finals/CODEGATE2022Finals-LookItUp/challenge/Challenge.sol -------------------------------------------------------------------------------- /2022/CODEGATE Finals/CODEGATE2022Finals-LookItUp/challenge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/CODEGATE Finals/CODEGATE2022Finals-LookItUp/challenge/README.md -------------------------------------------------------------------------------- /2022/CODEGATE Finals/CODEGATE2022Finals-LookItUp/challenge/Setup.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/CODEGATE Finals/CODEGATE2022Finals-LookItUp/challenge/Setup.sol -------------------------------------------------------------------------------- /2022/CODEGATE Finals/CODEGATE2022Finals-LookItUp/exploit/ExploitScript.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/CODEGATE Finals/CODEGATE2022Finals-LookItUp/exploit/ExploitScript.sol -------------------------------------------------------------------------------- /2022/CODEGATE Finals/CODEGATE2022Finals-LookItUp/exploit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/CODEGATE Finals/CODEGATE2022Finals-LookItUp/exploit/README.md -------------------------------------------------------------------------------- /2022/CODEGATE Qual/dark-arts-chal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/CODEGATE Qual/dark-arts-chal.py -------------------------------------------------------------------------------- /2022/CODEGATE Qual/dark-arts-exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/CODEGATE Qual/dark-arts-exploit.py -------------------------------------------------------------------------------- /2022/CryptoCTF/aniely.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/CryptoCTF/aniely.py -------------------------------------------------------------------------------- /2022/CryptoCTF/baphomet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/CryptoCTF/baphomet.py -------------------------------------------------------------------------------- /2022/CryptoCTF/gsdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/CryptoCTF/gsdp.py -------------------------------------------------------------------------------- /2022/CryptoCTF/infinitycastle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/CryptoCTF/infinitycastle.py -------------------------------------------------------------------------------- /2022/CryptoCTF/keydream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/CryptoCTF/keydream.py -------------------------------------------------------------------------------- /2022/CryptoCTF/klamkin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/CryptoCTF/klamkin.py -------------------------------------------------------------------------------- /2022/CryptoCTF/lagima.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/CryptoCTF/lagima.py -------------------------------------------------------------------------------- /2022/CryptoCTF/larisa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/CryptoCTF/larisa.py -------------------------------------------------------------------------------- /2022/CryptoCTF/mino.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/CryptoCTF/mino.py -------------------------------------------------------------------------------- /2022/CryptoCTF/nlcs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/CryptoCTF/nlcs.cpp -------------------------------------------------------------------------------- /2022/CryptoCTF/persiancat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/CryptoCTF/persiancat.py -------------------------------------------------------------------------------- /2022/CryptoCTF/polyrsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/CryptoCTF/polyrsa.py -------------------------------------------------------------------------------- /2022/CryptoCTF/shaim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/CryptoCTF/shaim.py -------------------------------------------------------------------------------- /2022/CryptoCTF/sidestep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/CryptoCTF/sidestep.py -------------------------------------------------------------------------------- /2022/CryptoCTF/soda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/CryptoCTF/soda.py -------------------------------------------------------------------------------- /2022/CryptoCTF/starterecc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/CryptoCTF/starterecc.py -------------------------------------------------------------------------------- /2022/CryptoCTF/volgo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/CryptoCTF/volgo.py -------------------------------------------------------------------------------- /2022/CryptoCTF/waterysoup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/CryptoCTF/waterysoup.py -------------------------------------------------------------------------------- /2022/FCSC/Gaston.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/FCSC/Gaston.py -------------------------------------------------------------------------------- /2022/FCSC/T-Rex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/FCSC/T-Rex.py -------------------------------------------------------------------------------- /2022/FCSC/hash-ish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/FCSC/hash-ish.py -------------------------------------------------------------------------------- /2022/FCSC/iznogood.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/FCSC/iznogood.cpp -------------------------------------------------------------------------------- /2022/FCSC/shuffled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/FCSC/shuffled.py -------------------------------------------------------------------------------- /2022/FCSC/tailor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/FCSC/tailor.py -------------------------------------------------------------------------------- /2022/HITCON2022/EasyNTRU.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/HITCON2022/EasyNTRU.py -------------------------------------------------------------------------------- /2022/HITCON2022/babysss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/HITCON2022/babysss.py -------------------------------------------------------------------------------- /2022/HITCON2022/chimera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/HITCON2022/chimera.py -------------------------------------------------------------------------------- /2022/HITCON2022/secret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/HITCON2022/secret.py -------------------------------------------------------------------------------- /2022/HITCON2022/superprime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/HITCON2022/superprime.py -------------------------------------------------------------------------------- /2022/SECCON/BBB/fin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/SECCON/BBB/fin.py -------------------------------------------------------------------------------- /2022/SECCON/BBB/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/SECCON/BBB/solve.py -------------------------------------------------------------------------------- /2022/SECCON/PQPQ/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/SECCON/PQPQ/solve.py -------------------------------------------------------------------------------- /2022/SECCON/insufficient/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/SECCON/insufficient/solve.py -------------------------------------------------------------------------------- /2022/SECCON/noise/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/SECCON/noise/solve.py -------------------------------------------------------------------------------- /2022/SECCON/symmetric/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/SECCON/symmetric/solve.py -------------------------------------------------------------------------------- /2022/SECCON/symmetric/solve_remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/SECCON/symmetric/solve_remote.py -------------------------------------------------------------------------------- /2022/TetCTF/algebra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/TetCTF/algebra.py -------------------------------------------------------------------------------- /2022/TetCTF/fault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/TetCTF/fault.py -------------------------------------------------------------------------------- /2022/TetCTF/shares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/TetCTF/shares.py -------------------------------------------------------------------------------- /2022/TetCTF/sharesv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/TetCTF/sharesv2.py -------------------------------------------------------------------------------- /2022/WAConFinals/rsa-permutation-chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/WAConFinals/rsa-permutation-chall.py -------------------------------------------------------------------------------- /2022/WAConFinals/rsa-permutation-solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/WAConFinals/rsa-permutation-solve.py -------------------------------------------------------------------------------- /2022/WAConQual/rsa-secret-sharing-chal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/WAConQual/rsa-secret-sharing-chal.py -------------------------------------------------------------------------------- /2022/WAConQual/rsa-secret-sharing-exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2022/WAConQual/rsa-secret-sharing-exploit.py -------------------------------------------------------------------------------- /2023/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2023/.DS_Store -------------------------------------------------------------------------------- /2023/HTMCTF/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2023/HTMCTF/.DS_Store -------------------------------------------------------------------------------- /2023/HTMCTF/dphienc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2023/HTMCTF/dphienc.py -------------------------------------------------------------------------------- /2023/HTMCTF/oracle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2023/HTMCTF/oracle.py -------------------------------------------------------------------------------- /2023/HTMCTF/sushi1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2023/HTMCTF/sushi1.py -------------------------------------------------------------------------------- /2023/HTMCTF/sushi2.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2023/HTMCTF/sushi2.sage -------------------------------------------------------------------------------- /2023/PBCTF/remake-solution/flag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2023/PBCTF/remake-solution/flag -------------------------------------------------------------------------------- /2023/PBCTF/remake-solution/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2023/PBCTF/remake-solution/solve.sage -------------------------------------------------------------------------------- /2023/PBCTF/remake-solution/solve3.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2023/PBCTF/remake-solution/solve3.sage -------------------------------------------------------------------------------- /2023/PBCTF/remake-solution/solve_12.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2023/PBCTF/remake-solution/solve_12.sage -------------------------------------------------------------------------------- /2023/PBCTF/remake/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2023/PBCTF/remake/output.txt -------------------------------------------------------------------------------- /2023/PBCTF/remake/task.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2023/PBCTF/remake/task.sage -------------------------------------------------------------------------------- /2023/SECCON-Finals/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2023/SECCON-Finals/.DS_Store -------------------------------------------------------------------------------- /2023/SECCON-Finals/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2023/SECCON-Finals/auth.py -------------------------------------------------------------------------------- /2023/SECCON-Finals/hell.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2023/SECCON-Finals/hell.sage -------------------------------------------------------------------------------- /2023/SECCON-Finals/koth-round2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2023/SECCON-Finals/koth-round2.py -------------------------------------------------------------------------------- /2023/SECCON-Finals/prng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/2023/SECCON-Finals/prng.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rkm0959/CTFWriteups/HEAD/README.md --------------------------------------------------------------------------------