├── 0ctf-2024 └── how2link │ ├── README.md │ ├── how2link-988ecdc98417e73ca36f0c93c33649a7.zip │ ├── not_linker.c │ ├── secret.py │ ├── service.py │ └── solve.py ├── 0ctf-tctf-2020-final ├── Electronic │ ├── README.md │ ├── solve.py │ └── task.py ├── MEF │ ├── README.md │ ├── output │ ├── solve.py │ └── task.py └── Oblivious │ ├── README.md │ ├── solve.py │ ├── task-release.py │ └── task.py ├── 0ctf-tctf-2020 ├── babyring │ ├── README.md │ ├── flag.py │ ├── getequ.py │ ├── ring_1f0f741fcfdfc52519d7b09b78c97b43.tar.gz │ ├── solequ.sage.py │ ├── solve.py │ └── task.py ├── emmm │ ├── README.md │ ├── d.py │ ├── e.py │ ├── flag.py │ └── solve.cpp └── sham │ ├── README.md │ ├── flag.py │ ├── getsig.py │ ├── myhashlib.py │ ├── sham_1abc55860e453619482de930fcf44562.tar.gz │ ├── solve.py │ └── task.py ├── 0ctf-tctf-2021-final ├── bali │ ├── README.md │ ├── Task.java │ ├── log.txt │ ├── solve.py │ └── src │ │ └── Task.java └── how2gen │ ├── README.md │ ├── a.py │ ├── solve.py │ └── task.py ├── 0ctf-tctf-2021 ├── cloudpass │ ├── README.md │ ├── cloudpass_61ed6cef9bacefdb86f9f8aea710439a.tar.gz │ ├── conn.py │ ├── decentry.py │ ├── dump.py │ ├── solve.py │ ├── task.py │ ├── test0.kdbx │ └── uncomp.py └── how2mutate │ ├── README.md │ ├── how2mutate │ ├── how2mutate.c │ ├── how2mutate_709bce9c7c577d1717e4460540e12720.tar.gz │ └── solve.py ├── 0ctf-tctf-2022 ├── babysnitch │ ├── README.md │ ├── flag │ ├── release │ │ ├── docker │ │ │ ├── Dockerfile │ │ │ ├── flag │ │ │ ├── opensnitch_1.5.2-1_amd64.deb.url │ │ │ └── run.sh │ │ ├── readme.txt │ │ └── service.py │ └── solve │ │ ├── app │ │ ├── app.zip │ │ └── solve.py └── backend │ ├── README.md │ ├── flag.py │ ├── release │ ├── flag.py │ ├── llc │ ├── readme.txt │ └── service.py │ ├── solve │ ├── solve.py │ └── test.ll │ └── src │ ├── llvm │ └── lib │ │ └── Target │ │ └── Chal │ │ ├── AsmParser │ │ ├── CMakeLists.txt │ │ └── ChalAsmParser.cpp │ │ ├── CMakeLists.txt │ │ ├── Chal.h │ │ ├── Chal.td │ │ ├── ChalAsmPrinter.cpp │ │ ├── ChalCallingConv.td │ │ ├── ChalFrameLowering.cpp │ │ ├── ChalFrameLowering.h │ │ ├── ChalISelDAGToDAG.cpp │ │ ├── ChalISelLowering.cpp │ │ ├── ChalISelLowering.h │ │ ├── ChalInstrFormats.td │ │ ├── ChalInstrInfo.cpp │ │ ├── ChalInstrInfo.h │ │ ├── ChalInstrInfo.td │ │ ├── ChalRegisterInfo.cpp │ │ ├── ChalRegisterInfo.h │ │ ├── ChalRegisterInfo.td │ │ ├── ChalSelectionDAGInfo.h │ │ ├── ChalSubtarget.cpp │ │ ├── ChalSubtarget.h │ │ ├── ChalTargetMachine.cpp │ │ ├── ChalTargetMachine.h │ │ ├── ChalTargetTransformInfo.h │ │ ├── MCTargetDesc │ │ ├── CMakeLists.txt │ │ ├── ChalAsmBackend.cpp │ │ ├── ChalELFObjectWriter.cpp │ │ ├── ChalMCAsmInfo.h │ │ ├── ChalMCCodeEmitter.cpp │ │ ├── ChalMCTargetDesc.cpp │ │ └── ChalMCTargetDesc.h │ │ ├── TargetInfo │ │ ├── CMakeLists.txt │ │ ├── ChalTargetInfo.cpp │ │ └── ChalTargetInfo.h │ │ └── gen.py │ └── readme.txt ├── 0ctf-tctf-2023 ├── ctar │ ├── README.md │ ├── ctar_a9c36bb8569617a77757bb8e5aa93642.zip │ ├── getone.py │ ├── secret.py │ ├── solve.py │ └── task.py └── how2compile │ ├── README.md │ ├── high.rs │ ├── how2compile_7e4f6a5038e2ae91146106bf707a0eea.zip │ ├── how2compile_fixed_bf935dd243206ab06b6035173dbe1582.zip │ ├── low.rs │ ├── mid.rs │ ├── task2.rs │ └── wrapper.sh ├── README.md └── rctf-2021 ├── dht ├── README.md ├── chal └── solve.py └── two_shortest ├── 185 ├── README.md └── solve.py /0ctf-2024/how2link/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-2024/how2link/README.md -------------------------------------------------------------------------------- /0ctf-2024/how2link/how2link-988ecdc98417e73ca36f0c93c33649a7.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-2024/how2link/how2link-988ecdc98417e73ca36f0c93c33649a7.zip -------------------------------------------------------------------------------- /0ctf-2024/how2link/not_linker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-2024/how2link/not_linker.c -------------------------------------------------------------------------------- /0ctf-2024/how2link/secret.py: -------------------------------------------------------------------------------- 1 | flag = b'0ops{ok_0k_n07_ReAl1y_l1Nk_bu7_lInk1ng_s0M3_by7e5_tOg3theR_._.}' 2 | -------------------------------------------------------------------------------- /0ctf-2024/how2link/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-2024/how2link/service.py -------------------------------------------------------------------------------- /0ctf-2024/how2link/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-2024/how2link/solve.py -------------------------------------------------------------------------------- /0ctf-tctf-2020-final/Electronic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2020-final/Electronic/README.md -------------------------------------------------------------------------------- /0ctf-tctf-2020-final/Electronic/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2020-final/Electronic/solve.py -------------------------------------------------------------------------------- /0ctf-tctf-2020-final/Electronic/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2020-final/Electronic/task.py -------------------------------------------------------------------------------- /0ctf-tctf-2020-final/MEF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2020-final/MEF/README.md -------------------------------------------------------------------------------- /0ctf-tctf-2020-final/MEF/output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2020-final/MEF/output -------------------------------------------------------------------------------- /0ctf-tctf-2020-final/MEF/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2020-final/MEF/solve.py -------------------------------------------------------------------------------- /0ctf-tctf-2020-final/MEF/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2020-final/MEF/task.py -------------------------------------------------------------------------------- /0ctf-tctf-2020-final/Oblivious/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2020-final/Oblivious/README.md -------------------------------------------------------------------------------- /0ctf-tctf-2020-final/Oblivious/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2020-final/Oblivious/solve.py -------------------------------------------------------------------------------- /0ctf-tctf-2020-final/Oblivious/task-release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2020-final/Oblivious/task-release.py -------------------------------------------------------------------------------- /0ctf-tctf-2020-final/Oblivious/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2020-final/Oblivious/task.py -------------------------------------------------------------------------------- /0ctf-tctf-2020/babyring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2020/babyring/README.md -------------------------------------------------------------------------------- /0ctf-tctf-2020/babyring/flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2020/babyring/flag.py -------------------------------------------------------------------------------- /0ctf-tctf-2020/babyring/getequ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2020/babyring/getequ.py -------------------------------------------------------------------------------- /0ctf-tctf-2020/babyring/ring_1f0f741fcfdfc52519d7b09b78c97b43.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2020/babyring/ring_1f0f741fcfdfc52519d7b09b78c97b43.tar.gz -------------------------------------------------------------------------------- /0ctf-tctf-2020/babyring/solequ.sage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2020/babyring/solequ.sage.py -------------------------------------------------------------------------------- /0ctf-tctf-2020/babyring/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2020/babyring/solve.py -------------------------------------------------------------------------------- /0ctf-tctf-2020/babyring/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2020/babyring/task.py -------------------------------------------------------------------------------- /0ctf-tctf-2020/emmm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2020/emmm/README.md -------------------------------------------------------------------------------- /0ctf-tctf-2020/emmm/d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2020/emmm/d.py -------------------------------------------------------------------------------- /0ctf-tctf-2020/emmm/e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2020/emmm/e.py -------------------------------------------------------------------------------- /0ctf-tctf-2020/emmm/flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2020/emmm/flag.py -------------------------------------------------------------------------------- /0ctf-tctf-2020/emmm/solve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2020/emmm/solve.cpp -------------------------------------------------------------------------------- /0ctf-tctf-2020/sham/README.md: -------------------------------------------------------------------------------- 1 | NN-based hash with some forward propagation things 2 | -------------------------------------------------------------------------------- /0ctf-tctf-2020/sham/flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2020/sham/flag.py -------------------------------------------------------------------------------- /0ctf-tctf-2020/sham/getsig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2020/sham/getsig.py -------------------------------------------------------------------------------- /0ctf-tctf-2020/sham/myhashlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2020/sham/myhashlib.py -------------------------------------------------------------------------------- /0ctf-tctf-2020/sham/sham_1abc55860e453619482de930fcf44562.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2020/sham/sham_1abc55860e453619482de930fcf44562.tar.gz -------------------------------------------------------------------------------- /0ctf-tctf-2020/sham/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2020/sham/solve.py -------------------------------------------------------------------------------- /0ctf-tctf-2020/sham/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2020/sham/task.py -------------------------------------------------------------------------------- /0ctf-tctf-2021-final/bali/README.md: -------------------------------------------------------------------------------- 1 | # bali 2 | 3 | HotSpot "Sea of Nodes" IR reversing 4 | -------------------------------------------------------------------------------- /0ctf-tctf-2021-final/bali/Task.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2021-final/bali/Task.java -------------------------------------------------------------------------------- /0ctf-tctf-2021-final/bali/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2021-final/bali/log.txt -------------------------------------------------------------------------------- /0ctf-tctf-2021-final/bali/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2021-final/bali/solve.py -------------------------------------------------------------------------------- /0ctf-tctf-2021-final/bali/src/Task.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2021-final/bali/src/Task.java -------------------------------------------------------------------------------- /0ctf-tctf-2021-final/how2gen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2021-final/how2gen/README.md -------------------------------------------------------------------------------- /0ctf-tctf-2021-final/how2gen/a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2021-final/how2gen/a.py -------------------------------------------------------------------------------- /0ctf-tctf-2021-final/how2gen/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2021-final/how2gen/solve.py -------------------------------------------------------------------------------- /0ctf-tctf-2021-final/how2gen/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2021-final/how2gen/task.py -------------------------------------------------------------------------------- /0ctf-tctf-2021/cloudpass/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2021/cloudpass/README.md -------------------------------------------------------------------------------- /0ctf-tctf-2021/cloudpass/cloudpass_61ed6cef9bacefdb86f9f8aea710439a.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2021/cloudpass/cloudpass_61ed6cef9bacefdb86f9f8aea710439a.tar.gz -------------------------------------------------------------------------------- /0ctf-tctf-2021/cloudpass/conn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2021/cloudpass/conn.py -------------------------------------------------------------------------------- /0ctf-tctf-2021/cloudpass/decentry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2021/cloudpass/decentry.py -------------------------------------------------------------------------------- /0ctf-tctf-2021/cloudpass/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2021/cloudpass/dump.py -------------------------------------------------------------------------------- /0ctf-tctf-2021/cloudpass/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2021/cloudpass/solve.py -------------------------------------------------------------------------------- /0ctf-tctf-2021/cloudpass/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2021/cloudpass/task.py -------------------------------------------------------------------------------- /0ctf-tctf-2021/cloudpass/test0.kdbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2021/cloudpass/test0.kdbx -------------------------------------------------------------------------------- /0ctf-tctf-2021/cloudpass/uncomp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2021/cloudpass/uncomp.py -------------------------------------------------------------------------------- /0ctf-tctf-2021/how2mutate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2021/how2mutate/README.md -------------------------------------------------------------------------------- /0ctf-tctf-2021/how2mutate/how2mutate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2021/how2mutate/how2mutate -------------------------------------------------------------------------------- /0ctf-tctf-2021/how2mutate/how2mutate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2021/how2mutate/how2mutate.c -------------------------------------------------------------------------------- /0ctf-tctf-2021/how2mutate/how2mutate_709bce9c7c577d1717e4460540e12720.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2021/how2mutate/how2mutate_709bce9c7c577d1717e4460540e12720.tar.gz -------------------------------------------------------------------------------- /0ctf-tctf-2021/how2mutate/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2021/how2mutate/solve.py -------------------------------------------------------------------------------- /0ctf-tctf-2022/babysnitch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/babysnitch/README.md -------------------------------------------------------------------------------- /0ctf-tctf-2022/babysnitch/flag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/babysnitch/flag -------------------------------------------------------------------------------- /0ctf-tctf-2022/babysnitch/release/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/babysnitch/release/docker/Dockerfile -------------------------------------------------------------------------------- /0ctf-tctf-2022/babysnitch/release/docker/flag: -------------------------------------------------------------------------------- 1 | flag{test_flag} 2 | -------------------------------------------------------------------------------- /0ctf-tctf-2022/babysnitch/release/docker/opensnitch_1.5.2-1_amd64.deb.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/babysnitch/release/docker/opensnitch_1.5.2-1_amd64.deb.url -------------------------------------------------------------------------------- /0ctf-tctf-2022/babysnitch/release/docker/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/babysnitch/release/docker/run.sh -------------------------------------------------------------------------------- /0ctf-tctf-2022/babysnitch/release/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/babysnitch/release/readme.txt -------------------------------------------------------------------------------- /0ctf-tctf-2022/babysnitch/release/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/babysnitch/release/service.py -------------------------------------------------------------------------------- /0ctf-tctf-2022/babysnitch/solve/app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/babysnitch/solve/app -------------------------------------------------------------------------------- /0ctf-tctf-2022/babysnitch/solve/app.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/babysnitch/solve/app.zip -------------------------------------------------------------------------------- /0ctf-tctf-2022/babysnitch/solve/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/babysnitch/solve/solve.py -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/README.md -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/flag.py -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/release/flag.py: -------------------------------------------------------------------------------- 1 | flag = "flag{todo}" 2 | -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/release/llc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/release/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/release/readme.txt -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/release/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/release/service.py -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/solve/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/solve/solve.py -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/solve/test.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/solve/test.ll -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/AsmParser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/AsmParser/CMakeLists.txt -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/AsmParser/ChalAsmParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/AsmParser/ChalAsmParser.cpp -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/CMakeLists.txt -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/Chal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/Chal.h -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/Chal.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/Chal.td -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/ChalAsmPrinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/ChalAsmPrinter.cpp -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/ChalCallingConv.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/ChalCallingConv.td -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/ChalFrameLowering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/ChalFrameLowering.cpp -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/ChalFrameLowering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/ChalFrameLowering.h -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/ChalISelDAGToDAG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/ChalISelDAGToDAG.cpp -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/ChalISelLowering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/ChalISelLowering.cpp -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/ChalISelLowering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/ChalISelLowering.h -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/ChalInstrFormats.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/ChalInstrFormats.td -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/ChalInstrInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/ChalInstrInfo.cpp -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/ChalInstrInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/ChalInstrInfo.h -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/ChalInstrInfo.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/ChalInstrInfo.td -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/ChalRegisterInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/ChalRegisterInfo.cpp -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/ChalRegisterInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/ChalRegisterInfo.h -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/ChalRegisterInfo.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/ChalRegisterInfo.td -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/ChalSelectionDAGInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/ChalSelectionDAGInfo.h -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/ChalSubtarget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/ChalSubtarget.cpp -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/ChalSubtarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/ChalSubtarget.h -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/ChalTargetMachine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/ChalTargetMachine.cpp -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/ChalTargetMachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/ChalTargetMachine.h -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/ChalTargetTransformInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/ChalTargetTransformInfo.h -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/MCTargetDesc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/MCTargetDesc/CMakeLists.txt -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/MCTargetDesc/ChalAsmBackend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/MCTargetDesc/ChalAsmBackend.cpp -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/MCTargetDesc/ChalELFObjectWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/MCTargetDesc/ChalELFObjectWriter.cpp -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/MCTargetDesc/ChalMCAsmInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/MCTargetDesc/ChalMCAsmInfo.h -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/MCTargetDesc/ChalMCCodeEmitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/MCTargetDesc/ChalMCCodeEmitter.cpp -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/MCTargetDesc/ChalMCTargetDesc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/MCTargetDesc/ChalMCTargetDesc.cpp -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/MCTargetDesc/ChalMCTargetDesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/MCTargetDesc/ChalMCTargetDesc.h -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/TargetInfo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/TargetInfo/CMakeLists.txt -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/TargetInfo/ChalTargetInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/TargetInfo/ChalTargetInfo.cpp -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/TargetInfo/ChalTargetInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/TargetInfo/ChalTargetInfo.h -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/src/llvm/lib/Target/Chal/gen.py -------------------------------------------------------------------------------- /0ctf-tctf-2022/backend/src/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2022/backend/src/readme.txt -------------------------------------------------------------------------------- /0ctf-tctf-2023/ctar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2023/ctar/README.md -------------------------------------------------------------------------------- /0ctf-tctf-2023/ctar/ctar_a9c36bb8569617a77757bb8e5aa93642.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2023/ctar/ctar_a9c36bb8569617a77757bb8e5aa93642.zip -------------------------------------------------------------------------------- /0ctf-tctf-2023/ctar/getone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2023/ctar/getone.py -------------------------------------------------------------------------------- /0ctf-tctf-2023/ctar/secret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2023/ctar/secret.py -------------------------------------------------------------------------------- /0ctf-tctf-2023/ctar/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2023/ctar/solve.py -------------------------------------------------------------------------------- /0ctf-tctf-2023/ctar/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2023/ctar/task.py -------------------------------------------------------------------------------- /0ctf-tctf-2023/how2compile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2023/how2compile/README.md -------------------------------------------------------------------------------- /0ctf-tctf-2023/how2compile/high.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2023/how2compile/high.rs -------------------------------------------------------------------------------- /0ctf-tctf-2023/how2compile/how2compile_7e4f6a5038e2ae91146106bf707a0eea.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2023/how2compile/how2compile_7e4f6a5038e2ae91146106bf707a0eea.zip -------------------------------------------------------------------------------- /0ctf-tctf-2023/how2compile/how2compile_fixed_bf935dd243206ab06b6035173dbe1582.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2023/how2compile/how2compile_fixed_bf935dd243206ab06b6035173dbe1582.zip -------------------------------------------------------------------------------- /0ctf-tctf-2023/how2compile/low.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2023/how2compile/low.rs -------------------------------------------------------------------------------- /0ctf-tctf-2023/how2compile/mid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2023/how2compile/mid.rs -------------------------------------------------------------------------------- /0ctf-tctf-2023/how2compile/task2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/0ctf-tctf-2023/how2compile/task2.rs -------------------------------------------------------------------------------- /0ctf-tctf-2023/how2compile/wrapper.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | rustup run nightly-2023-11-03 ./task 2>/dev/null 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/README.md -------------------------------------------------------------------------------- /rctf-2021/dht/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/rctf-2021/dht/README.md -------------------------------------------------------------------------------- /rctf-2021/dht/chal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/rctf-2021/dht/chal -------------------------------------------------------------------------------- /rctf-2021/dht/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/rctf-2021/dht/solve.py -------------------------------------------------------------------------------- /rctf-2021/two_shortest/185: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/rctf-2021/two_shortest/185 -------------------------------------------------------------------------------- /rctf-2021/two_shortest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/rctf-2021/two_shortest/README.md -------------------------------------------------------------------------------- /rctf-2021/two_shortest/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septyem/My-Public-CTF-Challenges/HEAD/rctf-2021/two_shortest/solve.py --------------------------------------------------------------------------------