├── 2024_01_20_KnightCTF ├── README.md ├── pwn │ ├── get_sword │ │ ├── get_sword │ │ └── get_sword.md │ ├── secret_scroll │ │ └── secret_scroll.md │ └── win │ │ ├── win │ │ └── win.md ├── rev │ ├── dragons_binary │ │ ├── dragons_binary.md │ │ └── task │ └── knight_armoury │ │ ├── knight_armoury │ │ └── knight_armoury.md ├── steg │ └── flag_hunt.md └── web │ └── kitty │ └── kitty.md ├── 2024_03_09_WxMCTF24 ├── README.md ├── crypto │ └── crypto_3_racing │ │ └── racing.md ├── pwn │ ├── pwn_1_moodle_madness │ │ ├── moodle │ │ └── moodle_madness.md │ ├── pwn_2_tej3m │ │ ├── assgn1_2o3BvZ6 │ │ ├── assgn1_ScZuUx0.c │ │ ├── go.py │ │ └── tej3m.md │ └── pwn_3_nah_id_win │ │ ├── go.py │ │ ├── libc.so.6 │ │ ├── nah_id_win.md │ │ ├── vuln │ │ └── vuln.c └── web │ └── web_4_walmart │ └── Walmart!.md ├── 2024_03_15_1753CTF ├── README.md └── pwn │ ├── brain_frick │ ├── brain-frick.zip │ ├── brain_frick.md │ └── go.py │ ├── brain_heck │ ├── brain-heck.zip │ ├── brain_heck.md │ └── go.py │ ├── matrix_preloaded │ ├── go.py │ ├── matrix-preloaded.zip │ ├── matrix_preloaded.md │ ├── shellcode │ └── shellcode.asm │ └── write_only │ ├── go.py │ ├── write-only.zip │ └── write_only.md ├── 2024_04_07_TamuCTF24 ├── README.md ├── cry │ └── criminal │ │ ├── criminal.md │ │ └── criminal.zip ├── pwn │ ├── admin_panel │ │ ├── admin-panel.zip │ │ └── admin_panel.md │ └── super_lucky │ │ ├── super-lucky.zip │ │ └── super_lucky.md └── rev │ ├── pwndbg.png │ ├── resistant.md │ └── resistant.zip ├── 2024_05_17_BYUCTF24 ├── README.md ├── cry │ ├── are_s_a │ │ ├── cne.txt │ │ └── writeup.md │ └── times │ │ ├── mul_safe.py │ │ ├── times.txt │ │ └── writeup.md ├── fore │ └── Stardust_Whispers │ │ ├── Stardust Whispers.md │ │ ├── Stardust_Whispers.docx │ │ └── fun.pcapng ├── pwn │ ├── all │ │ ├── all.zip │ │ ├── go.py │ │ └── writeup.md │ ├── numbersss │ │ ├── Dockerfile │ │ ├── go.py │ │ ├── numbersss │ │ └── writeup.md │ └── static │ │ ├── go.py │ │ ├── static │ │ └── writeup.md └── web │ ├── argument │ └── writeup.md │ ├── not-a-problem │ ├── Writeup.md │ └── not-a-problem.zip │ ├── porg_city │ └── writeup.md │ ├── random │ └── writeup.md │ └── triple-whammy │ ├── Writeup.md │ └── triple-whammy.zip ├── 2024_06_08_Akasec24 ├── README.md └── pwn │ ├── bad_trip │ ├── bad_trip.zip │ ├── go.py │ └── writeup.md │ ├── good_trip │ ├── go.py │ ├── good_trip.zip │ └── writeup.md │ └── warmup │ ├── go.py │ ├── warmup.zip │ └── writeup.md ├── 2024_06_15_jCTF_Teaser24 ├── README.md └── pwn │ ├── go.py │ └── writeup.md ├── 2024_06_21_WaniCTF24 ├── README.md ├── crypto │ ├── beginners_aes │ │ ├── cry-beginners-aes.zip │ │ ├── go.py │ │ └── writeup.md │ ├── beginners_rsa │ │ ├── cry-beginners-rsa.zip │ │ ├── go.py │ │ └── writeup.md │ ├── dance │ │ ├── cry-dance.zip │ │ ├── go.py │ │ └── writeup.md │ └── replacement │ │ ├── cry-replacement.zip │ │ ├── go.py │ │ └── writeup.md ├── misc │ └── sh │ │ ├── mis-sh.zip │ │ └── writeup.md ├── pwn │ ├── do_not_rewrite │ │ ├── go.py │ │ ├── pwn-do-not-rewrite.zip │ │ └── writeup.md │ └── do_not_rewrite2 │ │ ├── go.py │ │ ├── pwn-do-not-rewrite2.zip │ │ └── writeup.md ├── rev │ ├── home │ │ ├── go.py │ │ ├── rev-home.zip │ │ └── writeup.md │ └── thread │ │ ├── go.py │ │ ├── rev-thread.zip │ │ └── writeup.md └── web │ ├── elec │ └── writeup.md │ ├── noscript │ └── writeup.md │ └── one-day-one-letter │ └── writeup.md ├── 2024_06_29_UIUCTFCTF24 ├── README.md ├── crypto │ ├── without_a_trace │ │ ├── go.py │ │ ├── server.py │ │ └── writeup.md │ └── x_marked_the_spot │ │ ├── ct │ │ ├── go.py │ │ ├── public.py │ │ └── writeup.md ├── misc │ ├── push_and_pickle │ │ ├── chal.py │ │ ├── chal_part2.py │ │ └── writeup.md │ └── slot-machine │ │ ├── chal.py │ │ └── writeup.md ├── pwn │ └── syscalls │ │ ├── Dockerfile │ │ ├── Dockerfile.local │ │ ├── go.py │ │ ├── syscalls │ │ └── writeup.md └── web │ └── fare-evasion │ └── writeup.md ├── 2024_07_06_DUCTF24 ├── README.md ├── pwn │ ├── vector_overflow │ │ ├── go.py │ │ ├── vector_overflow │ │ ├── vector_overflow.cpp │ │ └── writeup.md │ └── yawa │ │ ├── go.py │ │ ├── ld-linux-x86-64.so.2 │ │ ├── libc.so.6 │ │ ├── writeup.md │ │ ├── yawa │ │ └── yawa.c └── rev │ └── number_mashing │ ├── go.py │ ├── number-mashing │ └── writeup.md ├── 2024_07_13_OSCTF24 ├── README.md └── pwn │ ├── buffer_buffet │ ├── go.py │ ├── vuln │ └── writeup.md │ ├── byte_breakup │ ├── go.py │ ├── vuln │ └── writeup.md │ ├── coal_mine_canary │ ├── challenge │ ├── go.py │ └── writeup.md │ ├── leaky_pipes │ ├── go.py │ ├── leaky_pipes │ └── writeup.md │ ├── lib_riddle │ ├── challenge │ ├── go.py │ └── writeup.md │ ├── seed_spring │ ├── go.py │ ├── seed_spring │ └── writeup.md │ └── shell_mischief │ ├── go.py │ ├── vuln │ └── writeup.md ├── 2024_07_19_Imaginary24 ├── README.md ├── crypto │ ├── base64 │ │ ├── files.zip │ │ ├── go.py │ │ └── writeup.md │ └── tango │ │ ├── files.zip │ │ ├── go.py │ │ └── writeup.md ├── misc │ ├── gdbjail1 │ │ └── writeup.md │ ├── gdbjail2 │ │ └── writeup.md │ ├── ok-nice │ │ ├── jail.py │ │ └── writeup.md │ └── starship │ │ ├── files.zip │ │ ├── go.py │ │ └── writeup.md ├── pwn │ └── imgstore │ │ ├── files.zip │ │ ├── go.py │ │ └── writeup.md └── web │ └── journal │ └── writeup.md ├── 2024_07_26_DeadSecCTF24 ├── README.md ├── crypto │ └── flag_killer │ │ ├── go.py │ │ ├── public.zip │ │ └── writeup.md └── pwn │ └── super_cpp_calculator │ ├── go.py │ ├── public.zip │ └── writeup.md ├── 2024_08_03_TFCCTF24 ├── README.md ├── crypto │ ├── biased_elections │ │ ├── biased_elections.zip │ │ ├── go-sage.py │ │ ├── go.py │ │ └── writeup.md │ ├── ccccc │ │ ├── ccccc.txt │ │ ├── go.py │ │ └── writeup.md │ ├── conway │ │ ├── conway.zip │ │ ├── go.py │ │ └── writeup.md │ └── genetics │ │ ├── go.py │ │ ├── task.txt │ │ └── writeup.md ├── pwn │ └── guard_the_bypass │ │ ├── chall.zip │ │ ├── go.py │ │ └── writeup.md ├── rev │ ├── functional │ │ ├── functional.zip │ │ ├── go.py │ │ └── writeup.md │ └── signal │ │ ├── go.c │ │ ├── inscount.py │ │ ├── signal │ │ ├── worker.c │ │ └── writeup.md └── web │ ├── flask-destroyer │ └── writeup.md │ ├── funny │ └── writeup.md │ └── surfing │ └── writeup.md ├── 2024_08_10_LITCTF24 ├── README.md └── crypto │ ├── chal.py │ ├── go.py │ └── writeup.md ├── 2024_08_17_idekCTF24 └── README.md ├── 2024_09_06_CSAWQuals24 ├── README.md └── crypto │ ├── cbc │ ├── app.py │ ├── go.py │ ├── out.txt │ └── writeup.md │ └── trapdoor │ ├── go.py │ ├── msg1.enc │ ├── msg2.enc │ ├── public_key1 │ ├── public_key2 │ └── writeup.md ├── 2024_09_20_PatriotCTF ├── README.md └── crypto │ ├── bigger_is_better │ ├── dist.txt │ ├── go.py │ ├── go.sage │ └── writeup.md │ ├── bit_by_bit │ ├── go.py │ ├── out.txt │ ├── transmit.py │ └── writeup.md │ ├── hard_to_implement │ ├── cryptor.py │ ├── go.py │ └── writeup.md │ ├── high_roller │ ├── flag.enc │ ├── gen_setup.7z │ ├── go.py │ └── writeup.md │ └── idk_cipher │ ├── encode.py │ ├── go.py │ └── writeup.md ├── 2024_09_28_BuckeyeCTF24 ├── README.md ├── crypto │ ├── hashbrown │ │ ├── go.py │ │ ├── hashbrown.py │ │ └── writeup.md │ ├── rsa │ │ ├── go.py │ │ ├── rsa.py │ │ └── writeup.md │ └── xnor │ │ ├── go.py │ │ ├── writeup.md │ │ ├── xnor.py │ │ └── xnor_output.txt └── pwn │ ├── calculator │ ├── calc │ ├── go.py │ └── writeup.md │ ├── color │ ├── color.zip │ ├── go.py │ └── writeup.md │ ├── no_handouts │ ├── go.py │ ├── no_handouts.zip │ └── writeup.md │ ├── runway0 │ ├── go.py │ ├── runway0.zip │ └── writeup.md │ ├── runway1 │ ├── go.py │ ├── runway1.zip │ └── writeup.md │ ├── runway2 │ ├── go.py │ ├── runway2.zip │ └── writeup.md │ └── runway3 │ ├── go.py │ ├── runway3.zip │ └── writeup.md ├── 2024_10_12_BlueWaterCTF24 ├── README.md ├── crypto │ └── MD5.01 │ │ ├── go.py │ │ ├── main.py │ │ └── writeup.md ├── rev │ └── maybe_Checker │ │ ├── go.py │ │ ├── maybe_checker │ │ └── writeup.md └── web │ └── sandevistan │ └── writeup.md ├── 2024_10_19_SunshineCTF24 ├── README.md ├── crypto │ └── adventure_cipher │ │ ├── go.py │ │ ├── letter.txt │ │ └── writeup.md └── pwn │ ├── adventure_on_the_high_c │ ├── Dockerfile │ ├── go.py │ ├── ship.bin │ └── writeup.md │ └── flag_shop │ ├── flagshop │ ├── go.py │ └── writeup.md ├── 2024_10_25_HeroCTF24 ├── README.md ├── crypto │ ├── halloween │ │ ├── go.py │ │ ├── halloween.zip │ │ └── writeup.md │ ├── interpolation │ │ ├── go.py │ │ ├── go.sage │ │ ├── interpolation.zip │ │ ├── points.txt │ │ └── writeup.md │ └── paranoia │ │ ├── go.py │ │ ├── paranoia.zip │ │ └── writeup.md └── pwn │ ├── bankrupst │ ├── bankrupst │ ├── bankrupst.rs │ ├── go.py │ └── writeup.md │ └── heappie │ ├── go.py │ ├── heappie.zip │ └── writeup.md ├── 2024_11_01_HackTheVote24 ├── README.md └── pwn │ └── comma_club │ ├── comma-club.tar.gz │ ├── go.py │ └── writeup.md ├── 2024_11_10_BlueHens24 ├── README.md ├── crypto │ ├── hmac │ │ ├── dist.py │ │ ├── go.py │ │ └── writeup.md │ ├── intro_to_rsa │ │ ├── go.py │ │ └── writeup.md │ └── simon_says │ │ ├── go.py │ │ ├── simon_ctf.py │ │ └── writeup.md ├── pwn │ ├── intro_to_pwn │ │ ├── go.py │ │ ├── pwnme │ │ └── writeup.md │ ├── pure_write_what_where │ │ ├── go.py │ │ ├── pwnme │ │ └── writeup.md │ └── ret2bf │ │ ├── go.py │ │ ├── ret2bf.zip │ │ └── writeup.md ├── web │ ├── firefun_3 │ │ └── Writeup.md │ └── just-a-day-at-the-breach │ │ ├── go.py │ │ └── writeup.md └── xor │ ├── cbc_encrypted │ ├── cbcfun_lambda.py │ ├── go.py │ └── writeup.md │ ├── ctr_mode_is_just_xor │ ├── go.py │ ├── lambda.py │ └── writeup.md │ ├── roman_xor │ ├── go.py │ ├── romanXor.py │ └── writeup.md │ └── xor_without_xor │ ├── go.py │ └── writeup.md ├── 2024_11_15_1337UP24 ├── README.md ├── crypto │ ├── krsa │ │ ├── go.py │ │ ├── kRSA.py │ │ └── writeup.md │ └── schrodingers_pad │ │ ├── go.py │ │ ├── schrodingers_pad.zip │ │ └── writeup.md ├── pwn │ ├── floormat_mega_sale │ │ ├── floormat_sale.zip │ │ ├── go.py │ │ └── writeup.md │ ├── retro2win │ │ ├── go.py │ │ ├── retro2win.zip │ │ └── writeup.md │ ├── rigged_slot_machine_2 │ │ ├── go.py │ │ ├── rigged_slot2.zip │ │ └── writeup.md │ └── uap │ │ ├── go.py │ │ ├── uap.zip │ │ └── writeup.md └── rev │ └── secure_bank │ ├── go.py │ ├── secure_bank │ └── writeup.md ├── 2024_11_22_GlacierCTF24 ├── README.md ├── blockchain │ └── ArcticVault │ │ └── writeup.md └── crypto │ └── rivest_shamir_adleman_germain │ ├── go.py │ ├── rsag.tar.gz │ └── writeup.md ├── 2024_11_30_WWCTF24 ├── README.md ├── crypto │ └── simpler_rsa │ │ ├── chal.py │ │ ├── go.sage │ │ ├── out.txt │ │ └── writeup.md └── pwn │ ├── go.py │ ├── white_rabbit │ └── writeup.md ├── 2024_12_13_NiteCTF24 ├── README.md └── pwn │ ├── mixed_signal │ ├── go.py │ ├── handout.zip │ └── writeup.md │ └── print_the_gifts │ ├── go.py │ ├── handout.zip │ └── writeup.md ├── 2025_01_11_UofTCTF25 ├── README.md ├── forensics │ └── poof │ │ └── writeup.md └── pwn │ ├── baby_pwn │ ├── baby-pwn.zip │ ├── go.py │ └── writeup.md │ └── baby_pwn_2 │ ├── baby-pwn-2.zip │ ├── go.py │ └── writeup.md ├── 2025_01_18_SrdnlenCTF25 └── README.md ├── 2025_01_24_x3CTF25 ├── README.md ├── crypto │ └── curved-mvm │ │ ├── curved-mvm.tar.gz │ │ ├── go.py │ │ └── writeup.md ├── pwn │ ├── devnull-as-a-service │ │ ├── devnull-as-a-service.tar.gz │ │ ├── go.py │ │ └── writeup.md │ └── secure-sandbox │ │ ├── go.py │ │ └── secure-sandbox.tar.gz └── web │ ├── kittyconvert │ └── writeup.md │ └── submission │ └── writeup.md ├── 2025_02_01_BearcatCTF25 ├── README.md ├── crypto │ └── sqRSA │ │ ├── go.py │ │ ├── output.txt │ │ ├── sqRSA.py │ │ └── writeup.md └── pwn │ └── calling_convention │ ├── calling_convention.zip │ ├── go.py │ └── writeup.md ├── 2025_02_07_BITSCTF25 ├── README.md ├── crypto │ ├── alice_n_bob_in_wonderland │ │ ├── chall.py │ │ ├── go.py │ │ └── writeup.md │ └── baby_crypto │ │ ├── go.py │ │ └── writeup.md └── pwn │ ├── baby_pwn │ ├── go.py │ ├── main │ └── writeup.md │ └── biscuits │ ├── go.py │ ├── main │ └── writeup.md ├── 2025_02_15_BroncoCTF25 └── README.md ├── 2025_02_15_EHAXCTF25 ├── README.md └── pwn │ ├── cash_memo │ ├── chall.zip │ ├── go.py │ └── writeup.md │ └── fantastic_doom │ ├── chall.zip │ ├── go.py │ └── writeup.md ├── 2025_02_28_ApoorvCTF25 ├── README.md └── pwn │ ├── the_first_visit │ ├── files.zip │ ├── go.py │ └── writeup.md │ └── the_secret_blend │ ├── files.zip │ ├── go.py │ └── writeup.md ├── 2025_02_28_PwnMeCTFQuals25 ├── README.md ├── crypto │ └── easy_diffy │ │ ├── easy_diffy.zip │ │ ├── go.py │ │ └── writeup.md └── pwn │ └── got │ ├── go.py │ ├── got.zip │ └── writeup.md ├── 2025_03_07_KalmarCTF25 ├── Ez ⛳ v3 │ └── writeup.md ├── README.md └── dnxss │ └── writeup.md ├── 2025_03_07_PearlCTF25 ├── README.md ├── crypto │ ├── o1_punch_log │ │ ├── go.py │ │ ├── o_1__punch_log.zip │ │ └── writeup.md │ └── stegano_ellipto_graphy │ │ ├── go.py │ │ ├── hacked.zip │ │ └── writeup.md └── pwn │ ├── mr_ropot │ ├── go.py │ ├── mrropot.zip │ └── writeup.md │ ├── readme_please │ ├── go.py │ ├── readme_src.zip │ └── writeup.md │ └── treasure_hunt │ ├── go.py │ ├── treasurehunt.zip │ └── writeup.md ├── 2025_03_14_UTCTF25 ├── README.md ├── crypto │ ├── DCΔ │ │ ├── go.py │ │ ├── rsa.txt │ │ └── writeup.md │ ├── RSA │ │ ├── go.py │ │ ├── rsa.txt │ │ └── writeup.md │ └── espathra-csatu-banette │ │ ├── go.py │ │ ├── main.py │ │ └── writeup.md └── pwn │ ├── RETirement_plan │ ├── go.py │ ├── libc.so.6 │ ├── shellcode │ └── writeup.md │ └── secbof │ ├── Dockerfile │ ├── chal │ ├── go.py │ ├── start.sh │ └── writeup.md ├── 2025_03_15_Nowruz1404 ├── README.md ├── crypto │ ├── ez_rsa │ │ ├── EZ_RSA.py │ │ ├── go.py │ │ └── writeup.md │ └── ez_xor │ │ ├── EZ_XOR.py │ │ ├── go.py │ │ └── writeup.md └── pwn │ ├── seen_guessing │ ├── chall │ ├── go.py │ └── writeup.md │ └── seen_shop │ ├── go.py │ ├── seen-shop.c │ └── writeup.md ├── 2025_03_21_CyberApocalypse25 ├── README.md ├── crypto │ ├── hourcle │ │ ├── crypto_hourcle.zip │ │ ├── go.py │ │ └── writeup.md │ └── traces │ │ ├── crypto_traces.zip │ │ ├── go.py │ │ └── writeup.md └── pwn │ └── quack_quack │ ├── go.py │ ├── pwn_quack_quack.zip │ └── writeup.md ├── 2025_03_21_WolvCTF25 ├── README.md ├── crypto │ └── ecb++ │ │ ├── dist.tar.gz │ │ ├── go.py │ │ └── writeup.md └── pwn │ ├── drywall │ ├── dist.tar.gz │ ├── go.py │ └── writeup.md │ └── takenote │ ├── dist.tar.gz │ ├── go.py │ └── writeup.md ├── 2025_03_28_SwampCTF25 ├── README.md ├── crypto │ └── rock_my_password │ │ ├── go.py │ │ └── writeup.md └── pwn │ ├── beginner_pwn_1 │ ├── go.py │ ├── is_admin │ ├── main.c │ └── writeup.md │ ├── beginner_pwn_2 │ ├── binary │ ├── go.py │ └── writeup.md │ └── oh_my_buffer │ ├── binary │ ├── go.py │ └── writeup.md ├── 2025_03_28_TAMUCTF25 ├── README.md ├── crypto │ └── ECC │ │ ├── ecc.tar.gz │ │ ├── go.py │ │ └── writeup.md └── pwn │ └── debug-1 │ ├── debug-1.tar.gz │ ├── go.py │ └── writeup.md ├── 2025_04_04_Squ1rrelCTF25 ├── README.md ├── crypto │ ├── easy_rsa │ │ ├── easy_rsa.txt │ │ ├── go.py │ │ ├── rsa_easy.py │ │ └── writeup.md │ └── xor_101 │ │ └── writeup.md └── pwn │ ├── deja_vu │ ├── Dockerfile │ ├── deja-vu │ ├── go.py │ └── writeup.md │ └── jail │ ├── Dockerfile │ ├── go.py │ ├── prison │ └── writeup.md ├── 2025_04_11_1753CTF25 ├── README.md └── pwn │ └── leakcan │ ├── go.py │ ├── leakcan_chall │ └── writeup.md ├── 2025_04_12_THCon2K25CTF ├── README.md └── pwn │ └── gopwn │ ├── go.py │ ├── gopwn.zip │ └── writeup.md ├── 2025_04_18_DawgCTF25 ├── README.md ├── crypto │ ├── baby_rsa_1 │ │ ├── go.py │ │ ├── output.txt │ │ ├── source.py │ │ └── writeup.md │ └── baby_rsa_2 │ │ ├── chall.py │ │ ├── go.py │ │ ├── output.txt │ │ └── writeup.md └── pwn │ ├── 64_bits_in_my_ark_and_texture │ ├── chall │ ├── go.py │ └── writeup.md │ ├── clobber │ ├── clobber │ ├── go.py │ ├── ld.so │ └── libc.so.6 │ ├── interns_project │ ├── go.py │ ├── interns'Project │ └── writeup.md │ └── just_parry_lol │ ├── frame_trap │ ├── go.py │ └── writeup.md ├── 2025_04_25_UMDCTF25 ├── README.md └── pwn │ └── gambling2 │ ├── Dockerfile │ ├── Makefile │ ├── gambling │ ├── gambling.c │ ├── go.py │ └── writeup.md ├── 2025_05_10_DamCTF25 ├── README.md └── pwn │ └── dnd │ ├── dnd.zip │ ├── go.py │ └── writeup.md ├── 2025_05_23_NahamConCTF25 └── README.md ├── 2025_05_24_DaVinciCTF25 └── README.md └── README.md /2024_01_20_KnightCTF/README.md: -------------------------------------------------------------------------------- 1 | # KnightCTF 2024 Writeups 2 | 3 | https://ctftime.org/event/2209 4 | 5 | 115th place 980 points 6 | -------------------------------------------------------------------------------- /2024_01_20_KnightCTF/pwn/get_sword/get_sword: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_01_20_KnightCTF/pwn/get_sword/get_sword -------------------------------------------------------------------------------- /2024_01_20_KnightCTF/pwn/get_sword/get_sword.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_01_20_KnightCTF/pwn/get_sword/get_sword.md -------------------------------------------------------------------------------- /2024_01_20_KnightCTF/pwn/secret_scroll/secret_scroll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_01_20_KnightCTF/pwn/secret_scroll/secret_scroll.md -------------------------------------------------------------------------------- /2024_01_20_KnightCTF/pwn/win/win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_01_20_KnightCTF/pwn/win/win -------------------------------------------------------------------------------- /2024_01_20_KnightCTF/pwn/win/win.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_01_20_KnightCTF/pwn/win/win.md -------------------------------------------------------------------------------- /2024_01_20_KnightCTF/rev/dragons_binary/dragons_binary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_01_20_KnightCTF/rev/dragons_binary/dragons_binary.md -------------------------------------------------------------------------------- /2024_01_20_KnightCTF/rev/dragons_binary/task: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_01_20_KnightCTF/rev/dragons_binary/task -------------------------------------------------------------------------------- /2024_01_20_KnightCTF/rev/knight_armoury/knight_armoury: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_01_20_KnightCTF/rev/knight_armoury/knight_armoury -------------------------------------------------------------------------------- /2024_01_20_KnightCTF/rev/knight_armoury/knight_armoury.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_01_20_KnightCTF/rev/knight_armoury/knight_armoury.md -------------------------------------------------------------------------------- /2024_01_20_KnightCTF/steg/flag_hunt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_01_20_KnightCTF/steg/flag_hunt.md -------------------------------------------------------------------------------- /2024_01_20_KnightCTF/web/kitty/kitty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_01_20_KnightCTF/web/kitty/kitty.md -------------------------------------------------------------------------------- /2024_03_09_WxMCTF24/README.md: -------------------------------------------------------------------------------- 1 | # WxMCTF 2024 Writeups 2 | 3 | https://ctftime.org/event/2179 4 | 5 | 14th place 4521 points 6 | -------------------------------------------------------------------------------- /2024_03_09_WxMCTF24/crypto/crypto_3_racing/racing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_03_09_WxMCTF24/crypto/crypto_3_racing/racing.md -------------------------------------------------------------------------------- /2024_03_09_WxMCTF24/pwn/pwn_1_moodle_madness/moodle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_03_09_WxMCTF24/pwn/pwn_1_moodle_madness/moodle -------------------------------------------------------------------------------- /2024_03_09_WxMCTF24/pwn/pwn_1_moodle_madness/moodle_madness.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_03_09_WxMCTF24/pwn/pwn_1_moodle_madness/moodle_madness.md -------------------------------------------------------------------------------- /2024_03_09_WxMCTF24/pwn/pwn_2_tej3m/assgn1_2o3BvZ6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_03_09_WxMCTF24/pwn/pwn_2_tej3m/assgn1_2o3BvZ6 -------------------------------------------------------------------------------- /2024_03_09_WxMCTF24/pwn/pwn_2_tej3m/assgn1_ScZuUx0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_03_09_WxMCTF24/pwn/pwn_2_tej3m/assgn1_ScZuUx0.c -------------------------------------------------------------------------------- /2024_03_09_WxMCTF24/pwn/pwn_2_tej3m/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_03_09_WxMCTF24/pwn/pwn_2_tej3m/go.py -------------------------------------------------------------------------------- /2024_03_09_WxMCTF24/pwn/pwn_2_tej3m/tej3m.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_03_09_WxMCTF24/pwn/pwn_2_tej3m/tej3m.md -------------------------------------------------------------------------------- /2024_03_09_WxMCTF24/pwn/pwn_3_nah_id_win/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_03_09_WxMCTF24/pwn/pwn_3_nah_id_win/go.py -------------------------------------------------------------------------------- /2024_03_09_WxMCTF24/pwn/pwn_3_nah_id_win/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_03_09_WxMCTF24/pwn/pwn_3_nah_id_win/libc.so.6 -------------------------------------------------------------------------------- /2024_03_09_WxMCTF24/pwn/pwn_3_nah_id_win/nah_id_win.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_03_09_WxMCTF24/pwn/pwn_3_nah_id_win/nah_id_win.md -------------------------------------------------------------------------------- /2024_03_09_WxMCTF24/pwn/pwn_3_nah_id_win/vuln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_03_09_WxMCTF24/pwn/pwn_3_nah_id_win/vuln -------------------------------------------------------------------------------- /2024_03_09_WxMCTF24/pwn/pwn_3_nah_id_win/vuln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_03_09_WxMCTF24/pwn/pwn_3_nah_id_win/vuln.c -------------------------------------------------------------------------------- /2024_03_09_WxMCTF24/web/web_4_walmart/Walmart!.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_03_09_WxMCTF24/web/web_4_walmart/Walmart!.md -------------------------------------------------------------------------------- /2024_03_15_1753CTF/README.md: -------------------------------------------------------------------------------- 1 | # 1753CTF 2024 Writeups 2 | 3 | https://ctftime.org/event/2234 4 | 5 | 17th place 2810 points 6 | -------------------------------------------------------------------------------- /2024_03_15_1753CTF/pwn/brain_frick/brain-frick.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_03_15_1753CTF/pwn/brain_frick/brain-frick.zip -------------------------------------------------------------------------------- /2024_03_15_1753CTF/pwn/brain_frick/brain_frick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_03_15_1753CTF/pwn/brain_frick/brain_frick.md -------------------------------------------------------------------------------- /2024_03_15_1753CTF/pwn/brain_frick/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_03_15_1753CTF/pwn/brain_frick/go.py -------------------------------------------------------------------------------- /2024_03_15_1753CTF/pwn/brain_heck/brain-heck.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_03_15_1753CTF/pwn/brain_heck/brain-heck.zip -------------------------------------------------------------------------------- /2024_03_15_1753CTF/pwn/brain_heck/brain_heck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_03_15_1753CTF/pwn/brain_heck/brain_heck.md -------------------------------------------------------------------------------- /2024_03_15_1753CTF/pwn/brain_heck/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_03_15_1753CTF/pwn/brain_heck/go.py -------------------------------------------------------------------------------- /2024_03_15_1753CTF/pwn/matrix_preloaded/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_03_15_1753CTF/pwn/matrix_preloaded/go.py -------------------------------------------------------------------------------- /2024_03_15_1753CTF/pwn/matrix_preloaded/matrix-preloaded.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_03_15_1753CTF/pwn/matrix_preloaded/matrix-preloaded.zip -------------------------------------------------------------------------------- /2024_03_15_1753CTF/pwn/matrix_preloaded/matrix_preloaded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_03_15_1753CTF/pwn/matrix_preloaded/matrix_preloaded.md -------------------------------------------------------------------------------- /2024_03_15_1753CTF/pwn/matrix_preloaded/shellcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_03_15_1753CTF/pwn/matrix_preloaded/shellcode -------------------------------------------------------------------------------- /2024_03_15_1753CTF/pwn/matrix_preloaded/shellcode.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_03_15_1753CTF/pwn/matrix_preloaded/shellcode.asm -------------------------------------------------------------------------------- /2024_03_15_1753CTF/pwn/write_only/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_03_15_1753CTF/pwn/write_only/go.py -------------------------------------------------------------------------------- /2024_03_15_1753CTF/pwn/write_only/write-only.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_03_15_1753CTF/pwn/write_only/write-only.zip -------------------------------------------------------------------------------- /2024_03_15_1753CTF/pwn/write_only/write_only.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_03_15_1753CTF/pwn/write_only/write_only.md -------------------------------------------------------------------------------- /2024_04_07_TamuCTF24/README.md: -------------------------------------------------------------------------------- 1 | # TAMUCTF 2024 Writeups 2 | 3 | https://ctftime.org/event/2238 4 | 5 | 74th place 2202 points 6 | -------------------------------------------------------------------------------- /2024_04_07_TamuCTF24/cry/criminal/criminal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_04_07_TamuCTF24/cry/criminal/criminal.md -------------------------------------------------------------------------------- /2024_04_07_TamuCTF24/cry/criminal/criminal.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_04_07_TamuCTF24/cry/criminal/criminal.zip -------------------------------------------------------------------------------- /2024_04_07_TamuCTF24/pwn/admin_panel/admin-panel.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_04_07_TamuCTF24/pwn/admin_panel/admin-panel.zip -------------------------------------------------------------------------------- /2024_04_07_TamuCTF24/pwn/admin_panel/admin_panel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_04_07_TamuCTF24/pwn/admin_panel/admin_panel.md -------------------------------------------------------------------------------- /2024_04_07_TamuCTF24/pwn/super_lucky/super-lucky.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_04_07_TamuCTF24/pwn/super_lucky/super-lucky.zip -------------------------------------------------------------------------------- /2024_04_07_TamuCTF24/pwn/super_lucky/super_lucky.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_04_07_TamuCTF24/pwn/super_lucky/super_lucky.md -------------------------------------------------------------------------------- /2024_04_07_TamuCTF24/rev/pwndbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_04_07_TamuCTF24/rev/pwndbg.png -------------------------------------------------------------------------------- /2024_04_07_TamuCTF24/rev/resistant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_04_07_TamuCTF24/rev/resistant.md -------------------------------------------------------------------------------- /2024_04_07_TamuCTF24/rev/resistant.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_04_07_TamuCTF24/rev/resistant.zip -------------------------------------------------------------------------------- /2024_05_17_BYUCTF24/README.md: -------------------------------------------------------------------------------- 1 | # BYUCTF 2024 Writeups 2 | 3 | https://ctftime.org/event/2252 4 | 5 | 29th place 6717 points 6 | -------------------------------------------------------------------------------- /2024_05_17_BYUCTF24/cry/are_s_a/cne.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_05_17_BYUCTF24/cry/are_s_a/cne.txt -------------------------------------------------------------------------------- /2024_05_17_BYUCTF24/cry/are_s_a/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_05_17_BYUCTF24/cry/are_s_a/writeup.md -------------------------------------------------------------------------------- /2024_05_17_BYUCTF24/cry/times/mul_safe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_05_17_BYUCTF24/cry/times/mul_safe.py -------------------------------------------------------------------------------- /2024_05_17_BYUCTF24/cry/times/times.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_05_17_BYUCTF24/cry/times/times.txt -------------------------------------------------------------------------------- /2024_05_17_BYUCTF24/cry/times/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_05_17_BYUCTF24/cry/times/writeup.md -------------------------------------------------------------------------------- /2024_05_17_BYUCTF24/fore/Stardust_Whispers/Stardust Whispers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_05_17_BYUCTF24/fore/Stardust_Whispers/Stardust Whispers.md -------------------------------------------------------------------------------- /2024_05_17_BYUCTF24/fore/Stardust_Whispers/Stardust_Whispers.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_05_17_BYUCTF24/fore/Stardust_Whispers/Stardust_Whispers.docx -------------------------------------------------------------------------------- /2024_05_17_BYUCTF24/fore/Stardust_Whispers/fun.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_05_17_BYUCTF24/fore/Stardust_Whispers/fun.pcapng -------------------------------------------------------------------------------- /2024_05_17_BYUCTF24/pwn/all/all.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_05_17_BYUCTF24/pwn/all/all.zip -------------------------------------------------------------------------------- /2024_05_17_BYUCTF24/pwn/all/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_05_17_BYUCTF24/pwn/all/go.py -------------------------------------------------------------------------------- /2024_05_17_BYUCTF24/pwn/all/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_05_17_BYUCTF24/pwn/all/writeup.md -------------------------------------------------------------------------------- /2024_05_17_BYUCTF24/pwn/numbersss/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_05_17_BYUCTF24/pwn/numbersss/Dockerfile -------------------------------------------------------------------------------- /2024_05_17_BYUCTF24/pwn/numbersss/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_05_17_BYUCTF24/pwn/numbersss/go.py -------------------------------------------------------------------------------- /2024_05_17_BYUCTF24/pwn/numbersss/numbersss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_05_17_BYUCTF24/pwn/numbersss/numbersss -------------------------------------------------------------------------------- /2024_05_17_BYUCTF24/pwn/numbersss/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_05_17_BYUCTF24/pwn/numbersss/writeup.md -------------------------------------------------------------------------------- /2024_05_17_BYUCTF24/pwn/static/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_05_17_BYUCTF24/pwn/static/go.py -------------------------------------------------------------------------------- /2024_05_17_BYUCTF24/pwn/static/static: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_05_17_BYUCTF24/pwn/static/static -------------------------------------------------------------------------------- /2024_05_17_BYUCTF24/pwn/static/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_05_17_BYUCTF24/pwn/static/writeup.md -------------------------------------------------------------------------------- /2024_05_17_BYUCTF24/web/argument/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_05_17_BYUCTF24/web/argument/writeup.md -------------------------------------------------------------------------------- /2024_05_17_BYUCTF24/web/not-a-problem/Writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_05_17_BYUCTF24/web/not-a-problem/Writeup.md -------------------------------------------------------------------------------- /2024_05_17_BYUCTF24/web/not-a-problem/not-a-problem.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_05_17_BYUCTF24/web/not-a-problem/not-a-problem.zip -------------------------------------------------------------------------------- /2024_05_17_BYUCTF24/web/porg_city/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_05_17_BYUCTF24/web/porg_city/writeup.md -------------------------------------------------------------------------------- /2024_05_17_BYUCTF24/web/random/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_05_17_BYUCTF24/web/random/writeup.md -------------------------------------------------------------------------------- /2024_05_17_BYUCTF24/web/triple-whammy/Writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_05_17_BYUCTF24/web/triple-whammy/Writeup.md -------------------------------------------------------------------------------- /2024_05_17_BYUCTF24/web/triple-whammy/triple-whammy.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_05_17_BYUCTF24/web/triple-whammy/triple-whammy.zip -------------------------------------------------------------------------------- /2024_06_08_Akasec24/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_08_Akasec24/README.md -------------------------------------------------------------------------------- /2024_06_08_Akasec24/pwn/bad_trip/bad_trip.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_08_Akasec24/pwn/bad_trip/bad_trip.zip -------------------------------------------------------------------------------- /2024_06_08_Akasec24/pwn/bad_trip/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_08_Akasec24/pwn/bad_trip/go.py -------------------------------------------------------------------------------- /2024_06_08_Akasec24/pwn/bad_trip/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_08_Akasec24/pwn/bad_trip/writeup.md -------------------------------------------------------------------------------- /2024_06_08_Akasec24/pwn/good_trip/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_08_Akasec24/pwn/good_trip/go.py -------------------------------------------------------------------------------- /2024_06_08_Akasec24/pwn/good_trip/good_trip.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_08_Akasec24/pwn/good_trip/good_trip.zip -------------------------------------------------------------------------------- /2024_06_08_Akasec24/pwn/good_trip/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_08_Akasec24/pwn/good_trip/writeup.md -------------------------------------------------------------------------------- /2024_06_08_Akasec24/pwn/warmup/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_08_Akasec24/pwn/warmup/go.py -------------------------------------------------------------------------------- /2024_06_08_Akasec24/pwn/warmup/warmup.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_08_Akasec24/pwn/warmup/warmup.zip -------------------------------------------------------------------------------- /2024_06_08_Akasec24/pwn/warmup/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_08_Akasec24/pwn/warmup/writeup.md -------------------------------------------------------------------------------- /2024_06_15_jCTF_Teaser24/README.md: -------------------------------------------------------------------------------- 1 | # jCTF Teaser 2024 Writeups 2 | 3 | https://ctftime.org/event/2342 4 | 5 | 106 place 224 points 6 | -------------------------------------------------------------------------------- /2024_06_15_jCTF_Teaser24/pwn/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_15_jCTF_Teaser24/pwn/go.py -------------------------------------------------------------------------------- /2024_06_15_jCTF_Teaser24/pwn/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_15_jCTF_Teaser24/pwn/writeup.md -------------------------------------------------------------------------------- /2024_06_21_WaniCTF24/README.md: -------------------------------------------------------------------------------- 1 | # Wani CTF 2024 Writeups 2 | 3 | https://ctftime.org/event/2377 4 | 5 | 78 place 2413 points 6 | -------------------------------------------------------------------------------- /2024_06_21_WaniCTF24/crypto/beginners_aes/cry-beginners-aes.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_21_WaniCTF24/crypto/beginners_aes/cry-beginners-aes.zip -------------------------------------------------------------------------------- /2024_06_21_WaniCTF24/crypto/beginners_aes/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_21_WaniCTF24/crypto/beginners_aes/go.py -------------------------------------------------------------------------------- /2024_06_21_WaniCTF24/crypto/beginners_aes/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_21_WaniCTF24/crypto/beginners_aes/writeup.md -------------------------------------------------------------------------------- /2024_06_21_WaniCTF24/crypto/beginners_rsa/cry-beginners-rsa.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_21_WaniCTF24/crypto/beginners_rsa/cry-beginners-rsa.zip -------------------------------------------------------------------------------- /2024_06_21_WaniCTF24/crypto/beginners_rsa/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_21_WaniCTF24/crypto/beginners_rsa/go.py -------------------------------------------------------------------------------- /2024_06_21_WaniCTF24/crypto/beginners_rsa/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_21_WaniCTF24/crypto/beginners_rsa/writeup.md -------------------------------------------------------------------------------- /2024_06_21_WaniCTF24/crypto/dance/cry-dance.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_21_WaniCTF24/crypto/dance/cry-dance.zip -------------------------------------------------------------------------------- /2024_06_21_WaniCTF24/crypto/dance/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_21_WaniCTF24/crypto/dance/go.py -------------------------------------------------------------------------------- /2024_06_21_WaniCTF24/crypto/dance/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_21_WaniCTF24/crypto/dance/writeup.md -------------------------------------------------------------------------------- /2024_06_21_WaniCTF24/crypto/replacement/cry-replacement.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_21_WaniCTF24/crypto/replacement/cry-replacement.zip -------------------------------------------------------------------------------- /2024_06_21_WaniCTF24/crypto/replacement/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_21_WaniCTF24/crypto/replacement/go.py -------------------------------------------------------------------------------- /2024_06_21_WaniCTF24/crypto/replacement/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_21_WaniCTF24/crypto/replacement/writeup.md -------------------------------------------------------------------------------- /2024_06_21_WaniCTF24/misc/sh/mis-sh.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_21_WaniCTF24/misc/sh/mis-sh.zip -------------------------------------------------------------------------------- /2024_06_21_WaniCTF24/misc/sh/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_21_WaniCTF24/misc/sh/writeup.md -------------------------------------------------------------------------------- /2024_06_21_WaniCTF24/pwn/do_not_rewrite/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_21_WaniCTF24/pwn/do_not_rewrite/go.py -------------------------------------------------------------------------------- /2024_06_21_WaniCTF24/pwn/do_not_rewrite/pwn-do-not-rewrite.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_21_WaniCTF24/pwn/do_not_rewrite/pwn-do-not-rewrite.zip -------------------------------------------------------------------------------- /2024_06_21_WaniCTF24/pwn/do_not_rewrite/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_21_WaniCTF24/pwn/do_not_rewrite/writeup.md -------------------------------------------------------------------------------- /2024_06_21_WaniCTF24/pwn/do_not_rewrite2/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_21_WaniCTF24/pwn/do_not_rewrite2/go.py -------------------------------------------------------------------------------- /2024_06_21_WaniCTF24/pwn/do_not_rewrite2/pwn-do-not-rewrite2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_21_WaniCTF24/pwn/do_not_rewrite2/pwn-do-not-rewrite2.zip -------------------------------------------------------------------------------- /2024_06_21_WaniCTF24/pwn/do_not_rewrite2/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_21_WaniCTF24/pwn/do_not_rewrite2/writeup.md -------------------------------------------------------------------------------- /2024_06_21_WaniCTF24/rev/home/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_21_WaniCTF24/rev/home/go.py -------------------------------------------------------------------------------- /2024_06_21_WaniCTF24/rev/home/rev-home.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_21_WaniCTF24/rev/home/rev-home.zip -------------------------------------------------------------------------------- /2024_06_21_WaniCTF24/rev/home/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_21_WaniCTF24/rev/home/writeup.md -------------------------------------------------------------------------------- /2024_06_21_WaniCTF24/rev/thread/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_21_WaniCTF24/rev/thread/go.py -------------------------------------------------------------------------------- /2024_06_21_WaniCTF24/rev/thread/rev-thread.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_21_WaniCTF24/rev/thread/rev-thread.zip -------------------------------------------------------------------------------- /2024_06_21_WaniCTF24/rev/thread/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_21_WaniCTF24/rev/thread/writeup.md -------------------------------------------------------------------------------- /2024_06_21_WaniCTF24/web/elec/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_21_WaniCTF24/web/elec/writeup.md -------------------------------------------------------------------------------- /2024_06_21_WaniCTF24/web/noscript/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_21_WaniCTF24/web/noscript/writeup.md -------------------------------------------------------------------------------- /2024_06_21_WaniCTF24/web/one-day-one-letter/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_21_WaniCTF24/web/one-day-one-letter/writeup.md -------------------------------------------------------------------------------- /2024_06_29_UIUCTFCTF24/README.md: -------------------------------------------------------------------------------- 1 | # UIUCTF 2024 Writeups 2 | 3 | https://ctftime.org/event/2275 4 | 5 | 190th place 2023 points 6 | -------------------------------------------------------------------------------- /2024_06_29_UIUCTFCTF24/crypto/without_a_trace/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_29_UIUCTFCTF24/crypto/without_a_trace/go.py -------------------------------------------------------------------------------- /2024_06_29_UIUCTFCTF24/crypto/without_a_trace/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_29_UIUCTFCTF24/crypto/without_a_trace/server.py -------------------------------------------------------------------------------- /2024_06_29_UIUCTFCTF24/crypto/without_a_trace/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_29_UIUCTFCTF24/crypto/without_a_trace/writeup.md -------------------------------------------------------------------------------- /2024_06_29_UIUCTFCTF24/crypto/x_marked_the_spot/ct: -------------------------------------------------------------------------------- 1 |  X6S. Z.^; 9^]T6 2 | U5BHPCGK -------------------------------------------------------------------------------- /2024_06_29_UIUCTFCTF24/crypto/x_marked_the_spot/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_29_UIUCTFCTF24/crypto/x_marked_the_spot/go.py -------------------------------------------------------------------------------- /2024_06_29_UIUCTFCTF24/crypto/x_marked_the_spot/public.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_29_UIUCTFCTF24/crypto/x_marked_the_spot/public.py -------------------------------------------------------------------------------- /2024_06_29_UIUCTFCTF24/crypto/x_marked_the_spot/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_29_UIUCTFCTF24/crypto/x_marked_the_spot/writeup.md -------------------------------------------------------------------------------- /2024_06_29_UIUCTFCTF24/misc/push_and_pickle/chal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_29_UIUCTFCTF24/misc/push_and_pickle/chal.py -------------------------------------------------------------------------------- /2024_06_29_UIUCTFCTF24/misc/push_and_pickle/chal_part2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_29_UIUCTFCTF24/misc/push_and_pickle/chal_part2.py -------------------------------------------------------------------------------- /2024_06_29_UIUCTFCTF24/misc/push_and_pickle/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_29_UIUCTFCTF24/misc/push_and_pickle/writeup.md -------------------------------------------------------------------------------- /2024_06_29_UIUCTFCTF24/misc/slot-machine/chal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_29_UIUCTFCTF24/misc/slot-machine/chal.py -------------------------------------------------------------------------------- /2024_06_29_UIUCTFCTF24/misc/slot-machine/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_29_UIUCTFCTF24/misc/slot-machine/writeup.md -------------------------------------------------------------------------------- /2024_06_29_UIUCTFCTF24/pwn/syscalls/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_29_UIUCTFCTF24/pwn/syscalls/Dockerfile -------------------------------------------------------------------------------- /2024_06_29_UIUCTFCTF24/pwn/syscalls/Dockerfile.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_29_UIUCTFCTF24/pwn/syscalls/Dockerfile.local -------------------------------------------------------------------------------- /2024_06_29_UIUCTFCTF24/pwn/syscalls/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_29_UIUCTFCTF24/pwn/syscalls/go.py -------------------------------------------------------------------------------- /2024_06_29_UIUCTFCTF24/pwn/syscalls/syscalls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_29_UIUCTFCTF24/pwn/syscalls/syscalls -------------------------------------------------------------------------------- /2024_06_29_UIUCTFCTF24/pwn/syscalls/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_29_UIUCTFCTF24/pwn/syscalls/writeup.md -------------------------------------------------------------------------------- /2024_06_29_UIUCTFCTF24/web/fare-evasion/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_06_29_UIUCTFCTF24/web/fare-evasion/writeup.md -------------------------------------------------------------------------------- /2024_07_06_DUCTF24/README.md: -------------------------------------------------------------------------------- 1 | # DUCTF 2024 Writeups 2 | 3 | https://ctftime.org/event/2284 4 | 5 | 647th place 809 points 6 | -------------------------------------------------------------------------------- /2024_07_06_DUCTF24/pwn/vector_overflow/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_06_DUCTF24/pwn/vector_overflow/go.py -------------------------------------------------------------------------------- /2024_07_06_DUCTF24/pwn/vector_overflow/vector_overflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_06_DUCTF24/pwn/vector_overflow/vector_overflow -------------------------------------------------------------------------------- /2024_07_06_DUCTF24/pwn/vector_overflow/vector_overflow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_06_DUCTF24/pwn/vector_overflow/vector_overflow.cpp -------------------------------------------------------------------------------- /2024_07_06_DUCTF24/pwn/vector_overflow/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_06_DUCTF24/pwn/vector_overflow/writeup.md -------------------------------------------------------------------------------- /2024_07_06_DUCTF24/pwn/yawa/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_06_DUCTF24/pwn/yawa/go.py -------------------------------------------------------------------------------- /2024_07_06_DUCTF24/pwn/yawa/ld-linux-x86-64.so.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_06_DUCTF24/pwn/yawa/ld-linux-x86-64.so.2 -------------------------------------------------------------------------------- /2024_07_06_DUCTF24/pwn/yawa/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_06_DUCTF24/pwn/yawa/libc.so.6 -------------------------------------------------------------------------------- /2024_07_06_DUCTF24/pwn/yawa/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_06_DUCTF24/pwn/yawa/writeup.md -------------------------------------------------------------------------------- /2024_07_06_DUCTF24/pwn/yawa/yawa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_06_DUCTF24/pwn/yawa/yawa -------------------------------------------------------------------------------- /2024_07_06_DUCTF24/pwn/yawa/yawa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_06_DUCTF24/pwn/yawa/yawa.c -------------------------------------------------------------------------------- /2024_07_06_DUCTF24/rev/number_mashing/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_06_DUCTF24/rev/number_mashing/go.py -------------------------------------------------------------------------------- /2024_07_06_DUCTF24/rev/number_mashing/number-mashing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_06_DUCTF24/rev/number_mashing/number-mashing -------------------------------------------------------------------------------- /2024_07_06_DUCTF24/rev/number_mashing/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_06_DUCTF24/rev/number_mashing/writeup.md -------------------------------------------------------------------------------- /2024_07_13_OSCTF24/README.md: -------------------------------------------------------------------------------- 1 | # OSCTF 2024 Writeups 2 | 3 | https://ctftime.org/event/2416 4 | 5 | 194th place 1565 points 6 | -------------------------------------------------------------------------------- /2024_07_13_OSCTF24/pwn/buffer_buffet/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_13_OSCTF24/pwn/buffer_buffet/go.py -------------------------------------------------------------------------------- /2024_07_13_OSCTF24/pwn/buffer_buffet/vuln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_13_OSCTF24/pwn/buffer_buffet/vuln -------------------------------------------------------------------------------- /2024_07_13_OSCTF24/pwn/buffer_buffet/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_13_OSCTF24/pwn/buffer_buffet/writeup.md -------------------------------------------------------------------------------- /2024_07_13_OSCTF24/pwn/byte_breakup/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_13_OSCTF24/pwn/byte_breakup/go.py -------------------------------------------------------------------------------- /2024_07_13_OSCTF24/pwn/byte_breakup/vuln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_13_OSCTF24/pwn/byte_breakup/vuln -------------------------------------------------------------------------------- /2024_07_13_OSCTF24/pwn/byte_breakup/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_13_OSCTF24/pwn/byte_breakup/writeup.md -------------------------------------------------------------------------------- /2024_07_13_OSCTF24/pwn/coal_mine_canary/challenge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_13_OSCTF24/pwn/coal_mine_canary/challenge -------------------------------------------------------------------------------- /2024_07_13_OSCTF24/pwn/coal_mine_canary/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_13_OSCTF24/pwn/coal_mine_canary/go.py -------------------------------------------------------------------------------- /2024_07_13_OSCTF24/pwn/coal_mine_canary/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_13_OSCTF24/pwn/coal_mine_canary/writeup.md -------------------------------------------------------------------------------- /2024_07_13_OSCTF24/pwn/leaky_pipes/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_13_OSCTF24/pwn/leaky_pipes/go.py -------------------------------------------------------------------------------- /2024_07_13_OSCTF24/pwn/leaky_pipes/leaky_pipes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_13_OSCTF24/pwn/leaky_pipes/leaky_pipes -------------------------------------------------------------------------------- /2024_07_13_OSCTF24/pwn/leaky_pipes/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_13_OSCTF24/pwn/leaky_pipes/writeup.md -------------------------------------------------------------------------------- /2024_07_13_OSCTF24/pwn/lib_riddle/challenge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_13_OSCTF24/pwn/lib_riddle/challenge -------------------------------------------------------------------------------- /2024_07_13_OSCTF24/pwn/lib_riddle/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_13_OSCTF24/pwn/lib_riddle/go.py -------------------------------------------------------------------------------- /2024_07_13_OSCTF24/pwn/lib_riddle/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_13_OSCTF24/pwn/lib_riddle/writeup.md -------------------------------------------------------------------------------- /2024_07_13_OSCTF24/pwn/seed_spring/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_13_OSCTF24/pwn/seed_spring/go.py -------------------------------------------------------------------------------- /2024_07_13_OSCTF24/pwn/seed_spring/seed_spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_13_OSCTF24/pwn/seed_spring/seed_spring -------------------------------------------------------------------------------- /2024_07_13_OSCTF24/pwn/seed_spring/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_13_OSCTF24/pwn/seed_spring/writeup.md -------------------------------------------------------------------------------- /2024_07_13_OSCTF24/pwn/shell_mischief/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_13_OSCTF24/pwn/shell_mischief/go.py -------------------------------------------------------------------------------- /2024_07_13_OSCTF24/pwn/shell_mischief/vuln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_13_OSCTF24/pwn/shell_mischief/vuln -------------------------------------------------------------------------------- /2024_07_13_OSCTF24/pwn/shell_mischief/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_13_OSCTF24/pwn/shell_mischief/writeup.md -------------------------------------------------------------------------------- /2024_07_19_Imaginary24/README.md: -------------------------------------------------------------------------------- 1 | # Imaginary 2024 Writeups 2 | 3 | https://ctftime.org/event/2396 4 | 5 | 149th place 1734 points 6 | -------------------------------------------------------------------------------- /2024_07_19_Imaginary24/crypto/base64/files.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_19_Imaginary24/crypto/base64/files.zip -------------------------------------------------------------------------------- /2024_07_19_Imaginary24/crypto/base64/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_19_Imaginary24/crypto/base64/go.py -------------------------------------------------------------------------------- /2024_07_19_Imaginary24/crypto/base64/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_19_Imaginary24/crypto/base64/writeup.md -------------------------------------------------------------------------------- /2024_07_19_Imaginary24/crypto/tango/files.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_19_Imaginary24/crypto/tango/files.zip -------------------------------------------------------------------------------- /2024_07_19_Imaginary24/crypto/tango/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_19_Imaginary24/crypto/tango/go.py -------------------------------------------------------------------------------- /2024_07_19_Imaginary24/crypto/tango/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_19_Imaginary24/crypto/tango/writeup.md -------------------------------------------------------------------------------- /2024_07_19_Imaginary24/misc/gdbjail1/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_19_Imaginary24/misc/gdbjail1/writeup.md -------------------------------------------------------------------------------- /2024_07_19_Imaginary24/misc/gdbjail2/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_19_Imaginary24/misc/gdbjail2/writeup.md -------------------------------------------------------------------------------- /2024_07_19_Imaginary24/misc/ok-nice/jail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_19_Imaginary24/misc/ok-nice/jail.py -------------------------------------------------------------------------------- /2024_07_19_Imaginary24/misc/ok-nice/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_19_Imaginary24/misc/ok-nice/writeup.md -------------------------------------------------------------------------------- /2024_07_19_Imaginary24/misc/starship/files.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_19_Imaginary24/misc/starship/files.zip -------------------------------------------------------------------------------- /2024_07_19_Imaginary24/misc/starship/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_19_Imaginary24/misc/starship/go.py -------------------------------------------------------------------------------- /2024_07_19_Imaginary24/misc/starship/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_19_Imaginary24/misc/starship/writeup.md -------------------------------------------------------------------------------- /2024_07_19_Imaginary24/pwn/imgstore/files.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_19_Imaginary24/pwn/imgstore/files.zip -------------------------------------------------------------------------------- /2024_07_19_Imaginary24/pwn/imgstore/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_19_Imaginary24/pwn/imgstore/go.py -------------------------------------------------------------------------------- /2024_07_19_Imaginary24/pwn/imgstore/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_19_Imaginary24/pwn/imgstore/writeup.md -------------------------------------------------------------------------------- /2024_07_19_Imaginary24/web/journal/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_19_Imaginary24/web/journal/writeup.md -------------------------------------------------------------------------------- /2024_07_26_DeadSecCTF24/README.md: -------------------------------------------------------------------------------- 1 | # DeadSec 2024 Writeups 2 | 3 | https://ctftime.org/event/2353 4 | 5 | 314th place 200 points 6 | -------------------------------------------------------------------------------- /2024_07_26_DeadSecCTF24/crypto/flag_killer/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_26_DeadSecCTF24/crypto/flag_killer/go.py -------------------------------------------------------------------------------- /2024_07_26_DeadSecCTF24/crypto/flag_killer/public.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_26_DeadSecCTF24/crypto/flag_killer/public.zip -------------------------------------------------------------------------------- /2024_07_26_DeadSecCTF24/crypto/flag_killer/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_26_DeadSecCTF24/crypto/flag_killer/writeup.md -------------------------------------------------------------------------------- /2024_07_26_DeadSecCTF24/pwn/super_cpp_calculator/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_26_DeadSecCTF24/pwn/super_cpp_calculator/go.py -------------------------------------------------------------------------------- /2024_07_26_DeadSecCTF24/pwn/super_cpp_calculator/public.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_26_DeadSecCTF24/pwn/super_cpp_calculator/public.zip -------------------------------------------------------------------------------- /2024_07_26_DeadSecCTF24/pwn/super_cpp_calculator/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_07_26_DeadSecCTF24/pwn/super_cpp_calculator/writeup.md -------------------------------------------------------------------------------- /2024_08_03_TFCCTF24/README.md: -------------------------------------------------------------------------------- 1 | # TFCCTF 2024 Writeups 2 | 3 | https://ctftime.org/event/2423 4 | 5 | 32nd place 2552 points 6 | -------------------------------------------------------------------------------- /2024_08_03_TFCCTF24/crypto/biased_elections/biased_elections.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_08_03_TFCCTF24/crypto/biased_elections/biased_elections.zip -------------------------------------------------------------------------------- /2024_08_03_TFCCTF24/crypto/biased_elections/go-sage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_08_03_TFCCTF24/crypto/biased_elections/go-sage.py -------------------------------------------------------------------------------- /2024_08_03_TFCCTF24/crypto/biased_elections/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_08_03_TFCCTF24/crypto/biased_elections/go.py -------------------------------------------------------------------------------- /2024_08_03_TFCCTF24/crypto/biased_elections/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_08_03_TFCCTF24/crypto/biased_elections/writeup.md -------------------------------------------------------------------------------- /2024_08_03_TFCCTF24/crypto/ccccc/ccccc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_08_03_TFCCTF24/crypto/ccccc/ccccc.txt -------------------------------------------------------------------------------- /2024_08_03_TFCCTF24/crypto/ccccc/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_08_03_TFCCTF24/crypto/ccccc/go.py -------------------------------------------------------------------------------- /2024_08_03_TFCCTF24/crypto/ccccc/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_08_03_TFCCTF24/crypto/ccccc/writeup.md -------------------------------------------------------------------------------- /2024_08_03_TFCCTF24/crypto/conway/conway.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_08_03_TFCCTF24/crypto/conway/conway.zip -------------------------------------------------------------------------------- /2024_08_03_TFCCTF24/crypto/conway/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_08_03_TFCCTF24/crypto/conway/go.py -------------------------------------------------------------------------------- /2024_08_03_TFCCTF24/crypto/conway/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_08_03_TFCCTF24/crypto/conway/writeup.md -------------------------------------------------------------------------------- /2024_08_03_TFCCTF24/crypto/genetics/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_08_03_TFCCTF24/crypto/genetics/go.py -------------------------------------------------------------------------------- /2024_08_03_TFCCTF24/crypto/genetics/task.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_08_03_TFCCTF24/crypto/genetics/task.txt -------------------------------------------------------------------------------- /2024_08_03_TFCCTF24/crypto/genetics/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_08_03_TFCCTF24/crypto/genetics/writeup.md -------------------------------------------------------------------------------- /2024_08_03_TFCCTF24/pwn/guard_the_bypass/chall.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_08_03_TFCCTF24/pwn/guard_the_bypass/chall.zip -------------------------------------------------------------------------------- /2024_08_03_TFCCTF24/pwn/guard_the_bypass/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_08_03_TFCCTF24/pwn/guard_the_bypass/go.py -------------------------------------------------------------------------------- /2024_08_03_TFCCTF24/pwn/guard_the_bypass/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_08_03_TFCCTF24/pwn/guard_the_bypass/writeup.md -------------------------------------------------------------------------------- /2024_08_03_TFCCTF24/rev/functional/functional.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_08_03_TFCCTF24/rev/functional/functional.zip -------------------------------------------------------------------------------- /2024_08_03_TFCCTF24/rev/functional/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_08_03_TFCCTF24/rev/functional/go.py -------------------------------------------------------------------------------- /2024_08_03_TFCCTF24/rev/functional/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_08_03_TFCCTF24/rev/functional/writeup.md -------------------------------------------------------------------------------- /2024_08_03_TFCCTF24/rev/signal/go.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_08_03_TFCCTF24/rev/signal/go.c -------------------------------------------------------------------------------- /2024_08_03_TFCCTF24/rev/signal/inscount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_08_03_TFCCTF24/rev/signal/inscount.py -------------------------------------------------------------------------------- /2024_08_03_TFCCTF24/rev/signal/signal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_08_03_TFCCTF24/rev/signal/signal -------------------------------------------------------------------------------- /2024_08_03_TFCCTF24/rev/signal/worker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_08_03_TFCCTF24/rev/signal/worker.c -------------------------------------------------------------------------------- /2024_08_03_TFCCTF24/rev/signal/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_08_03_TFCCTF24/rev/signal/writeup.md -------------------------------------------------------------------------------- /2024_08_03_TFCCTF24/web/flask-destroyer/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_08_03_TFCCTF24/web/flask-destroyer/writeup.md -------------------------------------------------------------------------------- /2024_08_03_TFCCTF24/web/funny/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_08_03_TFCCTF24/web/funny/writeup.md -------------------------------------------------------------------------------- /2024_08_03_TFCCTF24/web/surfing/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_08_03_TFCCTF24/web/surfing/writeup.md -------------------------------------------------------------------------------- /2024_08_10_LITCTF24/README.md: -------------------------------------------------------------------------------- 1 | # LITCTF 2024 Writeups 2 | 3 | https://ctftime.org/event/2444 4 | 5 | 604th place 333 points 6 | -------------------------------------------------------------------------------- /2024_08_10_LITCTF24/crypto/chal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_08_10_LITCTF24/crypto/chal.py -------------------------------------------------------------------------------- /2024_08_10_LITCTF24/crypto/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_08_10_LITCTF24/crypto/go.py -------------------------------------------------------------------------------- /2024_08_10_LITCTF24/crypto/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_08_10_LITCTF24/crypto/writeup.md -------------------------------------------------------------------------------- /2024_08_17_idekCTF24/README.md: -------------------------------------------------------------------------------- 1 | # idekCTF 2024 Writeups 2 | 3 | https://ctftime.org/event/2304 4 | 752nd place 100 points 5 | -------------------------------------------------------------------------------- /2024_09_06_CSAWQuals24/README.md: -------------------------------------------------------------------------------- 1 | # CSAW Quals 2024 Writeups 2 | 3 | https://ctftime.org/event/2398 4 | 5 | 225th place 1208 points 6 | -------------------------------------------------------------------------------- /2024_09_06_CSAWQuals24/crypto/cbc/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_06_CSAWQuals24/crypto/cbc/app.py -------------------------------------------------------------------------------- /2024_09_06_CSAWQuals24/crypto/cbc/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_06_CSAWQuals24/crypto/cbc/go.py -------------------------------------------------------------------------------- /2024_09_06_CSAWQuals24/crypto/cbc/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_06_CSAWQuals24/crypto/cbc/out.txt -------------------------------------------------------------------------------- /2024_09_06_CSAWQuals24/crypto/cbc/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_06_CSAWQuals24/crypto/cbc/writeup.md -------------------------------------------------------------------------------- /2024_09_06_CSAWQuals24/crypto/trapdoor/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_06_CSAWQuals24/crypto/trapdoor/go.py -------------------------------------------------------------------------------- /2024_09_06_CSAWQuals24/crypto/trapdoor/msg1.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_06_CSAWQuals24/crypto/trapdoor/msg1.enc -------------------------------------------------------------------------------- /2024_09_06_CSAWQuals24/crypto/trapdoor/msg2.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_06_CSAWQuals24/crypto/trapdoor/msg2.enc -------------------------------------------------------------------------------- /2024_09_06_CSAWQuals24/crypto/trapdoor/public_key1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_06_CSAWQuals24/crypto/trapdoor/public_key1 -------------------------------------------------------------------------------- /2024_09_06_CSAWQuals24/crypto/trapdoor/public_key2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_06_CSAWQuals24/crypto/trapdoor/public_key2 -------------------------------------------------------------------------------- /2024_09_06_CSAWQuals24/crypto/trapdoor/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_06_CSAWQuals24/crypto/trapdoor/writeup.md -------------------------------------------------------------------------------- /2024_09_20_PatriotCTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_20_PatriotCTF/README.md -------------------------------------------------------------------------------- /2024_09_20_PatriotCTF/crypto/bigger_is_better/dist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_20_PatriotCTF/crypto/bigger_is_better/dist.txt -------------------------------------------------------------------------------- /2024_09_20_PatriotCTF/crypto/bigger_is_better/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_20_PatriotCTF/crypto/bigger_is_better/go.py -------------------------------------------------------------------------------- /2024_09_20_PatriotCTF/crypto/bigger_is_better/go.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_20_PatriotCTF/crypto/bigger_is_better/go.sage -------------------------------------------------------------------------------- /2024_09_20_PatriotCTF/crypto/bigger_is_better/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_20_PatriotCTF/crypto/bigger_is_better/writeup.md -------------------------------------------------------------------------------- /2024_09_20_PatriotCTF/crypto/bit_by_bit/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_20_PatriotCTF/crypto/bit_by_bit/go.py -------------------------------------------------------------------------------- /2024_09_20_PatriotCTF/crypto/bit_by_bit/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_20_PatriotCTF/crypto/bit_by_bit/out.txt -------------------------------------------------------------------------------- /2024_09_20_PatriotCTF/crypto/bit_by_bit/transmit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_20_PatriotCTF/crypto/bit_by_bit/transmit.py -------------------------------------------------------------------------------- /2024_09_20_PatriotCTF/crypto/bit_by_bit/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_20_PatriotCTF/crypto/bit_by_bit/writeup.md -------------------------------------------------------------------------------- /2024_09_20_PatriotCTF/crypto/hard_to_implement/cryptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_20_PatriotCTF/crypto/hard_to_implement/cryptor.py -------------------------------------------------------------------------------- /2024_09_20_PatriotCTF/crypto/hard_to_implement/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_20_PatriotCTF/crypto/hard_to_implement/go.py -------------------------------------------------------------------------------- /2024_09_20_PatriotCTF/crypto/hard_to_implement/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_20_PatriotCTF/crypto/hard_to_implement/writeup.md -------------------------------------------------------------------------------- /2024_09_20_PatriotCTF/crypto/high_roller/flag.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_20_PatriotCTF/crypto/high_roller/flag.enc -------------------------------------------------------------------------------- /2024_09_20_PatriotCTF/crypto/high_roller/gen_setup.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_20_PatriotCTF/crypto/high_roller/gen_setup.7z -------------------------------------------------------------------------------- /2024_09_20_PatriotCTF/crypto/high_roller/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_20_PatriotCTF/crypto/high_roller/go.py -------------------------------------------------------------------------------- /2024_09_20_PatriotCTF/crypto/high_roller/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_20_PatriotCTF/crypto/high_roller/writeup.md -------------------------------------------------------------------------------- /2024_09_20_PatriotCTF/crypto/idk_cipher/encode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_20_PatriotCTF/crypto/idk_cipher/encode.py -------------------------------------------------------------------------------- /2024_09_20_PatriotCTF/crypto/idk_cipher/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_20_PatriotCTF/crypto/idk_cipher/go.py -------------------------------------------------------------------------------- /2024_09_20_PatriotCTF/crypto/idk_cipher/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_20_PatriotCTF/crypto/idk_cipher/writeup.md -------------------------------------------------------------------------------- /2024_09_28_BuckeyeCTF24/README.md: -------------------------------------------------------------------------------- 1 | # BuckeyeCTF 2024 Writeups 2 | 3 | https://ctftime.org/event/2449 4 | 5 | 155th place 720 points 6 | 7 | -------------------------------------------------------------------------------- /2024_09_28_BuckeyeCTF24/crypto/hashbrown/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_28_BuckeyeCTF24/crypto/hashbrown/go.py -------------------------------------------------------------------------------- /2024_09_28_BuckeyeCTF24/crypto/hashbrown/hashbrown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_28_BuckeyeCTF24/crypto/hashbrown/hashbrown.py -------------------------------------------------------------------------------- /2024_09_28_BuckeyeCTF24/crypto/hashbrown/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_28_BuckeyeCTF24/crypto/hashbrown/writeup.md -------------------------------------------------------------------------------- /2024_09_28_BuckeyeCTF24/crypto/rsa/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_28_BuckeyeCTF24/crypto/rsa/go.py -------------------------------------------------------------------------------- /2024_09_28_BuckeyeCTF24/crypto/rsa/rsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_28_BuckeyeCTF24/crypto/rsa/rsa.py -------------------------------------------------------------------------------- /2024_09_28_BuckeyeCTF24/crypto/rsa/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_28_BuckeyeCTF24/crypto/rsa/writeup.md -------------------------------------------------------------------------------- /2024_09_28_BuckeyeCTF24/crypto/xnor/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_28_BuckeyeCTF24/crypto/xnor/go.py -------------------------------------------------------------------------------- /2024_09_28_BuckeyeCTF24/crypto/xnor/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_28_BuckeyeCTF24/crypto/xnor/writeup.md -------------------------------------------------------------------------------- /2024_09_28_BuckeyeCTF24/crypto/xnor/xnor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_28_BuckeyeCTF24/crypto/xnor/xnor.py -------------------------------------------------------------------------------- /2024_09_28_BuckeyeCTF24/crypto/xnor/xnor_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_28_BuckeyeCTF24/crypto/xnor/xnor_output.txt -------------------------------------------------------------------------------- /2024_09_28_BuckeyeCTF24/pwn/calculator/calc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_28_BuckeyeCTF24/pwn/calculator/calc -------------------------------------------------------------------------------- /2024_09_28_BuckeyeCTF24/pwn/calculator/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_28_BuckeyeCTF24/pwn/calculator/go.py -------------------------------------------------------------------------------- /2024_09_28_BuckeyeCTF24/pwn/calculator/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_28_BuckeyeCTF24/pwn/calculator/writeup.md -------------------------------------------------------------------------------- /2024_09_28_BuckeyeCTF24/pwn/color/color.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_28_BuckeyeCTF24/pwn/color/color.zip -------------------------------------------------------------------------------- /2024_09_28_BuckeyeCTF24/pwn/color/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_28_BuckeyeCTF24/pwn/color/go.py -------------------------------------------------------------------------------- /2024_09_28_BuckeyeCTF24/pwn/color/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_28_BuckeyeCTF24/pwn/color/writeup.md -------------------------------------------------------------------------------- /2024_09_28_BuckeyeCTF24/pwn/no_handouts/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_28_BuckeyeCTF24/pwn/no_handouts/go.py -------------------------------------------------------------------------------- /2024_09_28_BuckeyeCTF24/pwn/no_handouts/no_handouts.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_28_BuckeyeCTF24/pwn/no_handouts/no_handouts.zip -------------------------------------------------------------------------------- /2024_09_28_BuckeyeCTF24/pwn/no_handouts/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_28_BuckeyeCTF24/pwn/no_handouts/writeup.md -------------------------------------------------------------------------------- /2024_09_28_BuckeyeCTF24/pwn/runway0/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_28_BuckeyeCTF24/pwn/runway0/go.py -------------------------------------------------------------------------------- /2024_09_28_BuckeyeCTF24/pwn/runway0/runway0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_28_BuckeyeCTF24/pwn/runway0/runway0.zip -------------------------------------------------------------------------------- /2024_09_28_BuckeyeCTF24/pwn/runway0/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_28_BuckeyeCTF24/pwn/runway0/writeup.md -------------------------------------------------------------------------------- /2024_09_28_BuckeyeCTF24/pwn/runway1/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_28_BuckeyeCTF24/pwn/runway1/go.py -------------------------------------------------------------------------------- /2024_09_28_BuckeyeCTF24/pwn/runway1/runway1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_28_BuckeyeCTF24/pwn/runway1/runway1.zip -------------------------------------------------------------------------------- /2024_09_28_BuckeyeCTF24/pwn/runway1/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_28_BuckeyeCTF24/pwn/runway1/writeup.md -------------------------------------------------------------------------------- /2024_09_28_BuckeyeCTF24/pwn/runway2/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_28_BuckeyeCTF24/pwn/runway2/go.py -------------------------------------------------------------------------------- /2024_09_28_BuckeyeCTF24/pwn/runway2/runway2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_28_BuckeyeCTF24/pwn/runway2/runway2.zip -------------------------------------------------------------------------------- /2024_09_28_BuckeyeCTF24/pwn/runway2/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_28_BuckeyeCTF24/pwn/runway2/writeup.md -------------------------------------------------------------------------------- /2024_09_28_BuckeyeCTF24/pwn/runway3/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_28_BuckeyeCTF24/pwn/runway3/go.py -------------------------------------------------------------------------------- /2024_09_28_BuckeyeCTF24/pwn/runway3/runway3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_28_BuckeyeCTF24/pwn/runway3/runway3.zip -------------------------------------------------------------------------------- /2024_09_28_BuckeyeCTF24/pwn/runway3/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_09_28_BuckeyeCTF24/pwn/runway3/writeup.md -------------------------------------------------------------------------------- /2024_10_12_BlueWaterCTF24/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_10_12_BlueWaterCTF24/README.md -------------------------------------------------------------------------------- /2024_10_12_BlueWaterCTF24/crypto/MD5.01/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_10_12_BlueWaterCTF24/crypto/MD5.01/go.py -------------------------------------------------------------------------------- /2024_10_12_BlueWaterCTF24/crypto/MD5.01/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_10_12_BlueWaterCTF24/crypto/MD5.01/main.py -------------------------------------------------------------------------------- /2024_10_12_BlueWaterCTF24/crypto/MD5.01/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_10_12_BlueWaterCTF24/crypto/MD5.01/writeup.md -------------------------------------------------------------------------------- /2024_10_12_BlueWaterCTF24/rev/maybe_Checker/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_10_12_BlueWaterCTF24/rev/maybe_Checker/go.py -------------------------------------------------------------------------------- /2024_10_12_BlueWaterCTF24/rev/maybe_Checker/maybe_checker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_10_12_BlueWaterCTF24/rev/maybe_Checker/maybe_checker -------------------------------------------------------------------------------- /2024_10_12_BlueWaterCTF24/rev/maybe_Checker/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_10_12_BlueWaterCTF24/rev/maybe_Checker/writeup.md -------------------------------------------------------------------------------- /2024_10_12_BlueWaterCTF24/web/sandevistan/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_10_12_BlueWaterCTF24/web/sandevistan/writeup.md -------------------------------------------------------------------------------- /2024_10_19_SunshineCTF24/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_10_19_SunshineCTF24/README.md -------------------------------------------------------------------------------- /2024_10_19_SunshineCTF24/crypto/adventure_cipher/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_10_19_SunshineCTF24/crypto/adventure_cipher/go.py -------------------------------------------------------------------------------- /2024_10_19_SunshineCTF24/crypto/adventure_cipher/letter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_10_19_SunshineCTF24/crypto/adventure_cipher/letter.txt -------------------------------------------------------------------------------- /2024_10_19_SunshineCTF24/crypto/adventure_cipher/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_10_19_SunshineCTF24/crypto/adventure_cipher/writeup.md -------------------------------------------------------------------------------- /2024_10_19_SunshineCTF24/pwn/adventure_on_the_high_c/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_10_19_SunshineCTF24/pwn/adventure_on_the_high_c/Dockerfile -------------------------------------------------------------------------------- /2024_10_19_SunshineCTF24/pwn/adventure_on_the_high_c/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_10_19_SunshineCTF24/pwn/adventure_on_the_high_c/go.py -------------------------------------------------------------------------------- /2024_10_19_SunshineCTF24/pwn/adventure_on_the_high_c/ship.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_10_19_SunshineCTF24/pwn/adventure_on_the_high_c/ship.bin -------------------------------------------------------------------------------- /2024_10_19_SunshineCTF24/pwn/adventure_on_the_high_c/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_10_19_SunshineCTF24/pwn/adventure_on_the_high_c/writeup.md -------------------------------------------------------------------------------- /2024_10_19_SunshineCTF24/pwn/flag_shop/flagshop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_10_19_SunshineCTF24/pwn/flag_shop/flagshop -------------------------------------------------------------------------------- /2024_10_19_SunshineCTF24/pwn/flag_shop/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_10_19_SunshineCTF24/pwn/flag_shop/go.py -------------------------------------------------------------------------------- /2024_10_19_SunshineCTF24/pwn/flag_shop/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_10_19_SunshineCTF24/pwn/flag_shop/writeup.md -------------------------------------------------------------------------------- /2024_10_25_HeroCTF24/README.md: -------------------------------------------------------------------------------- 1 | # Hero CTF v6 2024 Writeups 2 | 3 | https://ctftime.org/event/2496 4 | 5 | 91st place 1402 points 6 | -------------------------------------------------------------------------------- /2024_10_25_HeroCTF24/crypto/halloween/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_10_25_HeroCTF24/crypto/halloween/go.py -------------------------------------------------------------------------------- /2024_10_25_HeroCTF24/crypto/halloween/halloween.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_10_25_HeroCTF24/crypto/halloween/halloween.zip -------------------------------------------------------------------------------- /2024_10_25_HeroCTF24/crypto/halloween/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_10_25_HeroCTF24/crypto/halloween/writeup.md -------------------------------------------------------------------------------- /2024_10_25_HeroCTF24/crypto/interpolation/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_10_25_HeroCTF24/crypto/interpolation/go.py -------------------------------------------------------------------------------- /2024_10_25_HeroCTF24/crypto/interpolation/go.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_10_25_HeroCTF24/crypto/interpolation/go.sage -------------------------------------------------------------------------------- /2024_10_25_HeroCTF24/crypto/interpolation/interpolation.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_10_25_HeroCTF24/crypto/interpolation/interpolation.zip -------------------------------------------------------------------------------- /2024_10_25_HeroCTF24/crypto/interpolation/points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_10_25_HeroCTF24/crypto/interpolation/points.txt -------------------------------------------------------------------------------- /2024_10_25_HeroCTF24/crypto/interpolation/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_10_25_HeroCTF24/crypto/interpolation/writeup.md -------------------------------------------------------------------------------- /2024_10_25_HeroCTF24/crypto/paranoia/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_10_25_HeroCTF24/crypto/paranoia/go.py -------------------------------------------------------------------------------- /2024_10_25_HeroCTF24/crypto/paranoia/paranoia.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_10_25_HeroCTF24/crypto/paranoia/paranoia.zip -------------------------------------------------------------------------------- /2024_10_25_HeroCTF24/crypto/paranoia/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_10_25_HeroCTF24/crypto/paranoia/writeup.md -------------------------------------------------------------------------------- /2024_10_25_HeroCTF24/pwn/bankrupst/bankrupst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_10_25_HeroCTF24/pwn/bankrupst/bankrupst -------------------------------------------------------------------------------- /2024_10_25_HeroCTF24/pwn/bankrupst/bankrupst.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_10_25_HeroCTF24/pwn/bankrupst/bankrupst.rs -------------------------------------------------------------------------------- /2024_10_25_HeroCTF24/pwn/bankrupst/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_10_25_HeroCTF24/pwn/bankrupst/go.py -------------------------------------------------------------------------------- /2024_10_25_HeroCTF24/pwn/bankrupst/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_10_25_HeroCTF24/pwn/bankrupst/writeup.md -------------------------------------------------------------------------------- /2024_10_25_HeroCTF24/pwn/heappie/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_10_25_HeroCTF24/pwn/heappie/go.py -------------------------------------------------------------------------------- /2024_10_25_HeroCTF24/pwn/heappie/heappie.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_10_25_HeroCTF24/pwn/heappie/heappie.zip -------------------------------------------------------------------------------- /2024_10_25_HeroCTF24/pwn/heappie/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_10_25_HeroCTF24/pwn/heappie/writeup.md -------------------------------------------------------------------------------- /2024_11_01_HackTheVote24/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_01_HackTheVote24/README.md -------------------------------------------------------------------------------- /2024_11_01_HackTheVote24/pwn/comma_club/comma-club.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_01_HackTheVote24/pwn/comma_club/comma-club.tar.gz -------------------------------------------------------------------------------- /2024_11_01_HackTheVote24/pwn/comma_club/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_01_HackTheVote24/pwn/comma_club/go.py -------------------------------------------------------------------------------- /2024_11_01_HackTheVote24/pwn/comma_club/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_01_HackTheVote24/pwn/comma_club/writeup.md -------------------------------------------------------------------------------- /2024_11_10_BlueHens24/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_10_BlueHens24/README.md -------------------------------------------------------------------------------- /2024_11_10_BlueHens24/crypto/hmac/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_10_BlueHens24/crypto/hmac/dist.py -------------------------------------------------------------------------------- /2024_11_10_BlueHens24/crypto/hmac/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_10_BlueHens24/crypto/hmac/go.py -------------------------------------------------------------------------------- /2024_11_10_BlueHens24/crypto/hmac/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_10_BlueHens24/crypto/hmac/writeup.md -------------------------------------------------------------------------------- /2024_11_10_BlueHens24/crypto/intro_to_rsa/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_10_BlueHens24/crypto/intro_to_rsa/go.py -------------------------------------------------------------------------------- /2024_11_10_BlueHens24/crypto/intro_to_rsa/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_10_BlueHens24/crypto/intro_to_rsa/writeup.md -------------------------------------------------------------------------------- /2024_11_10_BlueHens24/crypto/simon_says/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_10_BlueHens24/crypto/simon_says/go.py -------------------------------------------------------------------------------- /2024_11_10_BlueHens24/crypto/simon_says/simon_ctf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_10_BlueHens24/crypto/simon_says/simon_ctf.py -------------------------------------------------------------------------------- /2024_11_10_BlueHens24/crypto/simon_says/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_10_BlueHens24/crypto/simon_says/writeup.md -------------------------------------------------------------------------------- /2024_11_10_BlueHens24/pwn/intro_to_pwn/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_10_BlueHens24/pwn/intro_to_pwn/go.py -------------------------------------------------------------------------------- /2024_11_10_BlueHens24/pwn/intro_to_pwn/pwnme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_10_BlueHens24/pwn/intro_to_pwn/pwnme -------------------------------------------------------------------------------- /2024_11_10_BlueHens24/pwn/intro_to_pwn/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_10_BlueHens24/pwn/intro_to_pwn/writeup.md -------------------------------------------------------------------------------- /2024_11_10_BlueHens24/pwn/pure_write_what_where/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_10_BlueHens24/pwn/pure_write_what_where/go.py -------------------------------------------------------------------------------- /2024_11_10_BlueHens24/pwn/pure_write_what_where/pwnme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_10_BlueHens24/pwn/pure_write_what_where/pwnme -------------------------------------------------------------------------------- /2024_11_10_BlueHens24/pwn/pure_write_what_where/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_10_BlueHens24/pwn/pure_write_what_where/writeup.md -------------------------------------------------------------------------------- /2024_11_10_BlueHens24/pwn/ret2bf/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_10_BlueHens24/pwn/ret2bf/go.py -------------------------------------------------------------------------------- /2024_11_10_BlueHens24/pwn/ret2bf/ret2bf.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_10_BlueHens24/pwn/ret2bf/ret2bf.zip -------------------------------------------------------------------------------- /2024_11_10_BlueHens24/pwn/ret2bf/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_10_BlueHens24/pwn/ret2bf/writeup.md -------------------------------------------------------------------------------- /2024_11_10_BlueHens24/web/firefun_3/Writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_10_BlueHens24/web/firefun_3/Writeup.md -------------------------------------------------------------------------------- /2024_11_10_BlueHens24/web/just-a-day-at-the-breach/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_10_BlueHens24/web/just-a-day-at-the-breach/go.py -------------------------------------------------------------------------------- /2024_11_10_BlueHens24/web/just-a-day-at-the-breach/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_10_BlueHens24/web/just-a-day-at-the-breach/writeup.md -------------------------------------------------------------------------------- /2024_11_10_BlueHens24/xor/cbc_encrypted/cbcfun_lambda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_10_BlueHens24/xor/cbc_encrypted/cbcfun_lambda.py -------------------------------------------------------------------------------- /2024_11_10_BlueHens24/xor/cbc_encrypted/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_10_BlueHens24/xor/cbc_encrypted/go.py -------------------------------------------------------------------------------- /2024_11_10_BlueHens24/xor/cbc_encrypted/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_10_BlueHens24/xor/cbc_encrypted/writeup.md -------------------------------------------------------------------------------- /2024_11_10_BlueHens24/xor/ctr_mode_is_just_xor/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_10_BlueHens24/xor/ctr_mode_is_just_xor/go.py -------------------------------------------------------------------------------- /2024_11_10_BlueHens24/xor/ctr_mode_is_just_xor/lambda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_10_BlueHens24/xor/ctr_mode_is_just_xor/lambda.py -------------------------------------------------------------------------------- /2024_11_10_BlueHens24/xor/ctr_mode_is_just_xor/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_10_BlueHens24/xor/ctr_mode_is_just_xor/writeup.md -------------------------------------------------------------------------------- /2024_11_10_BlueHens24/xor/roman_xor/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_10_BlueHens24/xor/roman_xor/go.py -------------------------------------------------------------------------------- /2024_11_10_BlueHens24/xor/roman_xor/romanXor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_10_BlueHens24/xor/roman_xor/romanXor.py -------------------------------------------------------------------------------- /2024_11_10_BlueHens24/xor/roman_xor/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_10_BlueHens24/xor/roman_xor/writeup.md -------------------------------------------------------------------------------- /2024_11_10_BlueHens24/xor/xor_without_xor/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_10_BlueHens24/xor/xor_without_xor/go.py -------------------------------------------------------------------------------- /2024_11_10_BlueHens24/xor/xor_without_xor/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_10_BlueHens24/xor/xor_without_xor/writeup.md -------------------------------------------------------------------------------- /2024_11_15_1337UP24/README.md: -------------------------------------------------------------------------------- 1 | # 1337 UP LIVE 2024 Writeups 2 | 3 | https://ctftime.org/event/2446 4 | 5 | 217th place 962 points 6 | -------------------------------------------------------------------------------- /2024_11_15_1337UP24/crypto/krsa/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_15_1337UP24/crypto/krsa/go.py -------------------------------------------------------------------------------- /2024_11_15_1337UP24/crypto/krsa/kRSA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_15_1337UP24/crypto/krsa/kRSA.py -------------------------------------------------------------------------------- /2024_11_15_1337UP24/crypto/krsa/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_15_1337UP24/crypto/krsa/writeup.md -------------------------------------------------------------------------------- /2024_11_15_1337UP24/crypto/schrodingers_pad/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_15_1337UP24/crypto/schrodingers_pad/go.py -------------------------------------------------------------------------------- /2024_11_15_1337UP24/crypto/schrodingers_pad/schrodingers_pad.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_15_1337UP24/crypto/schrodingers_pad/schrodingers_pad.zip -------------------------------------------------------------------------------- /2024_11_15_1337UP24/crypto/schrodingers_pad/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_15_1337UP24/crypto/schrodingers_pad/writeup.md -------------------------------------------------------------------------------- /2024_11_15_1337UP24/pwn/floormat_mega_sale/floormat_sale.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_15_1337UP24/pwn/floormat_mega_sale/floormat_sale.zip -------------------------------------------------------------------------------- /2024_11_15_1337UP24/pwn/floormat_mega_sale/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_15_1337UP24/pwn/floormat_mega_sale/go.py -------------------------------------------------------------------------------- /2024_11_15_1337UP24/pwn/floormat_mega_sale/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_15_1337UP24/pwn/floormat_mega_sale/writeup.md -------------------------------------------------------------------------------- /2024_11_15_1337UP24/pwn/retro2win/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_15_1337UP24/pwn/retro2win/go.py -------------------------------------------------------------------------------- /2024_11_15_1337UP24/pwn/retro2win/retro2win.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_15_1337UP24/pwn/retro2win/retro2win.zip -------------------------------------------------------------------------------- /2024_11_15_1337UP24/pwn/retro2win/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_15_1337UP24/pwn/retro2win/writeup.md -------------------------------------------------------------------------------- /2024_11_15_1337UP24/pwn/rigged_slot_machine_2/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_15_1337UP24/pwn/rigged_slot_machine_2/go.py -------------------------------------------------------------------------------- /2024_11_15_1337UP24/pwn/rigged_slot_machine_2/rigged_slot2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_15_1337UP24/pwn/rigged_slot_machine_2/rigged_slot2.zip -------------------------------------------------------------------------------- /2024_11_15_1337UP24/pwn/rigged_slot_machine_2/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_15_1337UP24/pwn/rigged_slot_machine_2/writeup.md -------------------------------------------------------------------------------- /2024_11_15_1337UP24/pwn/uap/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_15_1337UP24/pwn/uap/go.py -------------------------------------------------------------------------------- /2024_11_15_1337UP24/pwn/uap/uap.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_15_1337UP24/pwn/uap/uap.zip -------------------------------------------------------------------------------- /2024_11_15_1337UP24/pwn/uap/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_15_1337UP24/pwn/uap/writeup.md -------------------------------------------------------------------------------- /2024_11_15_1337UP24/rev/secure_bank/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_15_1337UP24/rev/secure_bank/go.py -------------------------------------------------------------------------------- /2024_11_15_1337UP24/rev/secure_bank/secure_bank: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_15_1337UP24/rev/secure_bank/secure_bank -------------------------------------------------------------------------------- /2024_11_15_1337UP24/rev/secure_bank/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_15_1337UP24/rev/secure_bank/writeup.md -------------------------------------------------------------------------------- /2024_11_22_GlacierCTF24/README.md: -------------------------------------------------------------------------------- 1 | # GlacierCTF 2024 Writeups 2 | 3 | https://ctftime.org/event/2402 4 | 5 | 33rd place 1263 points 6 | -------------------------------------------------------------------------------- /2024_11_22_GlacierCTF24/blockchain/ArcticVault/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_22_GlacierCTF24/blockchain/ArcticVault/writeup.md -------------------------------------------------------------------------------- /2024_11_22_GlacierCTF24/crypto/rivest_shamir_adleman_germain/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_22_GlacierCTF24/crypto/rivest_shamir_adleman_germain/go.py -------------------------------------------------------------------------------- /2024_11_22_GlacierCTF24/crypto/rivest_shamir_adleman_germain/rsag.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_22_GlacierCTF24/crypto/rivest_shamir_adleman_germain/rsag.tar.gz -------------------------------------------------------------------------------- /2024_11_22_GlacierCTF24/crypto/rivest_shamir_adleman_germain/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_22_GlacierCTF24/crypto/rivest_shamir_adleman_germain/writeup.md -------------------------------------------------------------------------------- /2024_11_30_WWCTF24/README.md: -------------------------------------------------------------------------------- 1 | # WWCTF 2024 Writeups 2 | 3 | https://ctftime.org/event/2572 4 | 5 | 342nd place 145 points 6 | -------------------------------------------------------------------------------- /2024_11_30_WWCTF24/crypto/simpler_rsa/chal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_30_WWCTF24/crypto/simpler_rsa/chal.py -------------------------------------------------------------------------------- /2024_11_30_WWCTF24/crypto/simpler_rsa/go.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_30_WWCTF24/crypto/simpler_rsa/go.sage -------------------------------------------------------------------------------- /2024_11_30_WWCTF24/crypto/simpler_rsa/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_30_WWCTF24/crypto/simpler_rsa/out.txt -------------------------------------------------------------------------------- /2024_11_30_WWCTF24/crypto/simpler_rsa/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_30_WWCTF24/crypto/simpler_rsa/writeup.md -------------------------------------------------------------------------------- /2024_11_30_WWCTF24/pwn/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_30_WWCTF24/pwn/go.py -------------------------------------------------------------------------------- /2024_11_30_WWCTF24/pwn/white_rabbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_30_WWCTF24/pwn/white_rabbit -------------------------------------------------------------------------------- /2024_11_30_WWCTF24/pwn/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_11_30_WWCTF24/pwn/writeup.md -------------------------------------------------------------------------------- /2024_12_13_NiteCTF24/README.md: -------------------------------------------------------------------------------- 1 | # Nite CTF 2024 Writeups 2 | 3 | https://ctftime.org/event/2461 4 | 5 | 145th place 227 points 6 | -------------------------------------------------------------------------------- /2024_12_13_NiteCTF24/pwn/mixed_signal/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_12_13_NiteCTF24/pwn/mixed_signal/go.py -------------------------------------------------------------------------------- /2024_12_13_NiteCTF24/pwn/mixed_signal/handout.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_12_13_NiteCTF24/pwn/mixed_signal/handout.zip -------------------------------------------------------------------------------- /2024_12_13_NiteCTF24/pwn/mixed_signal/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_12_13_NiteCTF24/pwn/mixed_signal/writeup.md -------------------------------------------------------------------------------- /2024_12_13_NiteCTF24/pwn/print_the_gifts/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_12_13_NiteCTF24/pwn/print_the_gifts/go.py -------------------------------------------------------------------------------- /2024_12_13_NiteCTF24/pwn/print_the_gifts/handout.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_12_13_NiteCTF24/pwn/print_the_gifts/handout.zip -------------------------------------------------------------------------------- /2024_12_13_NiteCTF24/pwn/print_the_gifts/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2024_12_13_NiteCTF24/pwn/print_the_gifts/writeup.md -------------------------------------------------------------------------------- /2025_01_11_UofTCTF25/README.md: -------------------------------------------------------------------------------- 1 | # UofTCTF 2025 Writeups 2 | 3 | https://ctftime.org/event/2570 4 | 5 | 481st place 300 points 6 | -------------------------------------------------------------------------------- /2025_01_11_UofTCTF25/forensics/poof/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_01_11_UofTCTF25/forensics/poof/writeup.md -------------------------------------------------------------------------------- /2025_01_11_UofTCTF25/pwn/baby_pwn/baby-pwn.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_01_11_UofTCTF25/pwn/baby_pwn/baby-pwn.zip -------------------------------------------------------------------------------- /2025_01_11_UofTCTF25/pwn/baby_pwn/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_01_11_UofTCTF25/pwn/baby_pwn/go.py -------------------------------------------------------------------------------- /2025_01_11_UofTCTF25/pwn/baby_pwn/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_01_11_UofTCTF25/pwn/baby_pwn/writeup.md -------------------------------------------------------------------------------- /2025_01_11_UofTCTF25/pwn/baby_pwn_2/baby-pwn-2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_01_11_UofTCTF25/pwn/baby_pwn_2/baby-pwn-2.zip -------------------------------------------------------------------------------- /2025_01_11_UofTCTF25/pwn/baby_pwn_2/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_01_11_UofTCTF25/pwn/baby_pwn_2/go.py -------------------------------------------------------------------------------- /2025_01_11_UofTCTF25/pwn/baby_pwn_2/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_01_11_UofTCTF25/pwn/baby_pwn_2/writeup.md -------------------------------------------------------------------------------- /2025_01_18_SrdnlenCTF25/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_01_18_SrdnlenCTF25/README.md -------------------------------------------------------------------------------- /2025_01_24_x3CTF25/README.md: -------------------------------------------------------------------------------- 1 | # x3 CTF 2025 Writeups 2 | 3 | https://ctftime.org/event/2467 4 | 5 | 82nd place 433 points 6 | -------------------------------------------------------------------------------- /2025_01_24_x3CTF25/crypto/curved-mvm/curved-mvm.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_01_24_x3CTF25/crypto/curved-mvm/curved-mvm.tar.gz -------------------------------------------------------------------------------- /2025_01_24_x3CTF25/crypto/curved-mvm/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_01_24_x3CTF25/crypto/curved-mvm/go.py -------------------------------------------------------------------------------- /2025_01_24_x3CTF25/crypto/curved-mvm/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_01_24_x3CTF25/crypto/curved-mvm/writeup.md -------------------------------------------------------------------------------- /2025_01_24_x3CTF25/pwn/devnull-as-a-service/devnull-as-a-service.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_01_24_x3CTF25/pwn/devnull-as-a-service/devnull-as-a-service.tar.gz -------------------------------------------------------------------------------- /2025_01_24_x3CTF25/pwn/devnull-as-a-service/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_01_24_x3CTF25/pwn/devnull-as-a-service/go.py -------------------------------------------------------------------------------- /2025_01_24_x3CTF25/pwn/devnull-as-a-service/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_01_24_x3CTF25/pwn/devnull-as-a-service/writeup.md -------------------------------------------------------------------------------- /2025_01_24_x3CTF25/pwn/secure-sandbox/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_01_24_x3CTF25/pwn/secure-sandbox/go.py -------------------------------------------------------------------------------- /2025_01_24_x3CTF25/pwn/secure-sandbox/secure-sandbox.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_01_24_x3CTF25/pwn/secure-sandbox/secure-sandbox.tar.gz -------------------------------------------------------------------------------- /2025_01_24_x3CTF25/web/kittyconvert/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_01_24_x3CTF25/web/kittyconvert/writeup.md -------------------------------------------------------------------------------- /2025_01_24_x3CTF25/web/submission/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_01_24_x3CTF25/web/submission/writeup.md -------------------------------------------------------------------------------- /2025_02_01_BearcatCTF25/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_02_01_BearcatCTF25/README.md -------------------------------------------------------------------------------- /2025_02_01_BearcatCTF25/crypto/sqRSA/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_02_01_BearcatCTF25/crypto/sqRSA/go.py -------------------------------------------------------------------------------- /2025_02_01_BearcatCTF25/crypto/sqRSA/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_02_01_BearcatCTF25/crypto/sqRSA/output.txt -------------------------------------------------------------------------------- /2025_02_01_BearcatCTF25/crypto/sqRSA/sqRSA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_02_01_BearcatCTF25/crypto/sqRSA/sqRSA.py -------------------------------------------------------------------------------- /2025_02_01_BearcatCTF25/crypto/sqRSA/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_02_01_BearcatCTF25/crypto/sqRSA/writeup.md -------------------------------------------------------------------------------- /2025_02_01_BearcatCTF25/pwn/calling_convention/calling_convention.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_02_01_BearcatCTF25/pwn/calling_convention/calling_convention.zip -------------------------------------------------------------------------------- /2025_02_01_BearcatCTF25/pwn/calling_convention/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_02_01_BearcatCTF25/pwn/calling_convention/go.py -------------------------------------------------------------------------------- /2025_02_01_BearcatCTF25/pwn/calling_convention/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_02_01_BearcatCTF25/pwn/calling_convention/writeup.md -------------------------------------------------------------------------------- /2025_02_07_BITSCTF25/README.md: -------------------------------------------------------------------------------- 1 | # BITSCTF 2025 Writeups 2 | 3 | https://ctftime.org/event/2607/ 4 | 5 | 135th place 891 points 6 | -------------------------------------------------------------------------------- /2025_02_07_BITSCTF25/crypto/alice_n_bob_in_wonderland/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_02_07_BITSCTF25/crypto/alice_n_bob_in_wonderland/chall.py -------------------------------------------------------------------------------- /2025_02_07_BITSCTF25/crypto/alice_n_bob_in_wonderland/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_02_07_BITSCTF25/crypto/alice_n_bob_in_wonderland/go.py -------------------------------------------------------------------------------- /2025_02_07_BITSCTF25/crypto/alice_n_bob_in_wonderland/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_02_07_BITSCTF25/crypto/alice_n_bob_in_wonderland/writeup.md -------------------------------------------------------------------------------- /2025_02_07_BITSCTF25/crypto/baby_crypto/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_02_07_BITSCTF25/crypto/baby_crypto/go.py -------------------------------------------------------------------------------- /2025_02_07_BITSCTF25/crypto/baby_crypto/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_02_07_BITSCTF25/crypto/baby_crypto/writeup.md -------------------------------------------------------------------------------- /2025_02_07_BITSCTF25/pwn/baby_pwn/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_02_07_BITSCTF25/pwn/baby_pwn/go.py -------------------------------------------------------------------------------- /2025_02_07_BITSCTF25/pwn/baby_pwn/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_02_07_BITSCTF25/pwn/baby_pwn/main -------------------------------------------------------------------------------- /2025_02_07_BITSCTF25/pwn/baby_pwn/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_02_07_BITSCTF25/pwn/baby_pwn/writeup.md -------------------------------------------------------------------------------- /2025_02_07_BITSCTF25/pwn/biscuits/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_02_07_BITSCTF25/pwn/biscuits/go.py -------------------------------------------------------------------------------- /2025_02_07_BITSCTF25/pwn/biscuits/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_02_07_BITSCTF25/pwn/biscuits/main -------------------------------------------------------------------------------- /2025_02_07_BITSCTF25/pwn/biscuits/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_02_07_BITSCTF25/pwn/biscuits/writeup.md -------------------------------------------------------------------------------- /2025_02_15_BroncoCTF25/README.md: -------------------------------------------------------------------------------- 1 | # Bronco CTF 2025 Writeups 2 | 3 | https://ctftime.org/event/2657 4 | 5 | 516th place 31 points 6 | -------------------------------------------------------------------------------- /2025_02_15_EHAXCTF25/README.md: -------------------------------------------------------------------------------- 1 | # EHAX CTF 2025 Writeups 2 | 3 | https://ctftime.org/event/2677/ 4 | 5 | 87th place 1067 points 6 | -------------------------------------------------------------------------------- /2025_02_15_EHAXCTF25/pwn/cash_memo/chall.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_02_15_EHAXCTF25/pwn/cash_memo/chall.zip -------------------------------------------------------------------------------- /2025_02_15_EHAXCTF25/pwn/cash_memo/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_02_15_EHAXCTF25/pwn/cash_memo/go.py -------------------------------------------------------------------------------- /2025_02_15_EHAXCTF25/pwn/cash_memo/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_02_15_EHAXCTF25/pwn/cash_memo/writeup.md -------------------------------------------------------------------------------- /2025_02_15_EHAXCTF25/pwn/fantastic_doom/chall.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_02_15_EHAXCTF25/pwn/fantastic_doom/chall.zip -------------------------------------------------------------------------------- /2025_02_15_EHAXCTF25/pwn/fantastic_doom/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_02_15_EHAXCTF25/pwn/fantastic_doom/go.py -------------------------------------------------------------------------------- /2025_02_15_EHAXCTF25/pwn/fantastic_doom/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_02_15_EHAXCTF25/pwn/fantastic_doom/writeup.md -------------------------------------------------------------------------------- /2025_02_28_ApoorvCTF25/README.md: -------------------------------------------------------------------------------- 1 | # Apoorv CTF 2025 Writeups 2 | 3 | https://ctftime.org/event/2638 4 | 5 | 389th place 150 points 6 | -------------------------------------------------------------------------------- /2025_02_28_ApoorvCTF25/pwn/the_first_visit/files.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_02_28_ApoorvCTF25/pwn/the_first_visit/files.zip -------------------------------------------------------------------------------- /2025_02_28_ApoorvCTF25/pwn/the_first_visit/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_02_28_ApoorvCTF25/pwn/the_first_visit/go.py -------------------------------------------------------------------------------- /2025_02_28_ApoorvCTF25/pwn/the_first_visit/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_02_28_ApoorvCTF25/pwn/the_first_visit/writeup.md -------------------------------------------------------------------------------- /2025_02_28_ApoorvCTF25/pwn/the_secret_blend/files.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_02_28_ApoorvCTF25/pwn/the_secret_blend/files.zip -------------------------------------------------------------------------------- /2025_02_28_ApoorvCTF25/pwn/the_secret_blend/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_02_28_ApoorvCTF25/pwn/the_secret_blend/go.py -------------------------------------------------------------------------------- /2025_02_28_ApoorvCTF25/pwn/the_secret_blend/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_02_28_ApoorvCTF25/pwn/the_secret_blend/writeup.md -------------------------------------------------------------------------------- /2025_02_28_PwnMeCTFQuals25/README.md: -------------------------------------------------------------------------------- 1 | # PwnMe CTF Quals 2025 Writeups 2 | 3 | https://ctftime.org/event/2658 4 | 5 | 389th place 150 points 6 | -------------------------------------------------------------------------------- /2025_02_28_PwnMeCTFQuals25/crypto/easy_diffy/easy_diffy.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_02_28_PwnMeCTFQuals25/crypto/easy_diffy/easy_diffy.zip -------------------------------------------------------------------------------- /2025_02_28_PwnMeCTFQuals25/crypto/easy_diffy/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_02_28_PwnMeCTFQuals25/crypto/easy_diffy/go.py -------------------------------------------------------------------------------- /2025_02_28_PwnMeCTFQuals25/crypto/easy_diffy/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_02_28_PwnMeCTFQuals25/crypto/easy_diffy/writeup.md -------------------------------------------------------------------------------- /2025_02_28_PwnMeCTFQuals25/pwn/got/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_02_28_PwnMeCTFQuals25/pwn/got/go.py -------------------------------------------------------------------------------- /2025_02_28_PwnMeCTFQuals25/pwn/got/got.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_02_28_PwnMeCTFQuals25/pwn/got/got.zip -------------------------------------------------------------------------------- /2025_02_28_PwnMeCTFQuals25/pwn/got/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_02_28_PwnMeCTFQuals25/pwn/got/writeup.md -------------------------------------------------------------------------------- /2025_03_07_KalmarCTF25/Ez ⛳ v3/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_07_KalmarCTF25/Ez ⛳ v3/writeup.md -------------------------------------------------------------------------------- /2025_03_07_KalmarCTF25/README.md: -------------------------------------------------------------------------------- 1 | # KalmarCTF 2025 Writeups 2 | 3 | https://ctftime.org/event/2599 4 | 5 | 103rd place 541 points 6 | -------------------------------------------------------------------------------- /2025_03_07_KalmarCTF25/dnxss/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_07_KalmarCTF25/dnxss/writeup.md -------------------------------------------------------------------------------- /2025_03_07_PearlCTF25/README.md: -------------------------------------------------------------------------------- 1 | # Pearl CTF 2025 Writeups 2 | 3 | https://ctftime.org/event/2647 4 | 5 | 64th place 1600 points 6 | -------------------------------------------------------------------------------- /2025_03_07_PearlCTF25/crypto/o1_punch_log/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_07_PearlCTF25/crypto/o1_punch_log/go.py -------------------------------------------------------------------------------- /2025_03_07_PearlCTF25/crypto/o1_punch_log/o_1__punch_log.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_07_PearlCTF25/crypto/o1_punch_log/o_1__punch_log.zip -------------------------------------------------------------------------------- /2025_03_07_PearlCTF25/crypto/o1_punch_log/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_07_PearlCTF25/crypto/o1_punch_log/writeup.md -------------------------------------------------------------------------------- /2025_03_07_PearlCTF25/crypto/stegano_ellipto_graphy/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_07_PearlCTF25/crypto/stegano_ellipto_graphy/go.py -------------------------------------------------------------------------------- /2025_03_07_PearlCTF25/crypto/stegano_ellipto_graphy/hacked.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_07_PearlCTF25/crypto/stegano_ellipto_graphy/hacked.zip -------------------------------------------------------------------------------- /2025_03_07_PearlCTF25/crypto/stegano_ellipto_graphy/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_07_PearlCTF25/crypto/stegano_ellipto_graphy/writeup.md -------------------------------------------------------------------------------- /2025_03_07_PearlCTF25/pwn/mr_ropot/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_07_PearlCTF25/pwn/mr_ropot/go.py -------------------------------------------------------------------------------- /2025_03_07_PearlCTF25/pwn/mr_ropot/mrropot.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_07_PearlCTF25/pwn/mr_ropot/mrropot.zip -------------------------------------------------------------------------------- /2025_03_07_PearlCTF25/pwn/mr_ropot/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_07_PearlCTF25/pwn/mr_ropot/writeup.md -------------------------------------------------------------------------------- /2025_03_07_PearlCTF25/pwn/readme_please/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_07_PearlCTF25/pwn/readme_please/go.py -------------------------------------------------------------------------------- /2025_03_07_PearlCTF25/pwn/readme_please/readme_src.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_07_PearlCTF25/pwn/readme_please/readme_src.zip -------------------------------------------------------------------------------- /2025_03_07_PearlCTF25/pwn/readme_please/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_07_PearlCTF25/pwn/readme_please/writeup.md -------------------------------------------------------------------------------- /2025_03_07_PearlCTF25/pwn/treasure_hunt/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_07_PearlCTF25/pwn/treasure_hunt/go.py -------------------------------------------------------------------------------- /2025_03_07_PearlCTF25/pwn/treasure_hunt/treasurehunt.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_07_PearlCTF25/pwn/treasure_hunt/treasurehunt.zip -------------------------------------------------------------------------------- /2025_03_07_PearlCTF25/pwn/treasure_hunt/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_07_PearlCTF25/pwn/treasure_hunt/writeup.md -------------------------------------------------------------------------------- /2025_03_14_UTCTF25/README.md: -------------------------------------------------------------------------------- 1 | # UTCTF 2025 Writeups 2 | 3 | https://ctftime.org/event/2641 4 | 5 | 238th place 2627 points 6 | -------------------------------------------------------------------------------- /2025_03_14_UTCTF25/crypto/DCΔ/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_14_UTCTF25/crypto/DCΔ/go.py -------------------------------------------------------------------------------- /2025_03_14_UTCTF25/crypto/DCΔ/rsa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_14_UTCTF25/crypto/DCΔ/rsa.txt -------------------------------------------------------------------------------- /2025_03_14_UTCTF25/crypto/DCΔ/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_14_UTCTF25/crypto/DCΔ/writeup.md -------------------------------------------------------------------------------- /2025_03_14_UTCTF25/crypto/RSA/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_14_UTCTF25/crypto/RSA/go.py -------------------------------------------------------------------------------- /2025_03_14_UTCTF25/crypto/RSA/rsa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_14_UTCTF25/crypto/RSA/rsa.txt -------------------------------------------------------------------------------- /2025_03_14_UTCTF25/crypto/RSA/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_14_UTCTF25/crypto/RSA/writeup.md -------------------------------------------------------------------------------- /2025_03_14_UTCTF25/crypto/espathra-csatu-banette/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_14_UTCTF25/crypto/espathra-csatu-banette/go.py -------------------------------------------------------------------------------- /2025_03_14_UTCTF25/crypto/espathra-csatu-banette/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_14_UTCTF25/crypto/espathra-csatu-banette/main.py -------------------------------------------------------------------------------- /2025_03_14_UTCTF25/crypto/espathra-csatu-banette/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_14_UTCTF25/crypto/espathra-csatu-banette/writeup.md -------------------------------------------------------------------------------- /2025_03_14_UTCTF25/pwn/RETirement_plan/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_14_UTCTF25/pwn/RETirement_plan/go.py -------------------------------------------------------------------------------- /2025_03_14_UTCTF25/pwn/RETirement_plan/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_14_UTCTF25/pwn/RETirement_plan/libc.so.6 -------------------------------------------------------------------------------- /2025_03_14_UTCTF25/pwn/RETirement_plan/shellcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_14_UTCTF25/pwn/RETirement_plan/shellcode -------------------------------------------------------------------------------- /2025_03_14_UTCTF25/pwn/RETirement_plan/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_14_UTCTF25/pwn/RETirement_plan/writeup.md -------------------------------------------------------------------------------- /2025_03_14_UTCTF25/pwn/secbof/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_14_UTCTF25/pwn/secbof/Dockerfile -------------------------------------------------------------------------------- /2025_03_14_UTCTF25/pwn/secbof/chal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_14_UTCTF25/pwn/secbof/chal -------------------------------------------------------------------------------- /2025_03_14_UTCTF25/pwn/secbof/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_14_UTCTF25/pwn/secbof/go.py -------------------------------------------------------------------------------- /2025_03_14_UTCTF25/pwn/secbof/start.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | while [ true ]; do 4 | socat -dd TCP4-LISTEN:9000,fork,reuseaddr EXEC:'/chal',pty,echo=0,rawer,iexten=0 5 | done; 6 | -------------------------------------------------------------------------------- /2025_03_14_UTCTF25/pwn/secbof/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_14_UTCTF25/pwn/secbof/writeup.md -------------------------------------------------------------------------------- /2025_03_15_Nowruz1404/README.md: -------------------------------------------------------------------------------- 1 | # Nowruz 1404 Writeups 2 | 3 | https://ctftime.org/event/2601 4 | 5 | 101st place 1225 points 6 | -------------------------------------------------------------------------------- /2025_03_15_Nowruz1404/crypto/ez_rsa/EZ_RSA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_15_Nowruz1404/crypto/ez_rsa/EZ_RSA.py -------------------------------------------------------------------------------- /2025_03_15_Nowruz1404/crypto/ez_rsa/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_15_Nowruz1404/crypto/ez_rsa/go.py -------------------------------------------------------------------------------- /2025_03_15_Nowruz1404/crypto/ez_rsa/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_15_Nowruz1404/crypto/ez_rsa/writeup.md -------------------------------------------------------------------------------- /2025_03_15_Nowruz1404/crypto/ez_xor/EZ_XOR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_15_Nowruz1404/crypto/ez_xor/EZ_XOR.py -------------------------------------------------------------------------------- /2025_03_15_Nowruz1404/crypto/ez_xor/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_15_Nowruz1404/crypto/ez_xor/go.py -------------------------------------------------------------------------------- /2025_03_15_Nowruz1404/crypto/ez_xor/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_15_Nowruz1404/crypto/ez_xor/writeup.md -------------------------------------------------------------------------------- /2025_03_15_Nowruz1404/pwn/seen_guessing/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_15_Nowruz1404/pwn/seen_guessing/chall -------------------------------------------------------------------------------- /2025_03_15_Nowruz1404/pwn/seen_guessing/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_15_Nowruz1404/pwn/seen_guessing/go.py -------------------------------------------------------------------------------- /2025_03_15_Nowruz1404/pwn/seen_guessing/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_15_Nowruz1404/pwn/seen_guessing/writeup.md -------------------------------------------------------------------------------- /2025_03_15_Nowruz1404/pwn/seen_shop/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_15_Nowruz1404/pwn/seen_shop/go.py -------------------------------------------------------------------------------- /2025_03_15_Nowruz1404/pwn/seen_shop/seen-shop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_15_Nowruz1404/pwn/seen_shop/seen-shop.c -------------------------------------------------------------------------------- /2025_03_15_Nowruz1404/pwn/seen_shop/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_15_Nowruz1404/pwn/seen_shop/writeup.md -------------------------------------------------------------------------------- /2025_03_21_CyberApocalypse25/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_21_CyberApocalypse25/README.md -------------------------------------------------------------------------------- /2025_03_21_CyberApocalypse25/crypto/hourcle/crypto_hourcle.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_21_CyberApocalypse25/crypto/hourcle/crypto_hourcle.zip -------------------------------------------------------------------------------- /2025_03_21_CyberApocalypse25/crypto/hourcle/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_21_CyberApocalypse25/crypto/hourcle/go.py -------------------------------------------------------------------------------- /2025_03_21_CyberApocalypse25/crypto/hourcle/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_21_CyberApocalypse25/crypto/hourcle/writeup.md -------------------------------------------------------------------------------- /2025_03_21_CyberApocalypse25/crypto/traces/crypto_traces.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_21_CyberApocalypse25/crypto/traces/crypto_traces.zip -------------------------------------------------------------------------------- /2025_03_21_CyberApocalypse25/crypto/traces/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_21_CyberApocalypse25/crypto/traces/go.py -------------------------------------------------------------------------------- /2025_03_21_CyberApocalypse25/crypto/traces/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_21_CyberApocalypse25/crypto/traces/writeup.md -------------------------------------------------------------------------------- /2025_03_21_CyberApocalypse25/pwn/quack_quack/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_21_CyberApocalypse25/pwn/quack_quack/go.py -------------------------------------------------------------------------------- /2025_03_21_CyberApocalypse25/pwn/quack_quack/pwn_quack_quack.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_21_CyberApocalypse25/pwn/quack_quack/pwn_quack_quack.zip -------------------------------------------------------------------------------- /2025_03_21_CyberApocalypse25/pwn/quack_quack/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_21_CyberApocalypse25/pwn/quack_quack/writeup.md -------------------------------------------------------------------------------- /2025_03_21_WolvCTF25/README.md: -------------------------------------------------------------------------------- 1 | # WolvCTF 2025 Writeups 2 | 3 | https://ctftime.org/event/2579 4 | 5 | 106th place 1784 points 6 | -------------------------------------------------------------------------------- /2025_03_21_WolvCTF25/crypto/ecb++/dist.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_21_WolvCTF25/crypto/ecb++/dist.tar.gz -------------------------------------------------------------------------------- /2025_03_21_WolvCTF25/crypto/ecb++/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_21_WolvCTF25/crypto/ecb++/go.py -------------------------------------------------------------------------------- /2025_03_21_WolvCTF25/crypto/ecb++/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_21_WolvCTF25/crypto/ecb++/writeup.md -------------------------------------------------------------------------------- /2025_03_21_WolvCTF25/pwn/drywall/dist.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_21_WolvCTF25/pwn/drywall/dist.tar.gz -------------------------------------------------------------------------------- /2025_03_21_WolvCTF25/pwn/drywall/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_21_WolvCTF25/pwn/drywall/go.py -------------------------------------------------------------------------------- /2025_03_21_WolvCTF25/pwn/drywall/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_21_WolvCTF25/pwn/drywall/writeup.md -------------------------------------------------------------------------------- /2025_03_21_WolvCTF25/pwn/takenote/dist.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_21_WolvCTF25/pwn/takenote/dist.tar.gz -------------------------------------------------------------------------------- /2025_03_21_WolvCTF25/pwn/takenote/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_21_WolvCTF25/pwn/takenote/go.py -------------------------------------------------------------------------------- /2025_03_21_WolvCTF25/pwn/takenote/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_21_WolvCTF25/pwn/takenote/writeup.md -------------------------------------------------------------------------------- /2025_03_28_SwampCTF25/README.md: -------------------------------------------------------------------------------- 1 | # SwampCTF 2025 Writeups 2 | 3 | https://ctftime.org/event/2573 4 | 5 | 259th place 658 points 6 | -------------------------------------------------------------------------------- /2025_03_28_SwampCTF25/crypto/rock_my_password/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_28_SwampCTF25/crypto/rock_my_password/go.py -------------------------------------------------------------------------------- /2025_03_28_SwampCTF25/crypto/rock_my_password/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_28_SwampCTF25/crypto/rock_my_password/writeup.md -------------------------------------------------------------------------------- /2025_03_28_SwampCTF25/pwn/beginner_pwn_1/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_28_SwampCTF25/pwn/beginner_pwn_1/go.py -------------------------------------------------------------------------------- /2025_03_28_SwampCTF25/pwn/beginner_pwn_1/is_admin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_28_SwampCTF25/pwn/beginner_pwn_1/is_admin -------------------------------------------------------------------------------- /2025_03_28_SwampCTF25/pwn/beginner_pwn_1/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_28_SwampCTF25/pwn/beginner_pwn_1/main.c -------------------------------------------------------------------------------- /2025_03_28_SwampCTF25/pwn/beginner_pwn_1/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_28_SwampCTF25/pwn/beginner_pwn_1/writeup.md -------------------------------------------------------------------------------- /2025_03_28_SwampCTF25/pwn/beginner_pwn_2/binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_28_SwampCTF25/pwn/beginner_pwn_2/binary -------------------------------------------------------------------------------- /2025_03_28_SwampCTF25/pwn/beginner_pwn_2/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_28_SwampCTF25/pwn/beginner_pwn_2/go.py -------------------------------------------------------------------------------- /2025_03_28_SwampCTF25/pwn/beginner_pwn_2/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_28_SwampCTF25/pwn/beginner_pwn_2/writeup.md -------------------------------------------------------------------------------- /2025_03_28_SwampCTF25/pwn/oh_my_buffer/binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_28_SwampCTF25/pwn/oh_my_buffer/binary -------------------------------------------------------------------------------- /2025_03_28_SwampCTF25/pwn/oh_my_buffer/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_28_SwampCTF25/pwn/oh_my_buffer/go.py -------------------------------------------------------------------------------- /2025_03_28_SwampCTF25/pwn/oh_my_buffer/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_28_SwampCTF25/pwn/oh_my_buffer/writeup.md -------------------------------------------------------------------------------- /2025_03_28_TAMUCTF25/README.md: -------------------------------------------------------------------------------- 1 | # TAMU CTF 2025 Writeups 2 | 3 | https://ctftime.org/event/2681 4 | 5 | 173rd place 210 points 6 | -------------------------------------------------------------------------------- /2025_03_28_TAMUCTF25/crypto/ECC/ecc.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_28_TAMUCTF25/crypto/ECC/ecc.tar.gz -------------------------------------------------------------------------------- /2025_03_28_TAMUCTF25/crypto/ECC/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_28_TAMUCTF25/crypto/ECC/go.py -------------------------------------------------------------------------------- /2025_03_28_TAMUCTF25/crypto/ECC/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_28_TAMUCTF25/crypto/ECC/writeup.md -------------------------------------------------------------------------------- /2025_03_28_TAMUCTF25/pwn/debug-1/debug-1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_28_TAMUCTF25/pwn/debug-1/debug-1.tar.gz -------------------------------------------------------------------------------- /2025_03_28_TAMUCTF25/pwn/debug-1/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_28_TAMUCTF25/pwn/debug-1/go.py -------------------------------------------------------------------------------- /2025_03_28_TAMUCTF25/pwn/debug-1/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_03_28_TAMUCTF25/pwn/debug-1/writeup.md -------------------------------------------------------------------------------- /2025_04_04_Squ1rrelCTF25/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_04_Squ1rrelCTF25/README.md -------------------------------------------------------------------------------- /2025_04_04_Squ1rrelCTF25/crypto/easy_rsa/easy_rsa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_04_Squ1rrelCTF25/crypto/easy_rsa/easy_rsa.txt -------------------------------------------------------------------------------- /2025_04_04_Squ1rrelCTF25/crypto/easy_rsa/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_04_Squ1rrelCTF25/crypto/easy_rsa/go.py -------------------------------------------------------------------------------- /2025_04_04_Squ1rrelCTF25/crypto/easy_rsa/rsa_easy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_04_Squ1rrelCTF25/crypto/easy_rsa/rsa_easy.py -------------------------------------------------------------------------------- /2025_04_04_Squ1rrelCTF25/crypto/easy_rsa/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_04_Squ1rrelCTF25/crypto/easy_rsa/writeup.md -------------------------------------------------------------------------------- /2025_04_04_Squ1rrelCTF25/crypto/xor_101/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_04_Squ1rrelCTF25/crypto/xor_101/writeup.md -------------------------------------------------------------------------------- /2025_04_04_Squ1rrelCTF25/pwn/deja_vu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_04_Squ1rrelCTF25/pwn/deja_vu/Dockerfile -------------------------------------------------------------------------------- /2025_04_04_Squ1rrelCTF25/pwn/deja_vu/deja-vu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_04_Squ1rrelCTF25/pwn/deja_vu/deja-vu -------------------------------------------------------------------------------- /2025_04_04_Squ1rrelCTF25/pwn/deja_vu/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_04_Squ1rrelCTF25/pwn/deja_vu/go.py -------------------------------------------------------------------------------- /2025_04_04_Squ1rrelCTF25/pwn/deja_vu/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_04_Squ1rrelCTF25/pwn/deja_vu/writeup.md -------------------------------------------------------------------------------- /2025_04_04_Squ1rrelCTF25/pwn/jail/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_04_Squ1rrelCTF25/pwn/jail/Dockerfile -------------------------------------------------------------------------------- /2025_04_04_Squ1rrelCTF25/pwn/jail/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_04_Squ1rrelCTF25/pwn/jail/go.py -------------------------------------------------------------------------------- /2025_04_04_Squ1rrelCTF25/pwn/jail/prison: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_04_Squ1rrelCTF25/pwn/jail/prison -------------------------------------------------------------------------------- /2025_04_04_Squ1rrelCTF25/pwn/jail/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_04_Squ1rrelCTF25/pwn/jail/writeup.md -------------------------------------------------------------------------------- /2025_04_11_1753CTF25/README.md: -------------------------------------------------------------------------------- 1 | # 1735 CTF 2025 Writeups 2 | 3 | https://ctftime.org/event/2639 4 | 5 | 393rd place 100 points 6 | -------------------------------------------------------------------------------- /2025_04_11_1753CTF25/pwn/leakcan/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_11_1753CTF25/pwn/leakcan/go.py -------------------------------------------------------------------------------- /2025_04_11_1753CTF25/pwn/leakcan/leakcan_chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_11_1753CTF25/pwn/leakcan/leakcan_chall -------------------------------------------------------------------------------- /2025_04_11_1753CTF25/pwn/leakcan/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_11_1753CTF25/pwn/leakcan/writeup.md -------------------------------------------------------------------------------- /2025_04_12_THCon2K25CTF/README.md: -------------------------------------------------------------------------------- 1 | # THCon 2K25 CTF 2025 Writeups 2 | 3 | https://ctftime.org/event/2660 4 | 5 | 141st place 168 points 6 | -------------------------------------------------------------------------------- /2025_04_12_THCon2K25CTF/pwn/gopwn/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_12_THCon2K25CTF/pwn/gopwn/go.py -------------------------------------------------------------------------------- /2025_04_12_THCon2K25CTF/pwn/gopwn/gopwn.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_12_THCon2K25CTF/pwn/gopwn/gopwn.zip -------------------------------------------------------------------------------- /2025_04_12_THCon2K25CTF/pwn/gopwn/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_12_THCon2K25CTF/pwn/gopwn/writeup.md -------------------------------------------------------------------------------- /2025_04_18_DawgCTF25/README.md: -------------------------------------------------------------------------------- 1 | # DawgCTF 2025 Writeups 2 | 3 | https://ctftime.org/event/2651 4 | 5 | 311th place 1875 points 6 | -------------------------------------------------------------------------------- /2025_04_18_DawgCTF25/crypto/baby_rsa_1/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_18_DawgCTF25/crypto/baby_rsa_1/go.py -------------------------------------------------------------------------------- /2025_04_18_DawgCTF25/crypto/baby_rsa_1/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_18_DawgCTF25/crypto/baby_rsa_1/output.txt -------------------------------------------------------------------------------- /2025_04_18_DawgCTF25/crypto/baby_rsa_1/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_18_DawgCTF25/crypto/baby_rsa_1/source.py -------------------------------------------------------------------------------- /2025_04_18_DawgCTF25/crypto/baby_rsa_1/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_18_DawgCTF25/crypto/baby_rsa_1/writeup.md -------------------------------------------------------------------------------- /2025_04_18_DawgCTF25/crypto/baby_rsa_2/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_18_DawgCTF25/crypto/baby_rsa_2/chall.py -------------------------------------------------------------------------------- /2025_04_18_DawgCTF25/crypto/baby_rsa_2/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_18_DawgCTF25/crypto/baby_rsa_2/go.py -------------------------------------------------------------------------------- /2025_04_18_DawgCTF25/crypto/baby_rsa_2/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_18_DawgCTF25/crypto/baby_rsa_2/output.txt -------------------------------------------------------------------------------- /2025_04_18_DawgCTF25/crypto/baby_rsa_2/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_18_DawgCTF25/crypto/baby_rsa_2/writeup.md -------------------------------------------------------------------------------- /2025_04_18_DawgCTF25/pwn/64_bits_in_my_ark_and_texture/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_18_DawgCTF25/pwn/64_bits_in_my_ark_and_texture/chall -------------------------------------------------------------------------------- /2025_04_18_DawgCTF25/pwn/64_bits_in_my_ark_and_texture/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_18_DawgCTF25/pwn/64_bits_in_my_ark_and_texture/go.py -------------------------------------------------------------------------------- /2025_04_18_DawgCTF25/pwn/64_bits_in_my_ark_and_texture/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_18_DawgCTF25/pwn/64_bits_in_my_ark_and_texture/writeup.md -------------------------------------------------------------------------------- /2025_04_18_DawgCTF25/pwn/clobber/clobber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_18_DawgCTF25/pwn/clobber/clobber -------------------------------------------------------------------------------- /2025_04_18_DawgCTF25/pwn/clobber/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_18_DawgCTF25/pwn/clobber/go.py -------------------------------------------------------------------------------- /2025_04_18_DawgCTF25/pwn/clobber/ld.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_18_DawgCTF25/pwn/clobber/ld.so -------------------------------------------------------------------------------- /2025_04_18_DawgCTF25/pwn/clobber/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_18_DawgCTF25/pwn/clobber/libc.so.6 -------------------------------------------------------------------------------- /2025_04_18_DawgCTF25/pwn/interns_project/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_18_DawgCTF25/pwn/interns_project/go.py -------------------------------------------------------------------------------- /2025_04_18_DawgCTF25/pwn/interns_project/interns'Project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_18_DawgCTF25/pwn/interns_project/interns'Project -------------------------------------------------------------------------------- /2025_04_18_DawgCTF25/pwn/interns_project/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_18_DawgCTF25/pwn/interns_project/writeup.md -------------------------------------------------------------------------------- /2025_04_18_DawgCTF25/pwn/just_parry_lol/frame_trap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_18_DawgCTF25/pwn/just_parry_lol/frame_trap -------------------------------------------------------------------------------- /2025_04_18_DawgCTF25/pwn/just_parry_lol/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_18_DawgCTF25/pwn/just_parry_lol/go.py -------------------------------------------------------------------------------- /2025_04_18_DawgCTF25/pwn/just_parry_lol/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_18_DawgCTF25/pwn/just_parry_lol/writeup.md -------------------------------------------------------------------------------- /2025_04_25_UMDCTF25/README.md: -------------------------------------------------------------------------------- 1 | # UMDCTF 2025 Writeups 2 | 3 | https://ctftime.org/event/2563 4 | 5 | 353rd place 712 points 6 | -------------------------------------------------------------------------------- /2025_04_25_UMDCTF25/pwn/gambling2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_25_UMDCTF25/pwn/gambling2/Dockerfile -------------------------------------------------------------------------------- /2025_04_25_UMDCTF25/pwn/gambling2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_25_UMDCTF25/pwn/gambling2/Makefile -------------------------------------------------------------------------------- /2025_04_25_UMDCTF25/pwn/gambling2/gambling: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_25_UMDCTF25/pwn/gambling2/gambling -------------------------------------------------------------------------------- /2025_04_25_UMDCTF25/pwn/gambling2/gambling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_25_UMDCTF25/pwn/gambling2/gambling.c -------------------------------------------------------------------------------- /2025_04_25_UMDCTF25/pwn/gambling2/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_25_UMDCTF25/pwn/gambling2/go.py -------------------------------------------------------------------------------- /2025_04_25_UMDCTF25/pwn/gambling2/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_04_25_UMDCTF25/pwn/gambling2/writeup.md -------------------------------------------------------------------------------- /2025_05_10_DamCTF25/README.md: -------------------------------------------------------------------------------- 1 | # Dam CTF 2025 Writeups 2 | 3 | https://ctftime.org/event/2585 4 | 5 | 261st place 404 points 6 | -------------------------------------------------------------------------------- /2025_05_10_DamCTF25/pwn/dnd/dnd.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_05_10_DamCTF25/pwn/dnd/dnd.zip -------------------------------------------------------------------------------- /2025_05_10_DamCTF25/pwn/dnd/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_05_10_DamCTF25/pwn/dnd/go.py -------------------------------------------------------------------------------- /2025_05_10_DamCTF25/pwn/dnd/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/2025_05_10_DamCTF25/pwn/dnd/writeup.md -------------------------------------------------------------------------------- /2025_05_23_NahamConCTF25/README.md: -------------------------------------------------------------------------------- 1 | # NahamCon CTF 2025 Writeups 2 | 3 | https://ctftime.org/event/2782 4 | 5 | ??th place ?? points 6 | -------------------------------------------------------------------------------- /2025_05_24_DaVinciCTF25/README.md: -------------------------------------------------------------------------------- 1 | # DaVinciCTF 2025 Writeups 2 | 3 | https://ctftime.org/event/2675 4 | 5 | ??th place ?? points 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrorctf/writeups/HEAD/README.md --------------------------------------------------------------------------------