├── .gitattributes ├── LICENSE ├── LICENSE.content.md ├── README.md ├── blockchains ├── README.md ├── sekai-lending │ ├── README.md │ ├── challenge │ │ ├── Dockerfile │ │ ├── docker-compose.yml │ │ ├── entrypoint.sh │ │ ├── framework-solve │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ ├── Move.lock │ │ │ │ ├── Move.toml │ │ │ │ └── sources │ │ │ │ │ ├── challenge.move │ │ │ │ │ ├── coins │ │ │ │ │ ├── collateral_coin.move │ │ │ │ │ └── sekai_coin.move │ │ │ │ │ └── sekai_lending.move │ │ │ ├── solve │ │ │ │ ├── Move.lock │ │ │ │ ├── Move.toml │ │ │ │ └── sources │ │ │ │ │ └── solution.move │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── framework │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ ├── chall │ │ │ │ ├── Move.lock │ │ │ │ ├── Move.toml │ │ │ │ └── sources │ │ │ │ │ ├── challenge.move │ │ │ │ │ ├── coins │ │ │ │ │ ├── collateral_coin.move │ │ │ │ │ └── sekai_coin.move │ │ │ │ │ └── sekai_lending.move │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── run_client.sh │ │ └── run_server.sh │ └── dist │ │ ├── Dockerfile │ │ ├── docker-compose.yml │ │ ├── framework-solve │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── dependency │ │ │ ├── Move.lock │ │ │ ├── Move.toml │ │ │ └── sources │ │ │ │ ├── challenge.move │ │ │ │ ├── coins │ │ │ │ ├── collateral_coin.move │ │ │ │ └── sekai_coin.move │ │ │ │ └── sekai_lending.move │ │ ├── solve │ │ │ ├── Move.lock │ │ │ ├── Move.toml │ │ │ └── sources │ │ │ │ └── solution.move │ │ └── src │ │ │ └── main.rs │ │ ├── framework │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── chall │ │ │ ├── Move.lock │ │ │ ├── Move.toml │ │ │ └── sources │ │ │ │ ├── challenge.move │ │ │ │ ├── coins │ │ │ │ ├── collateral_coin.move │ │ │ │ └── sekai_coin.move │ │ │ │ └── sekai_lending.move │ │ └── src │ │ │ └── main.rs │ │ ├── run_client.sh │ │ └── run_server.sh ├── sekai-meme-launcher │ ├── README.md │ ├── challenge │ │ ├── Dockerfile │ │ ├── challenge.py │ │ ├── deployment.yaml │ │ ├── entrypoint.sh │ │ └── project │ │ │ ├── .DS_Store │ │ │ ├── .gitignore │ │ │ ├── foundry.toml │ │ │ ├── remappings.txt │ │ │ ├── script │ │ │ └── Deploy.s.sol │ │ │ └── src │ │ │ ├── MemeManager.sol │ │ │ ├── MemeToken.sol │ │ │ ├── VC.sol │ │ │ └── interfaces │ │ │ ├── IUniswapV2Factory.sol │ │ │ ├── IUniswapV2Pair.sol │ │ │ ├── IUniswapV2Router02.sol │ │ │ └── IWETH.sol │ ├── dist │ │ ├── Deploy.s.sol │ │ ├── challenge.py │ │ └── src │ │ │ ├── MemeManager.sol │ │ │ ├── MemeToken.sol │ │ │ ├── VC.sol │ │ │ └── interfaces │ │ │ ├── IUniswapV2Factory.sol │ │ │ ├── IUniswapV2Pair.sol │ │ │ ├── IUniswapV2Router02.sol │ │ │ └── IWETH.sol │ └── solution │ │ ├── .gitignore │ │ ├── foundry.toml │ │ ├── lib │ │ └── forge-ctf │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ └── src │ │ │ ├── CTFChallenge.sol │ │ │ ├── CTFDeployer.sol │ │ │ └── CTFSolver.sol │ │ ├── remappings.txt │ │ ├── script │ │ ├── Deploy.s.sol │ │ ├── Solve.s.sol │ │ └── Solve2.s.sol │ │ ├── solve.sh │ │ ├── src │ │ ├── MemeManager.sol │ │ ├── MemeToken.sol │ │ ├── VC.sol │ │ └── interfaces │ │ │ ├── IUniswapV2Factory.sol │ │ │ ├── IUniswapV2Pair.sol │ │ │ ├── IUniswapV2Router02.sol │ │ │ └── IWETH.sol │ │ └── test │ │ └── Test.t.sol ├── stray-cat │ ├── README.md │ ├── challenge │ │ ├── Dockerfile │ │ ├── challenge.py │ │ ├── deployment.yaml │ │ ├── entrypoint.sh │ │ └── project │ │ │ ├── .gitignore │ │ │ ├── foundry.toml │ │ │ ├── remappings.txt │ │ │ ├── script │ │ │ └── Deploy.s.sol │ │ │ └── src │ │ │ └── Cat.sol │ ├── dist │ │ ├── Cat.sol │ │ └── challenge.py │ └── solution │ │ ├── .gitignore │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── gen.py │ │ ├── script │ │ └── Solve.s.sol │ │ ├── solve.sh │ │ └── src │ │ └── Solve.sol └── ticket-master │ ├── README.md │ ├── challenge │ ├── Dockerfile │ ├── checker │ │ └── server.ts │ ├── contracts │ │ ├── account.fc │ │ ├── arcade_machine.fc │ │ ├── base_contract.fc │ │ ├── bytecode │ │ │ └── .gitkeep │ │ ├── coin_minter.fc │ │ ├── common │ │ │ ├── constants.fc │ │ │ ├── errors.fc │ │ │ ├── opcode.fc │ │ │ └── utils.fc │ │ ├── imports │ │ │ └── stdlib.fc │ │ ├── service_counter.fc │ │ ├── ticket_minter.fc │ │ └── wallet.fc │ ├── entrypoint.sh │ ├── jest.config.ts │ ├── package.json │ ├── tsconfig.json │ ├── wrappers │ │ ├── Account.compile.ts │ │ ├── ArcadeMachine.compile.ts │ │ ├── BaseContract.compile.ts │ │ ├── BaseContract.ts │ │ ├── CoinMinter.compile.ts │ │ ├── Exploit.ts │ │ ├── Minter.ts │ │ ├── ServiceCounter.compile.ts │ │ ├── ServiceCounter.ts │ │ ├── TicketMinter.compile.ts │ │ ├── Wallet.compile.ts │ │ └── constants │ │ │ └── opcode.ts │ └── yarn.lock │ ├── dist │ ├── .dockerignore │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── checker │ │ ├── server.ts │ │ └── submit.ts │ ├── compose.yml │ ├── contracts │ │ ├── account.fc │ │ ├── arcade_machine.fc │ │ ├── base_contract.fc │ │ ├── bytecode │ │ │ └── .gitkeep │ │ ├── coin_minter.fc │ │ ├── common │ │ │ ├── constants.fc │ │ │ ├── errors.fc │ │ │ ├── opcode.fc │ │ │ └── utils.fc │ │ ├── exploit.fc │ │ ├── imports │ │ │ └── stdlib.fc │ │ ├── service_counter.fc │ │ ├── ticket_minter.fc │ │ └── wallet.fc │ ├── jest.config.ts │ ├── package.json │ ├── tests │ │ └── Challenge.spec.ts │ ├── tsconfig.json │ ├── wrappers │ │ ├── Account.compile.ts │ │ ├── ArcadeMachine.compile.ts │ │ ├── BaseContract.compile.ts │ │ ├── BaseContract.ts │ │ ├── CoinMinter.compile.ts │ │ ├── Exploit.compile.ts │ │ ├── Exploit.ts │ │ ├── Minter.ts │ │ ├── ServiceCounter.compile.ts │ │ ├── ServiceCounter.ts │ │ ├── TicketMinter.compile.ts │ │ ├── Wallet.compile.ts │ │ └── constants │ │ │ └── opcode.ts │ └── yarn.lock │ ├── image.jpg │ └── solution │ ├── README.md │ ├── checker │ └── submit.ts │ ├── contracts │ ├── base_contract.fc │ ├── bytecode │ │ └── .gitkeep │ ├── common │ │ ├── constants.fc │ │ ├── errors.fc │ │ ├── opcode.fc │ │ └── utils.fc │ ├── exploit.fc │ └── imports │ │ └── stdlib.fc │ ├── jest.config.ts │ ├── package.json │ ├── tsconfig.json │ ├── wrappers │ ├── BaseContract.compile.ts │ ├── Exploit.compile.ts │ └── constants │ │ └── opcode.ts │ └── yarn.lock ├── crypto ├── README.md ├── alter-ego │ ├── README.md │ ├── challenge │ │ ├── Dockerfile │ │ ├── app │ │ │ ├── chall.sage │ │ │ ├── montgomery_isogenies │ │ │ │ ├── __init__.py │ │ │ │ ├── isogenies_x_only.py │ │ │ │ ├── kummer_isogeny.py │ │ │ │ └── kummer_line.py │ │ │ └── utilities │ │ │ │ ├── __init__.py │ │ │ │ └── fast_roots.py │ │ └── xinetd │ ├── dist │ │ ├── chall.sage │ │ ├── montgomery_isogenies │ │ │ ├── __init__.py │ │ │ ├── isogenies_x_only.py │ │ │ ├── kummer_isogeny.py │ │ │ └── kummer_line.py │ │ └── utilities │ │ │ ├── __init__.py │ │ │ └── fast_roots.py │ └── solution │ │ ├── montgomery_isogenies │ │ ├── __init__.py │ │ ├── isogenies_x_only.py │ │ ├── kummer_isogeny.py │ │ └── kummer_line.py │ │ ├── solver.sage │ │ └── utilities │ │ ├── __init__.py │ │ └── fast_roots.py ├── apes │ ├── README.md │ ├── challenge │ │ ├── Dockerfile │ │ ├── app │ │ │ └── chall.py │ │ └── xinetd │ ├── dist │ │ └── chall.py │ └── solution │ │ └── solve.sage ├── i-dream-of-genni │ ├── README.md │ ├── dist │ │ └── idog.py │ ├── image.jpg │ └── solution │ │ ├── solve.py │ │ └── solve_transcript.txt ├── law-and-order │ ├── README.md │ ├── challenge │ │ ├── Dockerfile │ │ ├── app │ │ │ └── chall.py │ │ └── xinetd │ ├── dist │ │ └── chall.py │ └── solution │ │ └── solve.py ├── ssss │ ├── README.md │ ├── challenge │ │ ├── Dockerfile │ │ ├── app │ │ │ └── chall.py │ │ └── xinetd │ ├── dist │ │ └── chall.py │ └── solution │ │ └── solve.sage ├── unfairy-ring-plusplus │ ├── README.md │ └── dist │ │ ├── chall.py │ │ └── uov.py └── unfairy-ring │ ├── README.md │ └── dist │ ├── chall.py │ └── uov.py ├── misc ├── README.md ├── discrepancy │ ├── README.md │ ├── challenge │ │ ├── Dockerfile │ │ ├── ctf.xinetd │ │ ├── docker-compose.yml │ │ └── src │ │ │ ├── discrepancy.py │ │ │ ├── flag.txt │ │ │ └── start.sh │ ├── dist │ │ └── discrepancy.zip │ └── solution │ │ ├── README.md │ │ └── solve.py ├── literal-eval │ ├── README.md │ ├── challenge │ │ ├── Dockerfile │ │ ├── app │ │ │ └── chall.py │ │ └── xinetd │ ├── dist │ │ └── chall.py │ └── solution │ │ └── solve.py └── sekai-bank-transaction │ ├── README.md │ ├── challenge │ ├── api │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── deployment.yaml │ │ ├── docker-compose.yml │ │ ├── docker │ │ │ └── mongo-init.js │ │ ├── package.json │ │ └── src │ │ │ ├── middleware │ │ │ ├── auth.js │ │ │ ├── errorHandler.js │ │ │ ├── pinVerification.js │ │ │ ├── requirePinSession.js │ │ │ └── signatureVerification.js │ │ │ ├── models │ │ │ ├── AuditLog.js │ │ │ ├── Transaction.js │ │ │ └── User.js │ │ │ ├── routes │ │ │ ├── auth.js │ │ │ ├── health.js │ │ │ ├── transactions.js │ │ │ └── user.js │ │ │ ├── server.js │ │ │ └── utils │ │ │ ├── jwt.js │ │ │ ├── logger.js │ │ │ └── validation.js │ └── poc-tester │ │ ├── .env │ │ ├── deployment.yaml │ │ ├── docker-compose.yml │ │ ├── env.example │ │ ├── poc-device │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ └── start.sh │ │ └── poc-web │ │ ├── Dockerfile │ │ ├── requirements.txt │ │ └── src │ │ ├── app.py │ │ ├── challenges │ │ ├── .gitkeep │ │ └── SekaiBank │ │ │ ├── challenge.apk │ │ │ └── client.py │ │ ├── config.py │ │ ├── pow.py │ │ ├── screenshots │ │ └── .gitkeep │ │ ├── templates │ │ └── index.html │ │ ├── type.py │ │ └── utils.py │ ├── dist │ └── SekaiBank.apk │ └── solution │ └── POC.apk ├── ppc ├── README.md ├── nokotans-antler-tines │ ├── README.md │ ├── dist │ │ └── Nokotan's Antler Tines.pdf │ └── solution │ │ └── main_sol.cpp ├── nokotans-arcade │ ├── README.md │ ├── dist │ │ └── Nokotan's Arcade.pdf │ └── solution │ │ └── main_sol.cpp └── nokotans-guidance │ ├── README.md │ ├── dist │ └── Nokotan's Guidance.pdf │ └── solution │ └── main_sol.cpp ├── pwn ├── README.md ├── learning-oop │ ├── README.md │ ├── challenge │ │ ├── Dockerfile │ │ ├── docker-compose.yml │ │ ├── flag.txt │ │ ├── learning_oop │ │ └── src │ │ │ └── learning_oop.cpp │ ├── dist │ │ ├── Dockerfile │ │ ├── ld-linux-x86-64.so.2 │ │ ├── learning_oop │ │ ├── learning_oop.cpp │ │ └── libc.so.6 │ └── solution │ │ ├── README.md │ │ └── exploit.py ├── outdated │ ├── README.md │ ├── challenge │ │ ├── Dockerfile │ │ ├── docker-compose.yml │ │ ├── flag.txt │ │ ├── outdated │ │ └── src │ │ │ ├── Makefile │ │ │ └── outdated.c │ ├── dist │ │ └── pwn_outdated.zip │ └── solution │ │ ├── README.md │ │ ├── libc.so │ │ └── solve.py ├── speedpwn-2 │ ├── README.md │ ├── challenge │ │ ├── Dockerfile │ │ ├── chall │ │ ├── docker-compose.yml │ │ ├── flag.txt │ │ └── src │ │ │ └── chall.c │ ├── dist │ │ └── pwn_speedpwn-2.zip │ └── solution │ │ ├── README.md │ │ ├── chall │ │ ├── chall_patched │ │ ├── exploit.py │ │ ├── ld-linux-x86-64.so.2 │ │ └── libc.so.6 ├── umiyuri-kaikeitan │ ├── README.md │ ├── challenge │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── app │ │ │ ├── app.py │ │ │ ├── lib │ │ │ │ └── cape.py │ │ │ └── templates │ │ │ │ └── index.html │ │ ├── chall.zip │ │ ├── requirements.txt │ │ └── src │ │ │ ├── README.md │ │ │ ├── game.sln │ │ │ ├── game.vcxproj │ │ │ ├── game.vcxproj.filters │ │ │ ├── main.cpp │ │ │ └── nt.h │ ├── dist │ │ └── dist.zip │ └── solution │ │ ├── data.txt │ │ └── gen.py ├── vkfs │ ├── README.md │ ├── challenge │ │ ├── Dockerfile │ │ ├── docker-compose.yml │ │ ├── entrypoint.sh │ │ ├── flag.txt │ │ ├── src │ │ │ ├── Makefile │ │ │ └── src │ │ │ │ ├── vkfs.c │ │ │ │ ├── vkfs.h │ │ │ │ └── vkfs.o │ │ ├── start.sh │ │ ├── supervisord.conf │ │ └── vkfs │ ├── dist │ │ ├── Makefile │ │ ├── flag.txt │ │ ├── src │ │ │ ├── vkfs.c │ │ │ ├── vkfs.h │ │ │ └── vkfs.o │ │ └── vkfs │ └── solution │ │ ├── exp │ │ ├── exp.c │ │ └── generate_payload.py └── wic │ └── README.md ├── reverse ├── README.md ├── alchemy-master │ ├── README.md │ ├── challenge │ │ ├── server │ │ │ ├── MSVC │ │ │ │ └── 14.44.35207 │ │ │ │ │ └── bin │ │ │ │ │ └── Hostx64 │ │ │ │ │ └── x64 │ │ │ │ │ ├── 1033 │ │ │ │ │ └── clui.dll │ │ │ │ │ ├── c1xx.dll │ │ │ │ │ ├── c2.dll │ │ │ │ │ ├── cl.exe │ │ │ │ │ ├── mspdbcore.dll │ │ │ │ │ └── tbbmalloc.dll │ │ │ ├── README.md │ │ │ ├── launch.bat │ │ │ ├── launch.exe │ │ │ ├── plugin.dll │ │ │ ├── server.py │ │ │ └── socat │ │ │ │ ├── cygcrypto-1.0.0.dll │ │ │ │ ├── cyggcc_s-1.dll │ │ │ │ ├── cygncursesw-10.dll │ │ │ │ ├── cygreadline7.dll │ │ │ │ ├── cygssl-1.0.0.dll │ │ │ │ ├── cygwin1.dll │ │ │ │ ├── cygwrap-0.dll │ │ │ │ ├── cygz.dll │ │ │ │ └── socat.exe │ │ └── src │ │ │ ├── .clang-format │ │ │ ├── .gitignore │ │ │ ├── cxx-shared │ │ │ ├── cxx-shared.vcxitems │ │ │ ├── cxx-shared.vcxitems.user │ │ │ └── shared │ │ │ │ ├── game │ │ │ │ └── game.hpp │ │ │ │ └── msvc │ │ │ │ ├── context.hpp │ │ │ │ └── structs.hpp │ │ │ ├── launch │ │ │ ├── launch.vcxproj │ │ │ ├── launch.vcxproj.filters │ │ │ ├── launch.vcxproj.user │ │ │ └── main.cpp │ │ │ ├── msvc-alchemy.sln │ │ │ ├── plugin │ │ │ ├── callbacks │ │ │ │ ├── callbacks.hpp │ │ │ │ ├── on_module_load.cpp │ │ │ │ └── visit_func.cpp │ │ │ ├── dllmain.cpp │ │ │ ├── hooks │ │ │ │ └── hooks.hpp │ │ │ ├── minhook │ │ │ │ ├── MinHook.h │ │ │ │ ├── buffer.c │ │ │ │ ├── buffer.h │ │ │ │ ├── hde │ │ │ │ │ ├── hde32.c │ │ │ │ │ ├── hde32.h │ │ │ │ │ ├── hde64.c │ │ │ │ │ ├── hde64.h │ │ │ │ │ ├── pstdint.h │ │ │ │ │ ├── table32.h │ │ │ │ │ └── table64.h │ │ │ │ ├── hook.c │ │ │ │ ├── trampoline.c │ │ │ │ └── trampoline.h │ │ │ ├── plugin.vcxproj │ │ │ ├── plugin.vcxproj.filters │ │ │ ├── plugin.vcxproj.user │ │ │ └── util │ │ │ │ └── hooks.hpp │ │ │ └── scripts │ │ │ ├── config.py │ │ │ ├── pyproject.toml │ │ │ ├── solution.cpp │ │ │ └── solve.py │ ├── dist │ │ ├── MSVC │ │ │ └── 14.44.35207 │ │ │ │ └── bin │ │ │ │ └── Hostx64 │ │ │ │ └── x64 │ │ │ │ ├── 1033 │ │ │ │ └── clui.dll │ │ │ │ ├── c1xx.dll │ │ │ │ ├── c2.dll │ │ │ │ ├── cl.exe │ │ │ │ ├── mspdbcore.dll │ │ │ │ └── tbbmalloc.dll │ │ ├── launch.exe │ │ ├── plugin.dll │ │ └── server.py │ ├── image.jpg │ └── solution │ │ ├── README.md │ │ ├── pics │ │ ├── 2156.png │ │ ├── 2210.png │ │ ├── 2327.png │ │ ├── 2355.png │ │ └── 2362.png │ │ ├── playground │ │ ├── config.py │ │ └── solve.py │ │ ├── send.py │ │ ├── solution.cpp │ │ └── solution_final.cpp ├── gondola │ ├── README.md │ ├── challenge │ │ ├── build.sh │ │ ├── chal.cpp │ │ └── chal.lua │ ├── dist │ │ └── chal.lua │ ├── image.png │ └── solution │ │ └── solve.py ├── miku-music-machine │ ├── README.md │ ├── challenge │ │ ├── README.md │ │ ├── gen.c │ │ ├── main.c │ │ ├── mazegen.py │ │ └── patcher │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ ├── consts.rs │ │ │ └── main.rs │ ├── dist │ │ ├── miku-music-machine.exe │ │ └── mmm-v2.exe │ └── solution │ │ ├── README.md │ │ └── maze.txt ├── sekai-craft │ ├── README.md │ ├── challenge │ │ ├── encrypt.py │ │ └── generate.py │ ├── dist │ │ └── mvm.zip │ └── solution │ │ └── solve.py ├── sekaibank-signature │ ├── README.md │ ├── dist │ │ └── SekaiBank.apk │ └── solution │ │ └── writeup.md └── what-in-ternation │ ├── README.md │ ├── challenge │ ├── README.md │ ├── flag_checker.sv │ ├── flag_checker.ys │ ├── main.cpp │ └── verilog_to_ternlog.py │ ├── dist │ └── what-in-ternation │ └── solution │ ├── README.md │ └── solve.py └── web ├── README.md ├── captivating-canvas-contraption ├── README.md ├── challenge │ ├── Dockerfile │ ├── adminbot.js │ ├── default.conf │ ├── miku.png │ ├── miku.ts │ └── www │ │ ├── editor.html │ │ ├── examples │ │ ├── miku.wasm │ │ ├── rainbow.wasm │ │ └── solid.wasm │ │ └── index.html ├── dist │ ├── adminbot.js │ ├── editor.html │ ├── examples │ │ ├── miku.wasm │ │ ├── rainbow.wasm │ │ └── solid.wasm │ └── index.html └── solution │ ├── build.sh │ ├── index.ts │ └── solve.wasm ├── fancy-web ├── README.md ├── challenge │ ├── Dockerfile │ ├── challenge-custom │ │ ├── fancy │ │ │ └── fancy.php │ │ └── flag.txt │ ├── docker-compose.yml │ ├── docker │ │ └── wordpress │ │ │ └── toolbox │ │ │ └── Makefile │ └── init.sh ├── dist │ ├── Dockerfile │ ├── challenge-custom │ │ ├── fancy │ │ │ └── fancy.php │ │ └── flag.txt │ ├── docker-compose.yml │ ├── docker │ │ └── wordpress │ │ │ └── toolbox │ │ │ └── Makefile │ └── init.sh └── solution │ ├── filter_chain.py │ ├── solve.php │ └── solve.py ├── hqli-me ├── README.md ├── challenge │ ├── authn_service │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── flag.s │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── sekai │ │ │ ├── HibernateUtil.java │ │ │ ├── Main.java │ │ │ ├── Session.java │ │ │ ├── User.java │ │ │ └── Util.java │ ├── compose.yaml │ └── order_service │ │ ├── Dockerfile │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── java │ │ └── sekai │ │ ├── HibernateUtil.java │ │ ├── Main.java │ │ ├── Order.java │ │ ├── UserAuthenticationClient.java │ │ └── Util.java ├── dist │ ├── authn_service │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ ├── flag.s │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── sekai │ │ │ ├── HibernateUtil.java │ │ │ ├── Main.java │ │ │ ├── Session.java │ │ │ ├── User.java │ │ │ └── Util.java │ ├── compose.yaml │ └── order_service │ │ ├── Dockerfile │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── java │ │ └── sekai │ │ ├── HibernateUtil.java │ │ ├── Main.java │ │ ├── Order.java │ │ ├── UserAuthenticationClient.java │ │ └── Util.java └── solution │ └── e.py ├── my-flask-app ├── README.md ├── challenge │ ├── Dockerfile │ ├── app │ │ ├── app.py │ │ ├── static │ │ │ ├── css │ │ │ │ └── style.css │ │ │ ├── images │ │ │ │ └── miku.webp │ │ │ └── js │ │ │ │ └── miku.js │ │ └── templates │ │ │ └── index.html │ ├── docker-compose.yml │ └── flag.txt ├── dist │ ├── Dockerfile │ ├── app │ │ ├── app.py │ │ ├── flag.txt │ │ ├── static │ │ │ ├── css │ │ │ │ └── style.css │ │ │ ├── images │ │ │ │ └── miku.webp │ │ │ └── js │ │ │ │ └── miku.js │ │ └── templates │ │ │ └── index.html │ └── docker-compose.yml └── solution │ └── solve.py ├── notebook-viewer ├── README.md ├── challenge │ ├── Dockerfile │ ├── frame.html │ ├── index.html │ └── nginx.conf ├── dist │ ├── Dockerfile │ ├── adminbot.js │ ├── frame.html │ ├── index.html │ └── nginx.conf └── solution │ └── solver.html ├── rednote ├── README.md ├── challenge │ ├── Dockerfile │ ├── app.js │ ├── package.json │ ├── public │ │ └── purify.min.js │ └── views │ │ ├── home.hbs │ │ ├── index.hbs │ │ ├── layout.hbs │ │ ├── login.hbs │ │ ├── note.hbs │ │ └── register.hbs ├── dist │ ├── bot.js │ └── rednote │ │ ├── Dockerfile │ │ ├── app.js │ │ ├── package.json │ │ ├── public │ │ └── purify.min.js │ │ └── views │ │ ├── home.hbs │ │ ├── index.hbs │ │ ├── layout.hbs │ │ ├── login.hbs │ │ ├── note.hbs │ │ └── register.hbs └── solution │ └── solve.html └── vite ├── README.md ├── challenge ├── Dockerfile ├── app │ ├── package.json │ ├── src │ │ ├── app.d.ts │ │ ├── app.html │ │ ├── hooks.server.js │ │ ├── lib │ │ │ └── index.js │ │ └── routes │ │ │ └── +page.svelte │ ├── static │ │ └── favicon.png │ ├── svelte.config.js │ └── vite.config.js ├── entrypoint.sh ├── flag.s └── supervisord.conf ├── dist ├── Dockerfile ├── app │ ├── package.json │ ├── src │ │ ├── app.d.ts │ │ ├── app.html │ │ ├── hooks.server.js │ │ ├── lib │ │ │ └── index.js │ │ └── routes │ │ │ └── +page.svelte │ ├── static │ │ └── favicon.png │ ├── svelte.config.js │ └── vite.config.js ├── entrypoint.sh ├── flag.s └── supervisord.conf └── solution └── solve.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/LICENSE.content.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/README.md -------------------------------------------------------------------------------- /blockchains/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/README.md -------------------------------------------------------------------------------- /blockchains/sekai-lending/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/README.md -------------------------------------------------------------------------------- /blockchains/sekai-lending/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/challenge/Dockerfile -------------------------------------------------------------------------------- /blockchains/sekai-lending/challenge/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/challenge/docker-compose.yml -------------------------------------------------------------------------------- /blockchains/sekai-lending/challenge/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/challenge/entrypoint.sh -------------------------------------------------------------------------------- /blockchains/sekai-lending/challenge/framework-solve/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/challenge/framework-solve/Cargo.lock -------------------------------------------------------------------------------- /blockchains/sekai-lending/challenge/framework-solve/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/challenge/framework-solve/Cargo.toml -------------------------------------------------------------------------------- /blockchains/sekai-lending/challenge/framework-solve/dependency/Move.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/challenge/framework-solve/dependency/Move.lock -------------------------------------------------------------------------------- /blockchains/sekai-lending/challenge/framework-solve/dependency/Move.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/challenge/framework-solve/dependency/Move.toml -------------------------------------------------------------------------------- /blockchains/sekai-lending/challenge/framework-solve/dependency/sources/challenge.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/challenge/framework-solve/dependency/sources/challenge.move -------------------------------------------------------------------------------- /blockchains/sekai-lending/challenge/framework-solve/dependency/sources/coins/collateral_coin.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/challenge/framework-solve/dependency/sources/coins/collateral_coin.move -------------------------------------------------------------------------------- /blockchains/sekai-lending/challenge/framework-solve/dependency/sources/coins/sekai_coin.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/challenge/framework-solve/dependency/sources/coins/sekai_coin.move -------------------------------------------------------------------------------- /blockchains/sekai-lending/challenge/framework-solve/dependency/sources/sekai_lending.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/challenge/framework-solve/dependency/sources/sekai_lending.move -------------------------------------------------------------------------------- /blockchains/sekai-lending/challenge/framework-solve/solve/Move.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/challenge/framework-solve/solve/Move.lock -------------------------------------------------------------------------------- /blockchains/sekai-lending/challenge/framework-solve/solve/Move.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/challenge/framework-solve/solve/Move.toml -------------------------------------------------------------------------------- /blockchains/sekai-lending/challenge/framework-solve/solve/sources/solution.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/challenge/framework-solve/solve/sources/solution.move -------------------------------------------------------------------------------- /blockchains/sekai-lending/challenge/framework-solve/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/challenge/framework-solve/src/main.rs -------------------------------------------------------------------------------- /blockchains/sekai-lending/challenge/framework/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/challenge/framework/Cargo.lock -------------------------------------------------------------------------------- /blockchains/sekai-lending/challenge/framework/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/challenge/framework/Cargo.toml -------------------------------------------------------------------------------- /blockchains/sekai-lending/challenge/framework/chall/Move.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/challenge/framework/chall/Move.lock -------------------------------------------------------------------------------- /blockchains/sekai-lending/challenge/framework/chall/Move.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/challenge/framework/chall/Move.toml -------------------------------------------------------------------------------- /blockchains/sekai-lending/challenge/framework/chall/sources/challenge.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/challenge/framework/chall/sources/challenge.move -------------------------------------------------------------------------------- /blockchains/sekai-lending/challenge/framework/chall/sources/coins/collateral_coin.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/challenge/framework/chall/sources/coins/collateral_coin.move -------------------------------------------------------------------------------- /blockchains/sekai-lending/challenge/framework/chall/sources/coins/sekai_coin.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/challenge/framework/chall/sources/coins/sekai_coin.move -------------------------------------------------------------------------------- /blockchains/sekai-lending/challenge/framework/chall/sources/sekai_lending.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/challenge/framework/chall/sources/sekai_lending.move -------------------------------------------------------------------------------- /blockchains/sekai-lending/challenge/framework/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/challenge/framework/src/main.rs -------------------------------------------------------------------------------- /blockchains/sekai-lending/challenge/run_client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/challenge/run_client.sh -------------------------------------------------------------------------------- /blockchains/sekai-lending/challenge/run_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/challenge/run_server.sh -------------------------------------------------------------------------------- /blockchains/sekai-lending/dist/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/dist/Dockerfile -------------------------------------------------------------------------------- /blockchains/sekai-lending/dist/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/dist/docker-compose.yml -------------------------------------------------------------------------------- /blockchains/sekai-lending/dist/framework-solve/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/dist/framework-solve/Cargo.lock -------------------------------------------------------------------------------- /blockchains/sekai-lending/dist/framework-solve/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/dist/framework-solve/Cargo.toml -------------------------------------------------------------------------------- /blockchains/sekai-lending/dist/framework-solve/dependency/Move.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/dist/framework-solve/dependency/Move.lock -------------------------------------------------------------------------------- /blockchains/sekai-lending/dist/framework-solve/dependency/Move.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/dist/framework-solve/dependency/Move.toml -------------------------------------------------------------------------------- /blockchains/sekai-lending/dist/framework-solve/dependency/sources/challenge.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/dist/framework-solve/dependency/sources/challenge.move -------------------------------------------------------------------------------- /blockchains/sekai-lending/dist/framework-solve/dependency/sources/coins/collateral_coin.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/dist/framework-solve/dependency/sources/coins/collateral_coin.move -------------------------------------------------------------------------------- /blockchains/sekai-lending/dist/framework-solve/dependency/sources/coins/sekai_coin.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/dist/framework-solve/dependency/sources/coins/sekai_coin.move -------------------------------------------------------------------------------- /blockchains/sekai-lending/dist/framework-solve/dependency/sources/sekai_lending.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/dist/framework-solve/dependency/sources/sekai_lending.move -------------------------------------------------------------------------------- /blockchains/sekai-lending/dist/framework-solve/solve/Move.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/dist/framework-solve/solve/Move.lock -------------------------------------------------------------------------------- /blockchains/sekai-lending/dist/framework-solve/solve/Move.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/dist/framework-solve/solve/Move.toml -------------------------------------------------------------------------------- /blockchains/sekai-lending/dist/framework-solve/solve/sources/solution.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/dist/framework-solve/solve/sources/solution.move -------------------------------------------------------------------------------- /blockchains/sekai-lending/dist/framework-solve/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/dist/framework-solve/src/main.rs -------------------------------------------------------------------------------- /blockchains/sekai-lending/dist/framework/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/dist/framework/Cargo.lock -------------------------------------------------------------------------------- /blockchains/sekai-lending/dist/framework/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/dist/framework/Cargo.toml -------------------------------------------------------------------------------- /blockchains/sekai-lending/dist/framework/chall/Move.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/dist/framework/chall/Move.lock -------------------------------------------------------------------------------- /blockchains/sekai-lending/dist/framework/chall/Move.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/dist/framework/chall/Move.toml -------------------------------------------------------------------------------- /blockchains/sekai-lending/dist/framework/chall/sources/challenge.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/dist/framework/chall/sources/challenge.move -------------------------------------------------------------------------------- /blockchains/sekai-lending/dist/framework/chall/sources/coins/collateral_coin.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/dist/framework/chall/sources/coins/collateral_coin.move -------------------------------------------------------------------------------- /blockchains/sekai-lending/dist/framework/chall/sources/coins/sekai_coin.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/dist/framework/chall/sources/coins/sekai_coin.move -------------------------------------------------------------------------------- /blockchains/sekai-lending/dist/framework/chall/sources/sekai_lending.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/dist/framework/chall/sources/sekai_lending.move -------------------------------------------------------------------------------- /blockchains/sekai-lending/dist/framework/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/dist/framework/src/main.rs -------------------------------------------------------------------------------- /blockchains/sekai-lending/dist/run_client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/dist/run_client.sh -------------------------------------------------------------------------------- /blockchains/sekai-lending/dist/run_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-lending/dist/run_server.sh -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/README.md -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/challenge/Dockerfile -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/challenge/challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/challenge/challenge.py -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/challenge/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/challenge/deployment.yaml -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/challenge/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/challenge/entrypoint.sh -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/challenge/project/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/challenge/project/.DS_Store -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/challenge/project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/challenge/project/.gitignore -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/challenge/project/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/challenge/project/foundry.toml -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/challenge/project/remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/challenge/project/remappings.txt -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/challenge/project/script/Deploy.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/challenge/project/script/Deploy.s.sol -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/challenge/project/src/MemeManager.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/challenge/project/src/MemeManager.sol -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/challenge/project/src/MemeToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/challenge/project/src/MemeToken.sol -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/challenge/project/src/VC.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/challenge/project/src/VC.sol -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/challenge/project/src/interfaces/IUniswapV2Factory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/challenge/project/src/interfaces/IUniswapV2Factory.sol -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/challenge/project/src/interfaces/IUniswapV2Pair.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/challenge/project/src/interfaces/IUniswapV2Pair.sol -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/challenge/project/src/interfaces/IUniswapV2Router02.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/challenge/project/src/interfaces/IUniswapV2Router02.sol -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/challenge/project/src/interfaces/IWETH.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/challenge/project/src/interfaces/IWETH.sol -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/dist/Deploy.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/dist/Deploy.s.sol -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/dist/challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/dist/challenge.py -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/dist/src/MemeManager.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/dist/src/MemeManager.sol -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/dist/src/MemeToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/dist/src/MemeToken.sol -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/dist/src/VC.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/dist/src/VC.sol -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/dist/src/interfaces/IUniswapV2Factory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/dist/src/interfaces/IUniswapV2Factory.sol -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/dist/src/interfaces/IUniswapV2Pair.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/dist/src/interfaces/IUniswapV2Pair.sol -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/dist/src/interfaces/IUniswapV2Router02.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/dist/src/interfaces/IUniswapV2Router02.sol -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/dist/src/interfaces/IWETH.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/dist/src/interfaces/IWETH.sol -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/solution/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/solution/.gitignore -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/solution/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/solution/foundry.toml -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/solution/lib/forge-ctf/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/solution/lib/forge-ctf/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/** 2 | -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/solution/lib/forge-ctf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/solution/lib/forge-ctf/README.md -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/solution/lib/forge-ctf/src/CTFChallenge.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/solution/lib/forge-ctf/src/CTFChallenge.sol -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/solution/lib/forge-ctf/src/CTFDeployer.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/solution/lib/forge-ctf/src/CTFDeployer.sol -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/solution/lib/forge-ctf/src/CTFSolver.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/solution/lib/forge-ctf/src/CTFSolver.sol -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/solution/remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/solution/remappings.txt -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/solution/script/Deploy.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/solution/script/Deploy.s.sol -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/solution/script/Solve.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/solution/script/Solve.s.sol -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/solution/script/Solve2.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/solution/script/Solve2.s.sol -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/solution/solve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/solution/solve.sh -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/solution/src/MemeManager.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/solution/src/MemeManager.sol -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/solution/src/MemeToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/solution/src/MemeToken.sol -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/solution/src/VC.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/solution/src/VC.sol -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/solution/src/interfaces/IUniswapV2Factory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/solution/src/interfaces/IUniswapV2Factory.sol -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/solution/src/interfaces/IUniswapV2Pair.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/solution/src/interfaces/IUniswapV2Pair.sol -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/solution/src/interfaces/IUniswapV2Router02.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/solution/src/interfaces/IUniswapV2Router02.sol -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/solution/src/interfaces/IWETH.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/solution/src/interfaces/IWETH.sol -------------------------------------------------------------------------------- /blockchains/sekai-meme-launcher/solution/test/Test.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/sekai-meme-launcher/solution/test/Test.t.sol -------------------------------------------------------------------------------- /blockchains/stray-cat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/stray-cat/README.md -------------------------------------------------------------------------------- /blockchains/stray-cat/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/stray-cat/challenge/Dockerfile -------------------------------------------------------------------------------- /blockchains/stray-cat/challenge/challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/stray-cat/challenge/challenge.py -------------------------------------------------------------------------------- /blockchains/stray-cat/challenge/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/stray-cat/challenge/deployment.yaml -------------------------------------------------------------------------------- /blockchains/stray-cat/challenge/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/stray-cat/challenge/entrypoint.sh -------------------------------------------------------------------------------- /blockchains/stray-cat/challenge/project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/stray-cat/challenge/project/.gitignore -------------------------------------------------------------------------------- /blockchains/stray-cat/challenge/project/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/stray-cat/challenge/project/foundry.toml -------------------------------------------------------------------------------- /blockchains/stray-cat/challenge/project/remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/stray-cat/challenge/project/remappings.txt -------------------------------------------------------------------------------- /blockchains/stray-cat/challenge/project/script/Deploy.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/stray-cat/challenge/project/script/Deploy.s.sol -------------------------------------------------------------------------------- /blockchains/stray-cat/challenge/project/src/Cat.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/stray-cat/challenge/project/src/Cat.sol -------------------------------------------------------------------------------- /blockchains/stray-cat/dist/Cat.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/stray-cat/dist/Cat.sol -------------------------------------------------------------------------------- /blockchains/stray-cat/dist/challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/stray-cat/dist/challenge.py -------------------------------------------------------------------------------- /blockchains/stray-cat/solution/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/stray-cat/solution/.gitignore -------------------------------------------------------------------------------- /blockchains/stray-cat/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/stray-cat/solution/README.md -------------------------------------------------------------------------------- /blockchains/stray-cat/solution/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/stray-cat/solution/foundry.toml -------------------------------------------------------------------------------- /blockchains/stray-cat/solution/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/stray-cat/solution/gen.py -------------------------------------------------------------------------------- /blockchains/stray-cat/solution/script/Solve.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/stray-cat/solution/script/Solve.s.sol -------------------------------------------------------------------------------- /blockchains/stray-cat/solution/solve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/stray-cat/solution/solve.sh -------------------------------------------------------------------------------- /blockchains/stray-cat/solution/src/Solve.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/stray-cat/solution/src/Solve.sol -------------------------------------------------------------------------------- /blockchains/ticket-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/README.md -------------------------------------------------------------------------------- /blockchains/ticket-master/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/challenge/Dockerfile -------------------------------------------------------------------------------- /blockchains/ticket-master/challenge/checker/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/challenge/checker/server.ts -------------------------------------------------------------------------------- /blockchains/ticket-master/challenge/contracts/account.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/challenge/contracts/account.fc -------------------------------------------------------------------------------- /blockchains/ticket-master/challenge/contracts/arcade_machine.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/challenge/contracts/arcade_machine.fc -------------------------------------------------------------------------------- /blockchains/ticket-master/challenge/contracts/base_contract.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/challenge/contracts/base_contract.fc -------------------------------------------------------------------------------- /blockchains/ticket-master/challenge/contracts/bytecode/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blockchains/ticket-master/challenge/contracts/coin_minter.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/challenge/contracts/coin_minter.fc -------------------------------------------------------------------------------- /blockchains/ticket-master/challenge/contracts/common/constants.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/challenge/contracts/common/constants.fc -------------------------------------------------------------------------------- /blockchains/ticket-master/challenge/contracts/common/errors.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/challenge/contracts/common/errors.fc -------------------------------------------------------------------------------- /blockchains/ticket-master/challenge/contracts/common/opcode.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/challenge/contracts/common/opcode.fc -------------------------------------------------------------------------------- /blockchains/ticket-master/challenge/contracts/common/utils.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/challenge/contracts/common/utils.fc -------------------------------------------------------------------------------- /blockchains/ticket-master/challenge/contracts/imports/stdlib.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/challenge/contracts/imports/stdlib.fc -------------------------------------------------------------------------------- /blockchains/ticket-master/challenge/contracts/service_counter.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/challenge/contracts/service_counter.fc -------------------------------------------------------------------------------- /blockchains/ticket-master/challenge/contracts/ticket_minter.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/challenge/contracts/ticket_minter.fc -------------------------------------------------------------------------------- /blockchains/ticket-master/challenge/contracts/wallet.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/challenge/contracts/wallet.fc -------------------------------------------------------------------------------- /blockchains/ticket-master/challenge/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | while :; do 4 | yarn run server 5 | clear 6 | done 7 | -------------------------------------------------------------------------------- /blockchains/ticket-master/challenge/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/challenge/jest.config.ts -------------------------------------------------------------------------------- /blockchains/ticket-master/challenge/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/challenge/package.json -------------------------------------------------------------------------------- /blockchains/ticket-master/challenge/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/challenge/tsconfig.json -------------------------------------------------------------------------------- /blockchains/ticket-master/challenge/wrappers/Account.compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/challenge/wrappers/Account.compile.ts -------------------------------------------------------------------------------- /blockchains/ticket-master/challenge/wrappers/ArcadeMachine.compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/challenge/wrappers/ArcadeMachine.compile.ts -------------------------------------------------------------------------------- /blockchains/ticket-master/challenge/wrappers/BaseContract.compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/challenge/wrappers/BaseContract.compile.ts -------------------------------------------------------------------------------- /blockchains/ticket-master/challenge/wrappers/BaseContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/challenge/wrappers/BaseContract.ts -------------------------------------------------------------------------------- /blockchains/ticket-master/challenge/wrappers/CoinMinter.compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/challenge/wrappers/CoinMinter.compile.ts -------------------------------------------------------------------------------- /blockchains/ticket-master/challenge/wrappers/Exploit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/challenge/wrappers/Exploit.ts -------------------------------------------------------------------------------- /blockchains/ticket-master/challenge/wrappers/Minter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/challenge/wrappers/Minter.ts -------------------------------------------------------------------------------- /blockchains/ticket-master/challenge/wrappers/ServiceCounter.compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/challenge/wrappers/ServiceCounter.compile.ts -------------------------------------------------------------------------------- /blockchains/ticket-master/challenge/wrappers/ServiceCounter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/challenge/wrappers/ServiceCounter.ts -------------------------------------------------------------------------------- /blockchains/ticket-master/challenge/wrappers/TicketMinter.compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/challenge/wrappers/TicketMinter.compile.ts -------------------------------------------------------------------------------- /blockchains/ticket-master/challenge/wrappers/Wallet.compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/challenge/wrappers/Wallet.compile.ts -------------------------------------------------------------------------------- /blockchains/ticket-master/challenge/wrappers/constants/opcode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/challenge/wrappers/constants/opcode.ts -------------------------------------------------------------------------------- /blockchains/ticket-master/challenge/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/challenge/yarn.lock -------------------------------------------------------------------------------- /blockchains/ticket-master/dist/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | temp 3 | build 4 | dist 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /blockchains/ticket-master/dist/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/dist/.gitignore -------------------------------------------------------------------------------- /blockchains/ticket-master/dist/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/dist/Dockerfile -------------------------------------------------------------------------------- /blockchains/ticket-master/dist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/dist/README.md -------------------------------------------------------------------------------- /blockchains/ticket-master/dist/checker/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/dist/checker/server.ts -------------------------------------------------------------------------------- /blockchains/ticket-master/dist/checker/submit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/dist/checker/submit.ts -------------------------------------------------------------------------------- /blockchains/ticket-master/dist/compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/dist/compose.yml -------------------------------------------------------------------------------- /blockchains/ticket-master/dist/contracts/account.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/dist/contracts/account.fc -------------------------------------------------------------------------------- /blockchains/ticket-master/dist/contracts/arcade_machine.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/dist/contracts/arcade_machine.fc -------------------------------------------------------------------------------- /blockchains/ticket-master/dist/contracts/base_contract.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/dist/contracts/base_contract.fc -------------------------------------------------------------------------------- /blockchains/ticket-master/dist/contracts/bytecode/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blockchains/ticket-master/dist/contracts/coin_minter.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/dist/contracts/coin_minter.fc -------------------------------------------------------------------------------- /blockchains/ticket-master/dist/contracts/common/constants.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/dist/contracts/common/constants.fc -------------------------------------------------------------------------------- /blockchains/ticket-master/dist/contracts/common/errors.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/dist/contracts/common/errors.fc -------------------------------------------------------------------------------- /blockchains/ticket-master/dist/contracts/common/opcode.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/dist/contracts/common/opcode.fc -------------------------------------------------------------------------------- /blockchains/ticket-master/dist/contracts/common/utils.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/dist/contracts/common/utils.fc -------------------------------------------------------------------------------- /blockchains/ticket-master/dist/contracts/exploit.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/dist/contracts/exploit.fc -------------------------------------------------------------------------------- /blockchains/ticket-master/dist/contracts/imports/stdlib.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/dist/contracts/imports/stdlib.fc -------------------------------------------------------------------------------- /blockchains/ticket-master/dist/contracts/service_counter.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/dist/contracts/service_counter.fc -------------------------------------------------------------------------------- /blockchains/ticket-master/dist/contracts/ticket_minter.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/dist/contracts/ticket_minter.fc -------------------------------------------------------------------------------- /blockchains/ticket-master/dist/contracts/wallet.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/dist/contracts/wallet.fc -------------------------------------------------------------------------------- /blockchains/ticket-master/dist/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/dist/jest.config.ts -------------------------------------------------------------------------------- /blockchains/ticket-master/dist/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/dist/package.json -------------------------------------------------------------------------------- /blockchains/ticket-master/dist/tests/Challenge.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/dist/tests/Challenge.spec.ts -------------------------------------------------------------------------------- /blockchains/ticket-master/dist/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/dist/tsconfig.json -------------------------------------------------------------------------------- /blockchains/ticket-master/dist/wrappers/Account.compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/dist/wrappers/Account.compile.ts -------------------------------------------------------------------------------- /blockchains/ticket-master/dist/wrappers/ArcadeMachine.compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/dist/wrappers/ArcadeMachine.compile.ts -------------------------------------------------------------------------------- /blockchains/ticket-master/dist/wrappers/BaseContract.compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/dist/wrappers/BaseContract.compile.ts -------------------------------------------------------------------------------- /blockchains/ticket-master/dist/wrappers/BaseContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/dist/wrappers/BaseContract.ts -------------------------------------------------------------------------------- /blockchains/ticket-master/dist/wrappers/CoinMinter.compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/dist/wrappers/CoinMinter.compile.ts -------------------------------------------------------------------------------- /blockchains/ticket-master/dist/wrappers/Exploit.compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/dist/wrappers/Exploit.compile.ts -------------------------------------------------------------------------------- /blockchains/ticket-master/dist/wrappers/Exploit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/dist/wrappers/Exploit.ts -------------------------------------------------------------------------------- /blockchains/ticket-master/dist/wrappers/Minter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/dist/wrappers/Minter.ts -------------------------------------------------------------------------------- /blockchains/ticket-master/dist/wrappers/ServiceCounter.compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/dist/wrappers/ServiceCounter.compile.ts -------------------------------------------------------------------------------- /blockchains/ticket-master/dist/wrappers/ServiceCounter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/dist/wrappers/ServiceCounter.ts -------------------------------------------------------------------------------- /blockchains/ticket-master/dist/wrappers/TicketMinter.compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/dist/wrappers/TicketMinter.compile.ts -------------------------------------------------------------------------------- /blockchains/ticket-master/dist/wrappers/Wallet.compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/dist/wrappers/Wallet.compile.ts -------------------------------------------------------------------------------- /blockchains/ticket-master/dist/wrappers/constants/opcode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/dist/wrappers/constants/opcode.ts -------------------------------------------------------------------------------- /blockchains/ticket-master/dist/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/dist/yarn.lock -------------------------------------------------------------------------------- /blockchains/ticket-master/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/image.jpg -------------------------------------------------------------------------------- /blockchains/ticket-master/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/solution/README.md -------------------------------------------------------------------------------- /blockchains/ticket-master/solution/checker/submit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/solution/checker/submit.ts -------------------------------------------------------------------------------- /blockchains/ticket-master/solution/contracts/base_contract.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/solution/contracts/base_contract.fc -------------------------------------------------------------------------------- /blockchains/ticket-master/solution/contracts/bytecode/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blockchains/ticket-master/solution/contracts/common/constants.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/solution/contracts/common/constants.fc -------------------------------------------------------------------------------- /blockchains/ticket-master/solution/contracts/common/errors.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/solution/contracts/common/errors.fc -------------------------------------------------------------------------------- /blockchains/ticket-master/solution/contracts/common/opcode.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/solution/contracts/common/opcode.fc -------------------------------------------------------------------------------- /blockchains/ticket-master/solution/contracts/common/utils.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/solution/contracts/common/utils.fc -------------------------------------------------------------------------------- /blockchains/ticket-master/solution/contracts/exploit.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/solution/contracts/exploit.fc -------------------------------------------------------------------------------- /blockchains/ticket-master/solution/contracts/imports/stdlib.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/solution/contracts/imports/stdlib.fc -------------------------------------------------------------------------------- /blockchains/ticket-master/solution/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/solution/jest.config.ts -------------------------------------------------------------------------------- /blockchains/ticket-master/solution/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/solution/package.json -------------------------------------------------------------------------------- /blockchains/ticket-master/solution/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/solution/tsconfig.json -------------------------------------------------------------------------------- /blockchains/ticket-master/solution/wrappers/BaseContract.compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/solution/wrappers/BaseContract.compile.ts -------------------------------------------------------------------------------- /blockchains/ticket-master/solution/wrappers/Exploit.compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/solution/wrappers/Exploit.compile.ts -------------------------------------------------------------------------------- /blockchains/ticket-master/solution/wrappers/constants/opcode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/solution/wrappers/constants/opcode.ts -------------------------------------------------------------------------------- /blockchains/ticket-master/solution/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/blockchains/ticket-master/solution/yarn.lock -------------------------------------------------------------------------------- /crypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/README.md -------------------------------------------------------------------------------- /crypto/alter-ego/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/alter-ego/README.md -------------------------------------------------------------------------------- /crypto/alter-ego/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/alter-ego/challenge/Dockerfile -------------------------------------------------------------------------------- /crypto/alter-ego/challenge/app/chall.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/alter-ego/challenge/app/chall.sage -------------------------------------------------------------------------------- /crypto/alter-ego/challenge/app/montgomery_isogenies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crypto/alter-ego/challenge/app/montgomery_isogenies/isogenies_x_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/alter-ego/challenge/app/montgomery_isogenies/isogenies_x_only.py -------------------------------------------------------------------------------- /crypto/alter-ego/challenge/app/montgomery_isogenies/kummer_isogeny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/alter-ego/challenge/app/montgomery_isogenies/kummer_isogeny.py -------------------------------------------------------------------------------- /crypto/alter-ego/challenge/app/montgomery_isogenies/kummer_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/alter-ego/challenge/app/montgomery_isogenies/kummer_line.py -------------------------------------------------------------------------------- /crypto/alter-ego/challenge/app/utilities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crypto/alter-ego/challenge/app/utilities/fast_roots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/alter-ego/challenge/app/utilities/fast_roots.py -------------------------------------------------------------------------------- /crypto/alter-ego/challenge/xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/alter-ego/challenge/xinetd -------------------------------------------------------------------------------- /crypto/alter-ego/dist/chall.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/alter-ego/dist/chall.sage -------------------------------------------------------------------------------- /crypto/alter-ego/dist/montgomery_isogenies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crypto/alter-ego/dist/montgomery_isogenies/isogenies_x_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/alter-ego/dist/montgomery_isogenies/isogenies_x_only.py -------------------------------------------------------------------------------- /crypto/alter-ego/dist/montgomery_isogenies/kummer_isogeny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/alter-ego/dist/montgomery_isogenies/kummer_isogeny.py -------------------------------------------------------------------------------- /crypto/alter-ego/dist/montgomery_isogenies/kummer_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/alter-ego/dist/montgomery_isogenies/kummer_line.py -------------------------------------------------------------------------------- /crypto/alter-ego/dist/utilities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crypto/alter-ego/dist/utilities/fast_roots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/alter-ego/dist/utilities/fast_roots.py -------------------------------------------------------------------------------- /crypto/alter-ego/solution/montgomery_isogenies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crypto/alter-ego/solution/montgomery_isogenies/isogenies_x_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/alter-ego/solution/montgomery_isogenies/isogenies_x_only.py -------------------------------------------------------------------------------- /crypto/alter-ego/solution/montgomery_isogenies/kummer_isogeny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/alter-ego/solution/montgomery_isogenies/kummer_isogeny.py -------------------------------------------------------------------------------- /crypto/alter-ego/solution/montgomery_isogenies/kummer_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/alter-ego/solution/montgomery_isogenies/kummer_line.py -------------------------------------------------------------------------------- /crypto/alter-ego/solution/solver.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/alter-ego/solution/solver.sage -------------------------------------------------------------------------------- /crypto/alter-ego/solution/utilities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crypto/alter-ego/solution/utilities/fast_roots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/alter-ego/solution/utilities/fast_roots.py -------------------------------------------------------------------------------- /crypto/apes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/apes/README.md -------------------------------------------------------------------------------- /crypto/apes/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/apes/challenge/Dockerfile -------------------------------------------------------------------------------- /crypto/apes/challenge/app/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/apes/challenge/app/chall.py -------------------------------------------------------------------------------- /crypto/apes/challenge/xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/apes/challenge/xinetd -------------------------------------------------------------------------------- /crypto/apes/dist/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/apes/dist/chall.py -------------------------------------------------------------------------------- /crypto/apes/solution/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/apes/solution/solve.sage -------------------------------------------------------------------------------- /crypto/i-dream-of-genni/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/i-dream-of-genni/README.md -------------------------------------------------------------------------------- /crypto/i-dream-of-genni/dist/idog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/i-dream-of-genni/dist/idog.py -------------------------------------------------------------------------------- /crypto/i-dream-of-genni/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/i-dream-of-genni/image.jpg -------------------------------------------------------------------------------- /crypto/i-dream-of-genni/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/i-dream-of-genni/solution/solve.py -------------------------------------------------------------------------------- /crypto/i-dream-of-genni/solution/solve_transcript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/i-dream-of-genni/solution/solve_transcript.txt -------------------------------------------------------------------------------- /crypto/law-and-order/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/law-and-order/README.md -------------------------------------------------------------------------------- /crypto/law-and-order/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/law-and-order/challenge/Dockerfile -------------------------------------------------------------------------------- /crypto/law-and-order/challenge/app/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/law-and-order/challenge/app/chall.py -------------------------------------------------------------------------------- /crypto/law-and-order/challenge/xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/law-and-order/challenge/xinetd -------------------------------------------------------------------------------- /crypto/law-and-order/dist/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/law-and-order/dist/chall.py -------------------------------------------------------------------------------- /crypto/law-and-order/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/law-and-order/solution/solve.py -------------------------------------------------------------------------------- /crypto/ssss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/ssss/README.md -------------------------------------------------------------------------------- /crypto/ssss/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/ssss/challenge/Dockerfile -------------------------------------------------------------------------------- /crypto/ssss/challenge/app/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/ssss/challenge/app/chall.py -------------------------------------------------------------------------------- /crypto/ssss/challenge/xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/ssss/challenge/xinetd -------------------------------------------------------------------------------- /crypto/ssss/dist/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/ssss/dist/chall.py -------------------------------------------------------------------------------- /crypto/ssss/solution/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/ssss/solution/solve.sage -------------------------------------------------------------------------------- /crypto/unfairy-ring-plusplus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/unfairy-ring-plusplus/README.md -------------------------------------------------------------------------------- /crypto/unfairy-ring-plusplus/dist/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/unfairy-ring-plusplus/dist/chall.py -------------------------------------------------------------------------------- /crypto/unfairy-ring-plusplus/dist/uov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/unfairy-ring-plusplus/dist/uov.py -------------------------------------------------------------------------------- /crypto/unfairy-ring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/unfairy-ring/README.md -------------------------------------------------------------------------------- /crypto/unfairy-ring/dist/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/unfairy-ring/dist/chall.py -------------------------------------------------------------------------------- /crypto/unfairy-ring/dist/uov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/crypto/unfairy-ring/dist/uov.py -------------------------------------------------------------------------------- /misc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/README.md -------------------------------------------------------------------------------- /misc/discrepancy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/discrepancy/README.md -------------------------------------------------------------------------------- /misc/discrepancy/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/discrepancy/challenge/Dockerfile -------------------------------------------------------------------------------- /misc/discrepancy/challenge/ctf.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/discrepancy/challenge/ctf.xinetd -------------------------------------------------------------------------------- /misc/discrepancy/challenge/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/discrepancy/challenge/docker-compose.yml -------------------------------------------------------------------------------- /misc/discrepancy/challenge/src/discrepancy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/discrepancy/challenge/src/discrepancy.py -------------------------------------------------------------------------------- /misc/discrepancy/challenge/src/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/discrepancy/challenge/src/flag.txt -------------------------------------------------------------------------------- /misc/discrepancy/challenge/src/start.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cd /ctf && python3 discrepancy.py -------------------------------------------------------------------------------- /misc/discrepancy/dist/discrepancy.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/discrepancy/dist/discrepancy.zip -------------------------------------------------------------------------------- /misc/discrepancy/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/discrepancy/solution/README.md -------------------------------------------------------------------------------- /misc/discrepancy/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/discrepancy/solution/solve.py -------------------------------------------------------------------------------- /misc/literal-eval/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/literal-eval/README.md -------------------------------------------------------------------------------- /misc/literal-eval/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/literal-eval/challenge/Dockerfile -------------------------------------------------------------------------------- /misc/literal-eval/challenge/app/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/literal-eval/challenge/app/chall.py -------------------------------------------------------------------------------- /misc/literal-eval/challenge/xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/literal-eval/challenge/xinetd -------------------------------------------------------------------------------- /misc/literal-eval/dist/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/literal-eval/dist/chall.py -------------------------------------------------------------------------------- /misc/literal-eval/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/literal-eval/solution/solve.py -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/README.md -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/api/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/challenge/api/.dockerignore -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/challenge/api/.gitignore -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/challenge/api/Dockerfile -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/api/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/challenge/api/deployment.yaml -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/api/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/challenge/api/docker-compose.yml -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/api/docker/mongo-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/challenge/api/docker/mongo-init.js -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/challenge/api/package.json -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/api/src/middleware/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/challenge/api/src/middleware/auth.js -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/api/src/middleware/errorHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/challenge/api/src/middleware/errorHandler.js -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/api/src/middleware/pinVerification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/challenge/api/src/middleware/pinVerification.js -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/api/src/middleware/requirePinSession.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/challenge/api/src/middleware/requirePinSession.js -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/api/src/middleware/signatureVerification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/challenge/api/src/middleware/signatureVerification.js -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/api/src/models/AuditLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/challenge/api/src/models/AuditLog.js -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/api/src/models/Transaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/challenge/api/src/models/Transaction.js -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/api/src/models/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/challenge/api/src/models/User.js -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/api/src/routes/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/challenge/api/src/routes/auth.js -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/api/src/routes/health.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/challenge/api/src/routes/health.js -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/api/src/routes/transactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/challenge/api/src/routes/transactions.js -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/api/src/routes/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/challenge/api/src/routes/user.js -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/api/src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/challenge/api/src/server.js -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/api/src/utils/jwt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/challenge/api/src/utils/jwt.js -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/api/src/utils/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/challenge/api/src/utils/logger.js -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/api/src/utils/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/challenge/api/src/utils/validation.js -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/poc-tester/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/challenge/poc-tester/.env -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/poc-tester/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/challenge/poc-tester/deployment.yaml -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/poc-tester/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/challenge/poc-tester/docker-compose.yml -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/poc-tester/env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/challenge/poc-tester/env.example -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/poc-tester/poc-device/.dockerignore: -------------------------------------------------------------------------------- 1 | Dockerfile -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/poc-tester/poc-device/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/challenge/poc-tester/poc-device/Dockerfile -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/poc-tester/poc-device/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/challenge/poc-tester/poc-device/start.sh -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/poc-tester/poc-web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/challenge/poc-tester/poc-web/Dockerfile -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/poc-tester/poc-web/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/challenge/poc-tester/poc-web/requirements.txt -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/poc-tester/poc-web/src/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/challenge/poc-tester/poc-web/src/app.py -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/poc-tester/poc-web/src/challenges/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/poc-tester/poc-web/src/challenges/SekaiBank/challenge.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/challenge/poc-tester/poc-web/src/challenges/SekaiBank/challenge.apk -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/poc-tester/poc-web/src/challenges/SekaiBank/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/challenge/poc-tester/poc-web/src/challenges/SekaiBank/client.py -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/poc-tester/poc-web/src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/challenge/poc-tester/poc-web/src/config.py -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/poc-tester/poc-web/src/pow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/challenge/poc-tester/poc-web/src/pow.py -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/poc-tester/poc-web/src/screenshots/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/poc-tester/poc-web/src/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/challenge/poc-tester/poc-web/src/templates/index.html -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/poc-tester/poc-web/src/type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/challenge/poc-tester/poc-web/src/type.py -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/challenge/poc-tester/poc-web/src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/challenge/poc-tester/poc-web/src/utils.py -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/dist/SekaiBank.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/dist/SekaiBank.apk -------------------------------------------------------------------------------- /misc/sekai-bank-transaction/solution/POC.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/misc/sekai-bank-transaction/solution/POC.apk -------------------------------------------------------------------------------- /ppc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/ppc/README.md -------------------------------------------------------------------------------- /ppc/nokotans-antler-tines/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/ppc/nokotans-antler-tines/README.md -------------------------------------------------------------------------------- /ppc/nokotans-antler-tines/dist/Nokotan's Antler Tines.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/ppc/nokotans-antler-tines/dist/Nokotan's Antler Tines.pdf -------------------------------------------------------------------------------- /ppc/nokotans-antler-tines/solution/main_sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/ppc/nokotans-antler-tines/solution/main_sol.cpp -------------------------------------------------------------------------------- /ppc/nokotans-arcade/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/ppc/nokotans-arcade/README.md -------------------------------------------------------------------------------- /ppc/nokotans-arcade/dist/Nokotan's Arcade.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/ppc/nokotans-arcade/dist/Nokotan's Arcade.pdf -------------------------------------------------------------------------------- /ppc/nokotans-arcade/solution/main_sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/ppc/nokotans-arcade/solution/main_sol.cpp -------------------------------------------------------------------------------- /ppc/nokotans-guidance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/ppc/nokotans-guidance/README.md -------------------------------------------------------------------------------- /ppc/nokotans-guidance/dist/Nokotan's Guidance.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/ppc/nokotans-guidance/dist/Nokotan's Guidance.pdf -------------------------------------------------------------------------------- /ppc/nokotans-guidance/solution/main_sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/ppc/nokotans-guidance/solution/main_sol.cpp -------------------------------------------------------------------------------- /pwn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/README.md -------------------------------------------------------------------------------- /pwn/learning-oop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/learning-oop/README.md -------------------------------------------------------------------------------- /pwn/learning-oop/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/learning-oop/challenge/Dockerfile -------------------------------------------------------------------------------- /pwn/learning-oop/challenge/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/learning-oop/challenge/docker-compose.yml -------------------------------------------------------------------------------- /pwn/learning-oop/challenge/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/learning-oop/challenge/flag.txt -------------------------------------------------------------------------------- /pwn/learning-oop/challenge/learning_oop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/learning-oop/challenge/learning_oop -------------------------------------------------------------------------------- /pwn/learning-oop/challenge/src/learning_oop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/learning-oop/challenge/src/learning_oop.cpp -------------------------------------------------------------------------------- /pwn/learning-oop/dist/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/learning-oop/dist/Dockerfile -------------------------------------------------------------------------------- /pwn/learning-oop/dist/ld-linux-x86-64.so.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/learning-oop/dist/ld-linux-x86-64.so.2 -------------------------------------------------------------------------------- /pwn/learning-oop/dist/learning_oop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/learning-oop/dist/learning_oop -------------------------------------------------------------------------------- /pwn/learning-oop/dist/learning_oop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/learning-oop/dist/learning_oop.cpp -------------------------------------------------------------------------------- /pwn/learning-oop/dist/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/learning-oop/dist/libc.so.6 -------------------------------------------------------------------------------- /pwn/learning-oop/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/learning-oop/solution/README.md -------------------------------------------------------------------------------- /pwn/learning-oop/solution/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/learning-oop/solution/exploit.py -------------------------------------------------------------------------------- /pwn/outdated/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/outdated/README.md -------------------------------------------------------------------------------- /pwn/outdated/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/outdated/challenge/Dockerfile -------------------------------------------------------------------------------- /pwn/outdated/challenge/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/outdated/challenge/docker-compose.yml -------------------------------------------------------------------------------- /pwn/outdated/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | SEKAI{I've_dubb3d_th1s_t3chn1que_"GP_Overwrite"} 2 | -------------------------------------------------------------------------------- /pwn/outdated/challenge/outdated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/outdated/challenge/outdated -------------------------------------------------------------------------------- /pwn/outdated/challenge/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/outdated/challenge/src/Makefile -------------------------------------------------------------------------------- /pwn/outdated/challenge/src/outdated.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/outdated/challenge/src/outdated.c -------------------------------------------------------------------------------- /pwn/outdated/dist/pwn_outdated.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/outdated/dist/pwn_outdated.zip -------------------------------------------------------------------------------- /pwn/outdated/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/outdated/solution/README.md -------------------------------------------------------------------------------- /pwn/outdated/solution/libc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/outdated/solution/libc.so -------------------------------------------------------------------------------- /pwn/outdated/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/outdated/solution/solve.py -------------------------------------------------------------------------------- /pwn/speedpwn-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/speedpwn-2/README.md -------------------------------------------------------------------------------- /pwn/speedpwn-2/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/speedpwn-2/challenge/Dockerfile -------------------------------------------------------------------------------- /pwn/speedpwn-2/challenge/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/speedpwn-2/challenge/chall -------------------------------------------------------------------------------- /pwn/speedpwn-2/challenge/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/speedpwn-2/challenge/docker-compose.yml -------------------------------------------------------------------------------- /pwn/speedpwn-2/challenge/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/speedpwn-2/challenge/flag.txt -------------------------------------------------------------------------------- /pwn/speedpwn-2/challenge/src/chall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/speedpwn-2/challenge/src/chall.c -------------------------------------------------------------------------------- /pwn/speedpwn-2/dist/pwn_speedpwn-2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/speedpwn-2/dist/pwn_speedpwn-2.zip -------------------------------------------------------------------------------- /pwn/speedpwn-2/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/speedpwn-2/solution/README.md -------------------------------------------------------------------------------- /pwn/speedpwn-2/solution/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/speedpwn-2/solution/chall -------------------------------------------------------------------------------- /pwn/speedpwn-2/solution/chall_patched: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/speedpwn-2/solution/chall_patched -------------------------------------------------------------------------------- /pwn/speedpwn-2/solution/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/speedpwn-2/solution/exploit.py -------------------------------------------------------------------------------- /pwn/speedpwn-2/solution/ld-linux-x86-64.so.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/speedpwn-2/solution/ld-linux-x86-64.so.2 -------------------------------------------------------------------------------- /pwn/speedpwn-2/solution/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/speedpwn-2/solution/libc.so.6 -------------------------------------------------------------------------------- /pwn/umiyuri-kaikeitan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/umiyuri-kaikeitan/README.md -------------------------------------------------------------------------------- /pwn/umiyuri-kaikeitan/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/umiyuri-kaikeitan/challenge/Dockerfile -------------------------------------------------------------------------------- /pwn/umiyuri-kaikeitan/challenge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/umiyuri-kaikeitan/challenge/README.md -------------------------------------------------------------------------------- /pwn/umiyuri-kaikeitan/challenge/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/umiyuri-kaikeitan/challenge/app/app.py -------------------------------------------------------------------------------- /pwn/umiyuri-kaikeitan/challenge/app/lib/cape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/umiyuri-kaikeitan/challenge/app/lib/cape.py -------------------------------------------------------------------------------- /pwn/umiyuri-kaikeitan/challenge/app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/umiyuri-kaikeitan/challenge/app/templates/index.html -------------------------------------------------------------------------------- /pwn/umiyuri-kaikeitan/challenge/chall.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/umiyuri-kaikeitan/challenge/chall.zip -------------------------------------------------------------------------------- /pwn/umiyuri-kaikeitan/challenge/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/umiyuri-kaikeitan/challenge/requirements.txt -------------------------------------------------------------------------------- /pwn/umiyuri-kaikeitan/challenge/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/umiyuri-kaikeitan/challenge/src/README.md -------------------------------------------------------------------------------- /pwn/umiyuri-kaikeitan/challenge/src/game.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/umiyuri-kaikeitan/challenge/src/game.sln -------------------------------------------------------------------------------- /pwn/umiyuri-kaikeitan/challenge/src/game.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/umiyuri-kaikeitan/challenge/src/game.vcxproj -------------------------------------------------------------------------------- /pwn/umiyuri-kaikeitan/challenge/src/game.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/umiyuri-kaikeitan/challenge/src/game.vcxproj.filters -------------------------------------------------------------------------------- /pwn/umiyuri-kaikeitan/challenge/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/umiyuri-kaikeitan/challenge/src/main.cpp -------------------------------------------------------------------------------- /pwn/umiyuri-kaikeitan/challenge/src/nt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/umiyuri-kaikeitan/challenge/src/nt.h -------------------------------------------------------------------------------- /pwn/umiyuri-kaikeitan/dist/dist.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/umiyuri-kaikeitan/dist/dist.zip -------------------------------------------------------------------------------- /pwn/umiyuri-kaikeitan/solution/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/umiyuri-kaikeitan/solution/data.txt -------------------------------------------------------------------------------- /pwn/umiyuri-kaikeitan/solution/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/umiyuri-kaikeitan/solution/gen.py -------------------------------------------------------------------------------- /pwn/vkfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/vkfs/README.md -------------------------------------------------------------------------------- /pwn/vkfs/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/vkfs/challenge/Dockerfile -------------------------------------------------------------------------------- /pwn/vkfs/challenge/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/vkfs/challenge/docker-compose.yml -------------------------------------------------------------------------------- /pwn/vkfs/challenge/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/vkfs/challenge/entrypoint.sh -------------------------------------------------------------------------------- /pwn/vkfs/challenge/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/vkfs/challenge/flag.txt -------------------------------------------------------------------------------- /pwn/vkfs/challenge/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/vkfs/challenge/src/Makefile -------------------------------------------------------------------------------- /pwn/vkfs/challenge/src/src/vkfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/vkfs/challenge/src/src/vkfs.c -------------------------------------------------------------------------------- /pwn/vkfs/challenge/src/src/vkfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/vkfs/challenge/src/src/vkfs.h -------------------------------------------------------------------------------- /pwn/vkfs/challenge/src/src/vkfs.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/vkfs/challenge/src/src/vkfs.o -------------------------------------------------------------------------------- /pwn/vkfs/challenge/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/vkfs/challenge/start.sh -------------------------------------------------------------------------------- /pwn/vkfs/challenge/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/vkfs/challenge/supervisord.conf -------------------------------------------------------------------------------- /pwn/vkfs/challenge/vkfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/vkfs/challenge/vkfs -------------------------------------------------------------------------------- /pwn/vkfs/dist/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/vkfs/dist/Makefile -------------------------------------------------------------------------------- /pwn/vkfs/dist/flag.txt: -------------------------------------------------------------------------------- 1 | SEKAI{test_flag} 2 | -------------------------------------------------------------------------------- /pwn/vkfs/dist/src/vkfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/vkfs/dist/src/vkfs.c -------------------------------------------------------------------------------- /pwn/vkfs/dist/src/vkfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/vkfs/dist/src/vkfs.h -------------------------------------------------------------------------------- /pwn/vkfs/dist/src/vkfs.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/vkfs/dist/src/vkfs.o -------------------------------------------------------------------------------- /pwn/vkfs/dist/vkfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/vkfs/dist/vkfs -------------------------------------------------------------------------------- /pwn/vkfs/solution/exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/vkfs/solution/exp -------------------------------------------------------------------------------- /pwn/vkfs/solution/exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/vkfs/solution/exp.c -------------------------------------------------------------------------------- /pwn/vkfs/solution/generate_payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/vkfs/solution/generate_payload.py -------------------------------------------------------------------------------- /pwn/wic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/pwn/wic/README.md -------------------------------------------------------------------------------- /reverse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/README.md -------------------------------------------------------------------------------- /reverse/alchemy-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/README.md -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/server/MSVC/14.44.35207/bin/Hostx64/x64/1033/clui.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/server/MSVC/14.44.35207/bin/Hostx64/x64/1033/clui.dll -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/server/MSVC/14.44.35207/bin/Hostx64/x64/c1xx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/server/MSVC/14.44.35207/bin/Hostx64/x64/c1xx.dll -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/server/MSVC/14.44.35207/bin/Hostx64/x64/c2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/server/MSVC/14.44.35207/bin/Hostx64/x64/c2.dll -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/server/MSVC/14.44.35207/bin/Hostx64/x64/cl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/server/MSVC/14.44.35207/bin/Hostx64/x64/cl.exe -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/server/MSVC/14.44.35207/bin/Hostx64/x64/mspdbcore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/server/MSVC/14.44.35207/bin/Hostx64/x64/mspdbcore.dll -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/server/MSVC/14.44.35207/bin/Hostx64/x64/tbbmalloc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/server/MSVC/14.44.35207/bin/Hostx64/x64/tbbmalloc.dll -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/server/README.md -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/server/launch.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/server/launch.bat -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/server/launch.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/server/launch.exe -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/server/plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/server/plugin.dll -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/server/server.py -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/server/socat/cygcrypto-1.0.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/server/socat/cygcrypto-1.0.0.dll -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/server/socat/cyggcc_s-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/server/socat/cyggcc_s-1.dll -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/server/socat/cygncursesw-10.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/server/socat/cygncursesw-10.dll -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/server/socat/cygreadline7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/server/socat/cygreadline7.dll -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/server/socat/cygssl-1.0.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/server/socat/cygssl-1.0.0.dll -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/server/socat/cygwin1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/server/socat/cygwin1.dll -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/server/socat/cygwrap-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/server/socat/cygwrap-0.dll -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/server/socat/cygz.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/server/socat/cygz.dll -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/server/socat/socat.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/server/socat/socat.exe -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/src/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/src/.clang-format -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/src/.gitignore: -------------------------------------------------------------------------------- 1 | **/x64/ 2 | .vs/ 3 | *.obj 4 | -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/src/cxx-shared/cxx-shared.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/src/cxx-shared/cxx-shared.vcxitems -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/src/cxx-shared/cxx-shared.vcxitems.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/src/cxx-shared/cxx-shared.vcxitems.user -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/src/cxx-shared/shared/game/game.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/src/cxx-shared/shared/game/game.hpp -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/src/cxx-shared/shared/msvc/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/src/cxx-shared/shared/msvc/context.hpp -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/src/cxx-shared/shared/msvc/structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/src/cxx-shared/shared/msvc/structs.hpp -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/src/launch/launch.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/src/launch/launch.vcxproj -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/src/launch/launch.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/src/launch/launch.vcxproj.filters -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/src/launch/launch.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/src/launch/launch.vcxproj.user -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/src/launch/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/src/launch/main.cpp -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/src/msvc-alchemy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/src/msvc-alchemy.sln -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/src/plugin/callbacks/callbacks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/src/plugin/callbacks/callbacks.hpp -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/src/plugin/callbacks/on_module_load.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/src/plugin/callbacks/on_module_load.cpp -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/src/plugin/callbacks/visit_func.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/src/plugin/callbacks/visit_func.cpp -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/src/plugin/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/src/plugin/dllmain.cpp -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/src/plugin/hooks/hooks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/src/plugin/hooks/hooks.hpp -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/src/plugin/minhook/MinHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/src/plugin/minhook/MinHook.h -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/src/plugin/minhook/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/src/plugin/minhook/buffer.c -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/src/plugin/minhook/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/src/plugin/minhook/buffer.h -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/src/plugin/minhook/hde/hde32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/src/plugin/minhook/hde/hde32.c -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/src/plugin/minhook/hde/hde32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/src/plugin/minhook/hde/hde32.h -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/src/plugin/minhook/hde/hde64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/src/plugin/minhook/hde/hde64.c -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/src/plugin/minhook/hde/hde64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/src/plugin/minhook/hde/hde64.h -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/src/plugin/minhook/hde/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/src/plugin/minhook/hde/pstdint.h -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/src/plugin/minhook/hde/table32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/src/plugin/minhook/hde/table32.h -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/src/plugin/minhook/hde/table64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/src/plugin/minhook/hde/table64.h -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/src/plugin/minhook/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/src/plugin/minhook/hook.c -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/src/plugin/minhook/trampoline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/src/plugin/minhook/trampoline.c -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/src/plugin/minhook/trampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/src/plugin/minhook/trampoline.h -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/src/plugin/plugin.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/src/plugin/plugin.vcxproj -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/src/plugin/plugin.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/src/plugin/plugin.vcxproj.filters -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/src/plugin/plugin.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/src/plugin/plugin.vcxproj.user -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/src/plugin/util/hooks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/src/plugin/util/hooks.hpp -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/src/scripts/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/src/scripts/config.py -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/src/scripts/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/src/scripts/pyproject.toml -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/src/scripts/solution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/src/scripts/solution.cpp -------------------------------------------------------------------------------- /reverse/alchemy-master/challenge/src/scripts/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/challenge/src/scripts/solve.py -------------------------------------------------------------------------------- /reverse/alchemy-master/dist/MSVC/14.44.35207/bin/Hostx64/x64/1033/clui.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/dist/MSVC/14.44.35207/bin/Hostx64/x64/1033/clui.dll -------------------------------------------------------------------------------- /reverse/alchemy-master/dist/MSVC/14.44.35207/bin/Hostx64/x64/c1xx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/dist/MSVC/14.44.35207/bin/Hostx64/x64/c1xx.dll -------------------------------------------------------------------------------- /reverse/alchemy-master/dist/MSVC/14.44.35207/bin/Hostx64/x64/c2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/dist/MSVC/14.44.35207/bin/Hostx64/x64/c2.dll -------------------------------------------------------------------------------- /reverse/alchemy-master/dist/MSVC/14.44.35207/bin/Hostx64/x64/cl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/dist/MSVC/14.44.35207/bin/Hostx64/x64/cl.exe -------------------------------------------------------------------------------- /reverse/alchemy-master/dist/MSVC/14.44.35207/bin/Hostx64/x64/mspdbcore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/dist/MSVC/14.44.35207/bin/Hostx64/x64/mspdbcore.dll -------------------------------------------------------------------------------- /reverse/alchemy-master/dist/MSVC/14.44.35207/bin/Hostx64/x64/tbbmalloc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/dist/MSVC/14.44.35207/bin/Hostx64/x64/tbbmalloc.dll -------------------------------------------------------------------------------- /reverse/alchemy-master/dist/launch.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/dist/launch.exe -------------------------------------------------------------------------------- /reverse/alchemy-master/dist/plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/dist/plugin.dll -------------------------------------------------------------------------------- /reverse/alchemy-master/dist/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/dist/server.py -------------------------------------------------------------------------------- /reverse/alchemy-master/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/image.jpg -------------------------------------------------------------------------------- /reverse/alchemy-master/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/solution/README.md -------------------------------------------------------------------------------- /reverse/alchemy-master/solution/pics/2156.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/solution/pics/2156.png -------------------------------------------------------------------------------- /reverse/alchemy-master/solution/pics/2210.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/solution/pics/2210.png -------------------------------------------------------------------------------- /reverse/alchemy-master/solution/pics/2327.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/solution/pics/2327.png -------------------------------------------------------------------------------- /reverse/alchemy-master/solution/pics/2355.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/solution/pics/2355.png -------------------------------------------------------------------------------- /reverse/alchemy-master/solution/pics/2362.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/solution/pics/2362.png -------------------------------------------------------------------------------- /reverse/alchemy-master/solution/playground/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/solution/playground/config.py -------------------------------------------------------------------------------- /reverse/alchemy-master/solution/playground/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/solution/playground/solve.py -------------------------------------------------------------------------------- /reverse/alchemy-master/solution/send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/solution/send.py -------------------------------------------------------------------------------- /reverse/alchemy-master/solution/solution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/solution/solution.cpp -------------------------------------------------------------------------------- /reverse/alchemy-master/solution/solution_final.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/alchemy-master/solution/solution_final.cpp -------------------------------------------------------------------------------- /reverse/gondola/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/gondola/README.md -------------------------------------------------------------------------------- /reverse/gondola/challenge/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/gondola/challenge/build.sh -------------------------------------------------------------------------------- /reverse/gondola/challenge/chal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/gondola/challenge/chal.cpp -------------------------------------------------------------------------------- /reverse/gondola/challenge/chal.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/gondola/challenge/chal.lua -------------------------------------------------------------------------------- /reverse/gondola/dist/chal.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/gondola/dist/chal.lua -------------------------------------------------------------------------------- /reverse/gondola/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/gondola/image.png -------------------------------------------------------------------------------- /reverse/gondola/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/gondola/solution/solve.py -------------------------------------------------------------------------------- /reverse/miku-music-machine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/miku-music-machine/README.md -------------------------------------------------------------------------------- /reverse/miku-music-machine/challenge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/miku-music-machine/challenge/README.md -------------------------------------------------------------------------------- /reverse/miku-music-machine/challenge/gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/miku-music-machine/challenge/gen.c -------------------------------------------------------------------------------- /reverse/miku-music-machine/challenge/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/miku-music-machine/challenge/main.c -------------------------------------------------------------------------------- /reverse/miku-music-machine/challenge/mazegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/miku-music-machine/challenge/mazegen.py -------------------------------------------------------------------------------- /reverse/miku-music-machine/challenge/patcher/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/miku-music-machine/challenge/patcher/Cargo.toml -------------------------------------------------------------------------------- /reverse/miku-music-machine/challenge/patcher/src/consts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/miku-music-machine/challenge/patcher/src/consts.rs -------------------------------------------------------------------------------- /reverse/miku-music-machine/challenge/patcher/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/miku-music-machine/challenge/patcher/src/main.rs -------------------------------------------------------------------------------- /reverse/miku-music-machine/dist/miku-music-machine.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/miku-music-machine/dist/miku-music-machine.exe -------------------------------------------------------------------------------- /reverse/miku-music-machine/dist/mmm-v2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/miku-music-machine/dist/mmm-v2.exe -------------------------------------------------------------------------------- /reverse/miku-music-machine/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/miku-music-machine/solution/README.md -------------------------------------------------------------------------------- /reverse/miku-music-machine/solution/maze.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/miku-music-machine/solution/maze.txt -------------------------------------------------------------------------------- /reverse/sekai-craft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/sekai-craft/README.md -------------------------------------------------------------------------------- /reverse/sekai-craft/challenge/encrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/sekai-craft/challenge/encrypt.py -------------------------------------------------------------------------------- /reverse/sekai-craft/challenge/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/sekai-craft/challenge/generate.py -------------------------------------------------------------------------------- /reverse/sekai-craft/dist/mvm.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/sekai-craft/dist/mvm.zip -------------------------------------------------------------------------------- /reverse/sekai-craft/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/sekai-craft/solution/solve.py -------------------------------------------------------------------------------- /reverse/sekaibank-signature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/sekaibank-signature/README.md -------------------------------------------------------------------------------- /reverse/sekaibank-signature/dist/SekaiBank.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/sekaibank-signature/dist/SekaiBank.apk -------------------------------------------------------------------------------- /reverse/sekaibank-signature/solution/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/sekaibank-signature/solution/writeup.md -------------------------------------------------------------------------------- /reverse/what-in-ternation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/what-in-ternation/README.md -------------------------------------------------------------------------------- /reverse/what-in-ternation/challenge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/what-in-ternation/challenge/README.md -------------------------------------------------------------------------------- /reverse/what-in-ternation/challenge/flag_checker.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/what-in-ternation/challenge/flag_checker.sv -------------------------------------------------------------------------------- /reverse/what-in-ternation/challenge/flag_checker.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/what-in-ternation/challenge/flag_checker.ys -------------------------------------------------------------------------------- /reverse/what-in-ternation/challenge/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/what-in-ternation/challenge/main.cpp -------------------------------------------------------------------------------- /reverse/what-in-ternation/challenge/verilog_to_ternlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/what-in-ternation/challenge/verilog_to_ternlog.py -------------------------------------------------------------------------------- /reverse/what-in-ternation/dist/what-in-ternation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/what-in-ternation/dist/what-in-ternation -------------------------------------------------------------------------------- /reverse/what-in-ternation/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/what-in-ternation/solution/README.md -------------------------------------------------------------------------------- /reverse/what-in-ternation/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/reverse/what-in-ternation/solution/solve.py -------------------------------------------------------------------------------- /web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/README.md -------------------------------------------------------------------------------- /web/captivating-canvas-contraption/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/captivating-canvas-contraption/README.md -------------------------------------------------------------------------------- /web/captivating-canvas-contraption/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/captivating-canvas-contraption/challenge/Dockerfile -------------------------------------------------------------------------------- /web/captivating-canvas-contraption/challenge/adminbot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/captivating-canvas-contraption/challenge/adminbot.js -------------------------------------------------------------------------------- /web/captivating-canvas-contraption/challenge/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/captivating-canvas-contraption/challenge/default.conf -------------------------------------------------------------------------------- /web/captivating-canvas-contraption/challenge/miku.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/captivating-canvas-contraption/challenge/miku.png -------------------------------------------------------------------------------- /web/captivating-canvas-contraption/challenge/miku.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/captivating-canvas-contraption/challenge/miku.ts -------------------------------------------------------------------------------- /web/captivating-canvas-contraption/challenge/www/editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/captivating-canvas-contraption/challenge/www/editor.html -------------------------------------------------------------------------------- /web/captivating-canvas-contraption/challenge/www/examples/miku.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/captivating-canvas-contraption/challenge/www/examples/miku.wasm -------------------------------------------------------------------------------- /web/captivating-canvas-contraption/challenge/www/examples/rainbow.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/captivating-canvas-contraption/challenge/www/examples/rainbow.wasm -------------------------------------------------------------------------------- /web/captivating-canvas-contraption/challenge/www/examples/solid.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/captivating-canvas-contraption/challenge/www/examples/solid.wasm -------------------------------------------------------------------------------- /web/captivating-canvas-contraption/challenge/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/captivating-canvas-contraption/challenge/www/index.html -------------------------------------------------------------------------------- /web/captivating-canvas-contraption/dist/adminbot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/captivating-canvas-contraption/dist/adminbot.js -------------------------------------------------------------------------------- /web/captivating-canvas-contraption/dist/editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/captivating-canvas-contraption/dist/editor.html -------------------------------------------------------------------------------- /web/captivating-canvas-contraption/dist/examples/miku.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/captivating-canvas-contraption/dist/examples/miku.wasm -------------------------------------------------------------------------------- /web/captivating-canvas-contraption/dist/examples/rainbow.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/captivating-canvas-contraption/dist/examples/rainbow.wasm -------------------------------------------------------------------------------- /web/captivating-canvas-contraption/dist/examples/solid.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/captivating-canvas-contraption/dist/examples/solid.wasm -------------------------------------------------------------------------------- /web/captivating-canvas-contraption/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/captivating-canvas-contraption/dist/index.html -------------------------------------------------------------------------------- /web/captivating-canvas-contraption/solution/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/captivating-canvas-contraption/solution/build.sh -------------------------------------------------------------------------------- /web/captivating-canvas-contraption/solution/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/captivating-canvas-contraption/solution/index.ts -------------------------------------------------------------------------------- /web/captivating-canvas-contraption/solution/solve.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/captivating-canvas-contraption/solution/solve.wasm -------------------------------------------------------------------------------- /web/fancy-web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/fancy-web/README.md -------------------------------------------------------------------------------- /web/fancy-web/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/fancy-web/challenge/Dockerfile -------------------------------------------------------------------------------- /web/fancy-web/challenge/challenge-custom/fancy/fancy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/fancy-web/challenge/challenge-custom/fancy/fancy.php -------------------------------------------------------------------------------- /web/fancy-web/challenge/challenge-custom/flag.txt: -------------------------------------------------------------------------------- 1 | SEKAI{wordpress_new_gadget} -------------------------------------------------------------------------------- /web/fancy-web/challenge/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/fancy-web/challenge/docker-compose.yml -------------------------------------------------------------------------------- /web/fancy-web/challenge/docker/wordpress/toolbox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/fancy-web/challenge/docker/wordpress/toolbox/Makefile -------------------------------------------------------------------------------- /web/fancy-web/challenge/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/fancy-web/challenge/init.sh -------------------------------------------------------------------------------- /web/fancy-web/dist/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/fancy-web/dist/Dockerfile -------------------------------------------------------------------------------- /web/fancy-web/dist/challenge-custom/fancy/fancy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/fancy-web/dist/challenge-custom/fancy/fancy.php -------------------------------------------------------------------------------- /web/fancy-web/dist/challenge-custom/flag.txt: -------------------------------------------------------------------------------- 1 | fake{flag} -------------------------------------------------------------------------------- /web/fancy-web/dist/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/fancy-web/dist/docker-compose.yml -------------------------------------------------------------------------------- /web/fancy-web/dist/docker/wordpress/toolbox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/fancy-web/dist/docker/wordpress/toolbox/Makefile -------------------------------------------------------------------------------- /web/fancy-web/dist/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/fancy-web/dist/init.sh -------------------------------------------------------------------------------- /web/fancy-web/solution/filter_chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/fancy-web/solution/filter_chain.py -------------------------------------------------------------------------------- /web/fancy-web/solution/solve.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/fancy-web/solution/solve.php -------------------------------------------------------------------------------- /web/fancy-web/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/fancy-web/solution/solve.py -------------------------------------------------------------------------------- /web/hqli-me/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/hqli-me/README.md -------------------------------------------------------------------------------- /web/hqli-me/challenge/authn_service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/hqli-me/challenge/authn_service/Dockerfile -------------------------------------------------------------------------------- /web/hqli-me/challenge/authn_service/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/hqli-me/challenge/authn_service/entrypoint.sh -------------------------------------------------------------------------------- /web/hqli-me/challenge/authn_service/flag.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/hqli-me/challenge/authn_service/flag.s -------------------------------------------------------------------------------- /web/hqli-me/challenge/authn_service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/hqli-me/challenge/authn_service/pom.xml -------------------------------------------------------------------------------- /web/hqli-me/challenge/authn_service/src/main/java/sekai/HibernateUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/hqli-me/challenge/authn_service/src/main/java/sekai/HibernateUtil.java -------------------------------------------------------------------------------- /web/hqli-me/challenge/authn_service/src/main/java/sekai/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/hqli-me/challenge/authn_service/src/main/java/sekai/Main.java -------------------------------------------------------------------------------- /web/hqli-me/challenge/authn_service/src/main/java/sekai/Session.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/hqli-me/challenge/authn_service/src/main/java/sekai/Session.java -------------------------------------------------------------------------------- /web/hqli-me/challenge/authn_service/src/main/java/sekai/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/hqli-me/challenge/authn_service/src/main/java/sekai/User.java -------------------------------------------------------------------------------- /web/hqli-me/challenge/authn_service/src/main/java/sekai/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/hqli-me/challenge/authn_service/src/main/java/sekai/Util.java -------------------------------------------------------------------------------- /web/hqli-me/challenge/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/hqli-me/challenge/compose.yaml -------------------------------------------------------------------------------- /web/hqli-me/challenge/order_service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/hqli-me/challenge/order_service/Dockerfile -------------------------------------------------------------------------------- /web/hqli-me/challenge/order_service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/hqli-me/challenge/order_service/pom.xml -------------------------------------------------------------------------------- /web/hqli-me/challenge/order_service/src/main/java/sekai/HibernateUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/hqli-me/challenge/order_service/src/main/java/sekai/HibernateUtil.java -------------------------------------------------------------------------------- /web/hqli-me/challenge/order_service/src/main/java/sekai/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/hqli-me/challenge/order_service/src/main/java/sekai/Main.java -------------------------------------------------------------------------------- /web/hqli-me/challenge/order_service/src/main/java/sekai/Order.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/hqli-me/challenge/order_service/src/main/java/sekai/Order.java -------------------------------------------------------------------------------- /web/hqli-me/challenge/order_service/src/main/java/sekai/UserAuthenticationClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/hqli-me/challenge/order_service/src/main/java/sekai/UserAuthenticationClient.java -------------------------------------------------------------------------------- /web/hqli-me/challenge/order_service/src/main/java/sekai/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/hqli-me/challenge/order_service/src/main/java/sekai/Util.java -------------------------------------------------------------------------------- /web/hqli-me/dist/authn_service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/hqli-me/dist/authn_service/Dockerfile -------------------------------------------------------------------------------- /web/hqli-me/dist/authn_service/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/hqli-me/dist/authn_service/entrypoint.sh -------------------------------------------------------------------------------- /web/hqli-me/dist/authn_service/flag.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/hqli-me/dist/authn_service/flag.s -------------------------------------------------------------------------------- /web/hqli-me/dist/authn_service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/hqli-me/dist/authn_service/pom.xml -------------------------------------------------------------------------------- /web/hqli-me/dist/authn_service/src/main/java/sekai/HibernateUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/hqli-me/dist/authn_service/src/main/java/sekai/HibernateUtil.java -------------------------------------------------------------------------------- /web/hqli-me/dist/authn_service/src/main/java/sekai/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/hqli-me/dist/authn_service/src/main/java/sekai/Main.java -------------------------------------------------------------------------------- /web/hqli-me/dist/authn_service/src/main/java/sekai/Session.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/hqli-me/dist/authn_service/src/main/java/sekai/Session.java -------------------------------------------------------------------------------- /web/hqli-me/dist/authn_service/src/main/java/sekai/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/hqli-me/dist/authn_service/src/main/java/sekai/User.java -------------------------------------------------------------------------------- /web/hqli-me/dist/authn_service/src/main/java/sekai/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/hqli-me/dist/authn_service/src/main/java/sekai/Util.java -------------------------------------------------------------------------------- /web/hqli-me/dist/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/hqli-me/dist/compose.yaml -------------------------------------------------------------------------------- /web/hqli-me/dist/order_service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/hqli-me/dist/order_service/Dockerfile -------------------------------------------------------------------------------- /web/hqli-me/dist/order_service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/hqli-me/dist/order_service/pom.xml -------------------------------------------------------------------------------- /web/hqli-me/dist/order_service/src/main/java/sekai/HibernateUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/hqli-me/dist/order_service/src/main/java/sekai/HibernateUtil.java -------------------------------------------------------------------------------- /web/hqli-me/dist/order_service/src/main/java/sekai/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/hqli-me/dist/order_service/src/main/java/sekai/Main.java -------------------------------------------------------------------------------- /web/hqli-me/dist/order_service/src/main/java/sekai/Order.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/hqli-me/dist/order_service/src/main/java/sekai/Order.java -------------------------------------------------------------------------------- /web/hqli-me/dist/order_service/src/main/java/sekai/UserAuthenticationClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/hqli-me/dist/order_service/src/main/java/sekai/UserAuthenticationClient.java -------------------------------------------------------------------------------- /web/hqli-me/dist/order_service/src/main/java/sekai/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/hqli-me/dist/order_service/src/main/java/sekai/Util.java -------------------------------------------------------------------------------- /web/hqli-me/solution/e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/hqli-me/solution/e.py -------------------------------------------------------------------------------- /web/my-flask-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/my-flask-app/README.md -------------------------------------------------------------------------------- /web/my-flask-app/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/my-flask-app/challenge/Dockerfile -------------------------------------------------------------------------------- /web/my-flask-app/challenge/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/my-flask-app/challenge/app/app.py -------------------------------------------------------------------------------- /web/my-flask-app/challenge/app/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/my-flask-app/challenge/app/static/css/style.css -------------------------------------------------------------------------------- /web/my-flask-app/challenge/app/static/images/miku.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/my-flask-app/challenge/app/static/images/miku.webp -------------------------------------------------------------------------------- /web/my-flask-app/challenge/app/static/js/miku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/my-flask-app/challenge/app/static/js/miku.js -------------------------------------------------------------------------------- /web/my-flask-app/challenge/app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/my-flask-app/challenge/app/templates/index.html -------------------------------------------------------------------------------- /web/my-flask-app/challenge/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/my-flask-app/challenge/docker-compose.yml -------------------------------------------------------------------------------- /web/my-flask-app/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | SEKAI{1s_th15_3ven_c4ll3d_4_cv3} -------------------------------------------------------------------------------- /web/my-flask-app/dist/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/my-flask-app/dist/Dockerfile -------------------------------------------------------------------------------- /web/my-flask-app/dist/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/my-flask-app/dist/app/app.py -------------------------------------------------------------------------------- /web/my-flask-app/dist/app/flag.txt: -------------------------------------------------------------------------------- 1 | SEKAI{FAKE_FLAG_FOR_TESTING} -------------------------------------------------------------------------------- /web/my-flask-app/dist/app/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/my-flask-app/dist/app/static/css/style.css -------------------------------------------------------------------------------- /web/my-flask-app/dist/app/static/images/miku.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/my-flask-app/dist/app/static/images/miku.webp -------------------------------------------------------------------------------- /web/my-flask-app/dist/app/static/js/miku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/my-flask-app/dist/app/static/js/miku.js -------------------------------------------------------------------------------- /web/my-flask-app/dist/app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/my-flask-app/dist/app/templates/index.html -------------------------------------------------------------------------------- /web/my-flask-app/dist/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/my-flask-app/dist/docker-compose.yml -------------------------------------------------------------------------------- /web/my-flask-app/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/my-flask-app/solution/solve.py -------------------------------------------------------------------------------- /web/notebook-viewer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/notebook-viewer/README.md -------------------------------------------------------------------------------- /web/notebook-viewer/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/notebook-viewer/challenge/Dockerfile -------------------------------------------------------------------------------- /web/notebook-viewer/challenge/frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/notebook-viewer/challenge/frame.html -------------------------------------------------------------------------------- /web/notebook-viewer/challenge/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/notebook-viewer/challenge/index.html -------------------------------------------------------------------------------- /web/notebook-viewer/challenge/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/notebook-viewer/challenge/nginx.conf -------------------------------------------------------------------------------- /web/notebook-viewer/dist/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/notebook-viewer/dist/Dockerfile -------------------------------------------------------------------------------- /web/notebook-viewer/dist/adminbot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/notebook-viewer/dist/adminbot.js -------------------------------------------------------------------------------- /web/notebook-viewer/dist/frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/notebook-viewer/dist/frame.html -------------------------------------------------------------------------------- /web/notebook-viewer/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/notebook-viewer/dist/index.html -------------------------------------------------------------------------------- /web/notebook-viewer/dist/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/notebook-viewer/dist/nginx.conf -------------------------------------------------------------------------------- /web/notebook-viewer/solution/solver.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/notebook-viewer/solution/solver.html -------------------------------------------------------------------------------- /web/rednote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/rednote/README.md -------------------------------------------------------------------------------- /web/rednote/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/rednote/challenge/Dockerfile -------------------------------------------------------------------------------- /web/rednote/challenge/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/rednote/challenge/app.js -------------------------------------------------------------------------------- /web/rednote/challenge/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/rednote/challenge/package.json -------------------------------------------------------------------------------- /web/rednote/challenge/public/purify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/rednote/challenge/public/purify.min.js -------------------------------------------------------------------------------- /web/rednote/challenge/views/home.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/rednote/challenge/views/home.hbs -------------------------------------------------------------------------------- /web/rednote/challenge/views/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/rednote/challenge/views/index.hbs -------------------------------------------------------------------------------- /web/rednote/challenge/views/layout.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/rednote/challenge/views/layout.hbs -------------------------------------------------------------------------------- /web/rednote/challenge/views/login.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/rednote/challenge/views/login.hbs -------------------------------------------------------------------------------- /web/rednote/challenge/views/note.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/rednote/challenge/views/note.hbs -------------------------------------------------------------------------------- /web/rednote/challenge/views/register.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/rednote/challenge/views/register.hbs -------------------------------------------------------------------------------- /web/rednote/dist/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/rednote/dist/bot.js -------------------------------------------------------------------------------- /web/rednote/dist/rednote/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/rednote/dist/rednote/Dockerfile -------------------------------------------------------------------------------- /web/rednote/dist/rednote/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/rednote/dist/rednote/app.js -------------------------------------------------------------------------------- /web/rednote/dist/rednote/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/rednote/dist/rednote/package.json -------------------------------------------------------------------------------- /web/rednote/dist/rednote/public/purify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/rednote/dist/rednote/public/purify.min.js -------------------------------------------------------------------------------- /web/rednote/dist/rednote/views/home.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/rednote/dist/rednote/views/home.hbs -------------------------------------------------------------------------------- /web/rednote/dist/rednote/views/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/rednote/dist/rednote/views/index.hbs -------------------------------------------------------------------------------- /web/rednote/dist/rednote/views/layout.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/rednote/dist/rednote/views/layout.hbs -------------------------------------------------------------------------------- /web/rednote/dist/rednote/views/login.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/rednote/dist/rednote/views/login.hbs -------------------------------------------------------------------------------- /web/rednote/dist/rednote/views/note.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/rednote/dist/rednote/views/note.hbs -------------------------------------------------------------------------------- /web/rednote/dist/rednote/views/register.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/rednote/dist/rednote/views/register.hbs -------------------------------------------------------------------------------- /web/rednote/solution/solve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/rednote/solution/solve.html -------------------------------------------------------------------------------- /web/vite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/vite/README.md -------------------------------------------------------------------------------- /web/vite/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/vite/challenge/Dockerfile -------------------------------------------------------------------------------- /web/vite/challenge/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/vite/challenge/app/package.json -------------------------------------------------------------------------------- /web/vite/challenge/app/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/vite/challenge/app/src/app.d.ts -------------------------------------------------------------------------------- /web/vite/challenge/app/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/vite/challenge/app/src/app.html -------------------------------------------------------------------------------- /web/vite/challenge/app/src/hooks.server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/vite/challenge/app/src/hooks.server.js -------------------------------------------------------------------------------- /web/vite/challenge/app/src/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/vite/challenge/app/src/lib/index.js -------------------------------------------------------------------------------- /web/vite/challenge/app/src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/vite/challenge/app/src/routes/+page.svelte -------------------------------------------------------------------------------- /web/vite/challenge/app/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/vite/challenge/app/static/favicon.png -------------------------------------------------------------------------------- /web/vite/challenge/app/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/vite/challenge/app/svelte.config.js -------------------------------------------------------------------------------- /web/vite/challenge/app/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/vite/challenge/app/vite.config.js -------------------------------------------------------------------------------- /web/vite/challenge/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/vite/challenge/entrypoint.sh -------------------------------------------------------------------------------- /web/vite/challenge/flag.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/vite/challenge/flag.s -------------------------------------------------------------------------------- /web/vite/challenge/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/vite/challenge/supervisord.conf -------------------------------------------------------------------------------- /web/vite/dist/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/vite/dist/Dockerfile -------------------------------------------------------------------------------- /web/vite/dist/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/vite/dist/app/package.json -------------------------------------------------------------------------------- /web/vite/dist/app/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/vite/dist/app/src/app.d.ts -------------------------------------------------------------------------------- /web/vite/dist/app/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/vite/dist/app/src/app.html -------------------------------------------------------------------------------- /web/vite/dist/app/src/hooks.server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/vite/dist/app/src/hooks.server.js -------------------------------------------------------------------------------- /web/vite/dist/app/src/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/vite/dist/app/src/lib/index.js -------------------------------------------------------------------------------- /web/vite/dist/app/src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/vite/dist/app/src/routes/+page.svelte -------------------------------------------------------------------------------- /web/vite/dist/app/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/vite/dist/app/static/favicon.png -------------------------------------------------------------------------------- /web/vite/dist/app/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/vite/dist/app/svelte.config.js -------------------------------------------------------------------------------- /web/vite/dist/app/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/vite/dist/app/vite.config.js -------------------------------------------------------------------------------- /web/vite/dist/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/vite/dist/entrypoint.sh -------------------------------------------------------------------------------- /web/vite/dist/flag.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/vite/dist/flag.s -------------------------------------------------------------------------------- /web/vite/dist/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/vite/dist/supervisord.conf -------------------------------------------------------------------------------- /web/vite/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-sekai-ctf/sekaictf-2025/HEAD/web/vite/solution/solve.py --------------------------------------------------------------------------------