├── .gitignore ├── .prettierrc ├── AtomicPizza ├── README.md ├── attachments │ ├── Dockerfile │ ├── atomic_pizza │ ├── docker-compose.yml │ └── flag.txt ├── authors.txt ├── challenge.json ├── checker │ ├── __main__.py │ └── requirements.txt ├── description.md ├── flags.txt ├── points.txt ├── presentation.pptx ├── src │ ├── Dockerfile │ ├── Makefile │ ├── atomic_pizza │ ├── atomic_pizza.c │ ├── docker-compose.yml │ └── flag.txt ├── tags.txt ├── timeout.txt └── title.txt ├── CrackmeEVA ├── README.md ├── attachments │ ├── crackme_eva.ik1vm │ └── emulator ├── authors.txt ├── challenge.json ├── description.md ├── flags.txt ├── points.txt ├── presentation.pptx ├── src │ ├── crackme_eva │ │ ├── main_check.asm │ │ └── pseudocode_crackmeeva.ik1asm │ └── emulator │ │ ├── antidebug │ │ ├── antidebug.asm │ │ └── asmcompile.sh │ │ ├── assemble_trap.py │ │ ├── compile.sh │ │ └── emulatore.c ├── tags.txt └── title.txt ├── EllipticPizza ├── .gitignore ├── README.md ├── attachments │ └── elliptic-pizza.sage ├── authors.txt ├── challenge.json ├── checker │ ├── SIKE_challenge.sage │ ├── SIKEp434.sage │ ├── SIKEp610_variant.sage │ ├── __main__.sage │ ├── __main__.sage.py │ ├── baby_SIDH.sage │ ├── castryck_decru_attack.sage │ ├── castryck_decru_shortcut.sage │ ├── helpers.py │ ├── public_values_aux.py │ ├── rcrack.py │ ├── requirements.txt │ ├── richelot_aux.sage │ ├── richelot_test.sage │ ├── sandwich_attack.sage │ ├── secret.py │ ├── speedup.sage │ ├── test.sage.py │ └── uvtable.sage ├── description.md ├── flags.txt ├── points.txt ├── presentation.pptx ├── src │ ├── Dockerfile │ ├── docker-compose.yml │ ├── requirements.txt │ ├── secret.py │ ├── source.sage │ ├── source.sage.py │ └── sources.list ├── tags.txt ├── timeout.txt └── title.txt ├── FamilyBusiness ├── README.md ├── authors.txt ├── challenge.json ├── description.md ├── flags.txt ├── points.txt ├── presentation.pptx ├── tags.txt └── title.txt ├── FamilyRecipes ├── README.md ├── attachments │ └── attachments.zip ├── authors.txt ├── challenge.json ├── checker │ ├── __main__.py │ ├── exploit │ └── requirements.txt ├── description.md ├── flags.txt ├── images │ ├── read_alignments.png │ ├── recipes_list.png │ └── write_alignments.png ├── points.txt ├── presentation.pptx ├── src │ ├── Dockerfile │ ├── bzImage │ ├── docker-compose.yml │ ├── entrypoint.sh │ ├── initramfs.cpio.gz │ ├── run.py │ └── run.sh ├── tags.txt ├── timeout.txt └── title.txt ├── FlagProxy ├── README.md ├── attachments │ └── flag-proxy.zip ├── authors.txt ├── challenge.json ├── checker │ ├── __main__.py │ └── requirements.txt ├── description.md ├── flags.txt ├── points.txt ├── presentation.pptx ├── src │ ├── docker-compose.yml │ ├── server-back │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── index.js │ │ ├── package-lock.json │ │ └── package.json │ └── server-front │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── http-client.js │ │ ├── index.js │ │ ├── package-lock.json │ │ └── package.json ├── tags.txt ├── timeout.txt └── title.txt ├── GPOCS ├── .gitignore ├── README.md ├── attachments │ ├── GPOCS.py │ └── words.txt ├── authors.txt ├── challenge.json ├── checker │ └── __main__.sage ├── description.md ├── flags.txt ├── points.txt ├── presentation.pptx ├── src │ ├── Dockerfile │ ├── docker-compose.yml │ ├── requirements.txt │ ├── server.py │ └── words.txt ├── tags.txt ├── timeout.txt └── title.txt ├── Goland ├── README.md ├── attachments │ └── goland ├── authors.txt ├── challenge.json ├── checker │ ├── __main__.py │ └── requirements.txt ├── description.md ├── flags.txt ├── points.txt ├── presentation.pptx ├── src │ ├── Dockerfile │ ├── Makefile │ ├── docker-compose.yml │ ├── go.mod │ ├── main │ └── main.go ├── tags.txt ├── timeout.txt └── title.txt ├── ImageStore ├── README.md ├── attachments │ └── imagestore.py ├── authors.txt ├── challenge.json ├── checker │ ├── __main__.py │ └── requirements.txt ├── description.md ├── flags.txt ├── points.txt ├── presentation.pptx ├── src │ ├── Dockerfile │ ├── challenge.py │ ├── docker-compose.yml │ ├── flag │ ├── nsjail.cfg │ └── requirements.txt ├── tags.txt ├── timeout.txt └── title.txt ├── ImageStore2 ├── README.md ├── attachments │ └── imagestore2.py ├── authors.txt ├── challenge.json ├── checker │ ├── __main__.py │ └── requirements.txt ├── description.md ├── flags.txt ├── points.txt ├── presentation.pptx ├── src │ ├── Dockerfile │ ├── challenge.py │ ├── docker-compose.yml │ ├── flag │ ├── nsjail.cfg │ └── requirements.txt ├── tags.txt ├── timeout.txt └── title.txt ├── LICENSE ├── LazyPlatform ├── .gitignore ├── README.md ├── attachments │ └── lazy-platform.py ├── authors.txt ├── challenge.json ├── checker │ ├── __main__.py │ └── requirements.txt ├── description.md ├── flags.txt ├── points.txt ├── presentation.pptx ├── src │ ├── Dockerfile │ ├── docker-compose.yml │ ├── requirements.txt │ └── server.py ├── tags.txt ├── timeout.txt └── title.txt ├── MMM ├── README.md ├── attachments │ └── m3 ├── authors.txt ├── challenge.json ├── checker │ ├── __main__.py │ ├── m3 │ └── requirements.txt ├── description.md ├── flags.txt ├── points.txt ├── presentation.pptx ├── src │ ├── Dockerfile │ ├── Makefile │ ├── docker-compose.yml │ ├── flag.txt │ ├── m3 │ └── main.c ├── tags.txt ├── timeout.txt ├── title.txt └── writeup_res │ ├── heap.png │ └── toctou.png ├── README.md ├── RedSaffron ├── README.md ├── attachments │ └── red-saffron.zip ├── authors.txt ├── challenge.json ├── checker │ ├── __main__.py │ ├── attacker_server │ │ ├── .gitignore │ │ ├── csrf.php │ │ ├── index.php │ │ └── start.php │ └── requirements.txt ├── description.md ├── flags.txt ├── points.txt ├── presentation.pptx ├── src │ ├── .gitignore │ ├── blog │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── server.js │ │ ├── static │ │ │ ├── logo.png │ │ │ └── pizza.jpeg │ │ └── views │ │ │ ├── buyad.ejs │ │ │ ├── cb.ejs │ │ │ ├── error.ejs │ │ │ ├── footer.ejs │ │ │ ├── header.ejs │ │ │ ├── home.ejs │ │ │ ├── me.ejs │ │ │ ├── new_recipe.ejs │ │ │ ├── recipe.ejs │ │ │ ├── recipe_list.ejs │ │ │ ├── registered.ejs │ │ │ ├── report.ejs │ │ │ └── reported.ejs │ ├── bot │ │ ├── Dockerfile │ │ ├── bot.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── server.js │ ├── docker-compose.yml │ └── uauth │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── server.js │ │ └── views │ │ ├── footer.ejs │ │ ├── header.ejs │ │ ├── login.ejs │ │ └── register.ejs ├── tags.txt ├── timeout.txt └── title.txt ├── SafePizzaOrders ├── .gitignore ├── README.md ├── attachments │ ├── safe_pizza_orders.zip │ └── template.py ├── authors.txt ├── challenge.json ├── checker │ ├── __main__.py │ └── requirements.txt ├── description.md ├── flags.txt ├── points.txt ├── presentation.pptx ├── src │ ├── .dockerignore │ ├── Dockerfile │ ├── banner.txt │ ├── chall │ ├── chall.c │ ├── ctf.sh │ ├── docker-compose.yml │ ├── laproxy.cpp │ ├── pizza_secret_recipe │ ├── pow.py │ ├── supervisord.conf │ └── xinetd.conf ├── tags.txt ├── timeout.txt └── title.txt ├── ScheiChecker ├── .gitignore ├── README.md ├── attachments │ └── schei-checker.zip ├── authors.txt ├── challenge.json ├── checker │ ├── __main__.py │ └── requirements.txt ├── description.md ├── flags.txt ├── points.txt ├── presentation.pptx ├── src │ ├── .example.env │ ├── README.md │ ├── backend │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ ├── config.example.js │ │ ├── configChecker.js │ │ ├── html │ │ │ ├── adminpanel.html │ │ │ ├── assets │ │ │ │ ├── bootstrap │ │ │ │ │ ├── css │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ └── js │ │ │ │ │ │ └── bootstrap.min.js │ │ │ │ ├── css │ │ │ │ │ └── styles.min.css │ │ │ │ ├── fonts │ │ │ │ │ └── s │ │ │ │ │ │ └── inter │ │ │ │ │ │ └── v12 │ │ │ │ │ │ ├── UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7SUc.woff2 │ │ │ │ │ │ ├── UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2 │ │ │ │ │ │ ├── UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7SUc.woff2 │ │ │ │ │ │ ├── UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7SUc.woff2 │ │ │ │ │ │ ├── UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7SUc.woff2 │ │ │ │ │ │ ├── UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7SUc.woff2 │ │ │ │ │ │ └── UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7SUc.woff2 │ │ │ │ ├── img │ │ │ │ │ ├── block.png │ │ │ │ │ ├── check.png │ │ │ │ │ └── logo.png │ │ │ │ └── js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── script.min.js │ │ │ │ │ └── sitecode │ │ │ │ │ ├── adminpanel.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── login.js │ │ │ ├── index.html │ │ │ ├── login.html │ │ │ └── tooManyAttempts.html │ │ ├── index.js │ │ ├── modules │ │ │ ├── admin-api.js │ │ │ └── prices-api.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── utils │ │ │ ├── jwt-auth.js │ │ │ ├── prices-request.js │ │ │ ├── serialize.js │ │ │ └── visits.js │ ├── docker-compose.yml │ ├── example.env │ ├── generate_attachment_zip.sh │ ├── generate_config_files.sh │ ├── prices-cache │ │ ├── .dockerignore │ │ ├── CoinMarketCap.js │ │ ├── Dockerfile │ │ ├── cache.js │ │ ├── config.example.js │ │ ├── index.js │ │ ├── package-lock.json │ │ └── package.json │ └── redis.conf ├── tags.txt ├── timeout.txt └── title.txt ├── SpaghettiVM ├── .gitignore ├── README.md ├── attachments │ └── svm.js ├── authors.txt ├── challenge.json ├── description.md ├── flags.txt ├── points.txt ├── presentation.pptx ├── src │ ├── .prettierrc │ ├── builder.ts │ ├── chall │ │ ├── index.ts │ │ └── key.ts │ ├── examples │ │ ├── echo.ts │ │ ├── hello-world-1337.ts │ │ ├── hello-world-infinite.ts │ │ └── hello-world.ts │ ├── id-helper.ts │ ├── index.ts │ ├── instructions.ts │ ├── package-lock.json │ ├── package.json │ ├── parser.ts │ └── tsconfig.json ├── tags.txt └── title.txt ├── SpeakingWithHands ├── README.md ├── attachments │ └── translator ├── authors.txt ├── challenge.json ├── description.md ├── flags.txt ├── points.txt ├── presentation.pptx ├── src │ ├── .gitignore │ ├── build.py │ ├── code.asm │ ├── main.c │ └── solve.py ├── tags.txt └── title.txt ├── TheMissingHalf ├── README.md ├── attachments │ ├── missing-half.out │ └── missing-half.py ├── authors.txt ├── challenge.json ├── description.md ├── flags.txt ├── points.txt ├── presentation.pptx ├── solver │ ├── out.txt │ └── solve.py ├── src │ ├── missing-half.out │ └── missing-half.py ├── tags.txt └── title.txt ├── data ├── scoreboard.csv ├── scoreboard.json └── submissions.csv ├── docker-compose.dev.yml ├── docker-compose.yml ├── images ├── cybersecnatlab-logo.png ├── scoreboard-top10.png ├── scoreboard.png ├── solves.png └── teamitaly-logo.png └── kreap ├── .gitignore ├── Makefile ├── README.md ├── attachments ├── chall └── kreap.ko ├── authors.txt ├── challenge.json ├── checker ├── __main__.py ├── chall └── requirements.txt ├── description.md ├── flags.txt ├── points.txt ├── presentation.pptx ├── src ├── 31-kreap.rules ├── Dockerfile ├── chall ├── docker-compose.yml ├── flag.txt ├── kernel │ └── kreap.c ├── kreap.ko ├── main.c ├── setup_vm.sh ├── start.sh └── test │ ├── maintest.c │ ├── read_all_sectors.c │ ├── test_full.c │ ├── test_map_block.c │ └── test_multiple_open_chrdev.c ├── tags.txt ├── timeout.txt ├── title.txt └── writeup_images ├── 0_init_array.png └── 1_menu.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/.prettierrc -------------------------------------------------------------------------------- /AtomicPizza/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/AtomicPizza/README.md -------------------------------------------------------------------------------- /AtomicPizza/attachments/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/AtomicPizza/attachments/Dockerfile -------------------------------------------------------------------------------- /AtomicPizza/attachments/atomic_pizza: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/AtomicPizza/attachments/atomic_pizza -------------------------------------------------------------------------------- /AtomicPizza/attachments/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/AtomicPizza/attachments/docker-compose.yml -------------------------------------------------------------------------------- /AtomicPizza/attachments/flag.txt: -------------------------------------------------------------------------------- 1 | flag{fake_flag} 2 | -------------------------------------------------------------------------------- /AtomicPizza/authors.txt: -------------------------------------------------------------------------------- 1 | Marco Meinardi (@Chino) 2 | -------------------------------------------------------------------------------- /AtomicPizza/challenge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/AtomicPizza/challenge.json -------------------------------------------------------------------------------- /AtomicPizza/checker/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/AtomicPizza/checker/__main__.py -------------------------------------------------------------------------------- /AtomicPizza/checker/requirements.txt: -------------------------------------------------------------------------------- 1 | pwntools==4.8.0 -------------------------------------------------------------------------------- /AtomicPizza/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/AtomicPizza/description.md -------------------------------------------------------------------------------- /AtomicPizza/flags.txt: -------------------------------------------------------------------------------- 1 | flag{you_cannot_cook_misaligned_pizza} 2 | -------------------------------------------------------------------------------- /AtomicPizza/points.txt: -------------------------------------------------------------------------------- 1 | 50,500,10 2 | -------------------------------------------------------------------------------- /AtomicPizza/presentation.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/AtomicPizza/presentation.pptx -------------------------------------------------------------------------------- /AtomicPizza/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/AtomicPizza/src/Dockerfile -------------------------------------------------------------------------------- /AtomicPizza/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/AtomicPizza/src/Makefile -------------------------------------------------------------------------------- /AtomicPizza/src/atomic_pizza: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/AtomicPizza/src/atomic_pizza -------------------------------------------------------------------------------- /AtomicPizza/src/atomic_pizza.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/AtomicPizza/src/atomic_pizza.c -------------------------------------------------------------------------------- /AtomicPizza/src/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/AtomicPizza/src/docker-compose.yml -------------------------------------------------------------------------------- /AtomicPizza/src/flag.txt: -------------------------------------------------------------------------------- 1 | flag{you_cannot_cook_misaligned_pizza} 2 | -------------------------------------------------------------------------------- /AtomicPizza/tags.txt: -------------------------------------------------------------------------------- 1 | pwn 2 | -------------------------------------------------------------------------------- /AtomicPizza/timeout.txt: -------------------------------------------------------------------------------- 1 | 60 2 | -------------------------------------------------------------------------------- /AtomicPizza/title.txt: -------------------------------------------------------------------------------- 1 | Atomic Pizza 2 | -------------------------------------------------------------------------------- /CrackmeEVA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/CrackmeEVA/README.md -------------------------------------------------------------------------------- /CrackmeEVA/attachments/crackme_eva.ik1vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/CrackmeEVA/attachments/crackme_eva.ik1vm -------------------------------------------------------------------------------- /CrackmeEVA/attachments/emulator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/CrackmeEVA/attachments/emulator -------------------------------------------------------------------------------- /CrackmeEVA/authors.txt: -------------------------------------------------------------------------------- 1 | Armando Bellante (ikiga1) -------------------------------------------------------------------------------- /CrackmeEVA/challenge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/CrackmeEVA/challenge.json -------------------------------------------------------------------------------- /CrackmeEVA/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/CrackmeEVA/description.md -------------------------------------------------------------------------------- /CrackmeEVA/flags.txt: -------------------------------------------------------------------------------- 1 | flag{01910023239281138890310208238219} -------------------------------------------------------------------------------- /CrackmeEVA/points.txt: -------------------------------------------------------------------------------- 1 | 50,500,10 2 | -------------------------------------------------------------------------------- /CrackmeEVA/presentation.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/CrackmeEVA/presentation.pptx -------------------------------------------------------------------------------- /CrackmeEVA/src/crackme_eva/main_check.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/CrackmeEVA/src/crackme_eva/main_check.asm -------------------------------------------------------------------------------- /CrackmeEVA/src/crackme_eva/pseudocode_crackmeeva.ik1asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/CrackmeEVA/src/crackme_eva/pseudocode_crackmeeva.ik1asm -------------------------------------------------------------------------------- /CrackmeEVA/src/emulator/antidebug/antidebug.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/CrackmeEVA/src/emulator/antidebug/antidebug.asm -------------------------------------------------------------------------------- /CrackmeEVA/src/emulator/antidebug/asmcompile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/CrackmeEVA/src/emulator/antidebug/asmcompile.sh -------------------------------------------------------------------------------- /CrackmeEVA/src/emulator/assemble_trap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/CrackmeEVA/src/emulator/assemble_trap.py -------------------------------------------------------------------------------- /CrackmeEVA/src/emulator/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/CrackmeEVA/src/emulator/compile.sh -------------------------------------------------------------------------------- /CrackmeEVA/src/emulator/emulatore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/CrackmeEVA/src/emulator/emulatore.c -------------------------------------------------------------------------------- /CrackmeEVA/tags.txt: -------------------------------------------------------------------------------- 1 | rev -------------------------------------------------------------------------------- /CrackmeEVA/title.txt: -------------------------------------------------------------------------------- 1 | Ik1VM - CrackmeEVA -------------------------------------------------------------------------------- /EllipticPizza/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ -------------------------------------------------------------------------------- /EllipticPizza/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/EllipticPizza/README.md -------------------------------------------------------------------------------- /EllipticPizza/attachments/elliptic-pizza.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/EllipticPizza/attachments/elliptic-pizza.sage -------------------------------------------------------------------------------- /EllipticPizza/authors.txt: -------------------------------------------------------------------------------- 1 | Lorenzo Demeio (Devrar) -------------------------------------------------------------------------------- /EllipticPizza/challenge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/EllipticPizza/challenge.json -------------------------------------------------------------------------------- /EllipticPizza/checker/SIKE_challenge.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/EllipticPizza/checker/SIKE_challenge.sage -------------------------------------------------------------------------------- /EllipticPizza/checker/SIKEp434.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/EllipticPizza/checker/SIKEp434.sage -------------------------------------------------------------------------------- /EllipticPizza/checker/SIKEp610_variant.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/EllipticPizza/checker/SIKEp610_variant.sage -------------------------------------------------------------------------------- /EllipticPizza/checker/__main__.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/EllipticPizza/checker/__main__.sage -------------------------------------------------------------------------------- /EllipticPizza/checker/__main__.sage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/EllipticPizza/checker/__main__.sage.py -------------------------------------------------------------------------------- /EllipticPizza/checker/baby_SIDH.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/EllipticPizza/checker/baby_SIDH.sage -------------------------------------------------------------------------------- /EllipticPizza/checker/castryck_decru_attack.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/EllipticPizza/checker/castryck_decru_attack.sage -------------------------------------------------------------------------------- /EllipticPizza/checker/castryck_decru_shortcut.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/EllipticPizza/checker/castryck_decru_shortcut.sage -------------------------------------------------------------------------------- /EllipticPizza/checker/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/EllipticPizza/checker/helpers.py -------------------------------------------------------------------------------- /EllipticPizza/checker/public_values_aux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/EllipticPizza/checker/public_values_aux.py -------------------------------------------------------------------------------- /EllipticPizza/checker/rcrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/EllipticPizza/checker/rcrack.py -------------------------------------------------------------------------------- /EllipticPizza/checker/requirements.txt: -------------------------------------------------------------------------------- 1 | z3-solver==4.11.1.0 -------------------------------------------------------------------------------- /EllipticPizza/checker/richelot_aux.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/EllipticPizza/checker/richelot_aux.sage -------------------------------------------------------------------------------- /EllipticPizza/checker/richelot_test.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/EllipticPizza/checker/richelot_test.sage -------------------------------------------------------------------------------- /EllipticPizza/checker/sandwich_attack.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/EllipticPizza/checker/sandwich_attack.sage -------------------------------------------------------------------------------- /EllipticPizza/checker/secret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/EllipticPizza/checker/secret.py -------------------------------------------------------------------------------- /EllipticPizza/checker/speedup.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/EllipticPizza/checker/speedup.sage -------------------------------------------------------------------------------- /EllipticPizza/checker/test.sage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/EllipticPizza/checker/test.sage.py -------------------------------------------------------------------------------- /EllipticPizza/checker/uvtable.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/EllipticPizza/checker/uvtable.sage -------------------------------------------------------------------------------- /EllipticPizza/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/EllipticPizza/description.md -------------------------------------------------------------------------------- /EllipticPizza/flags.txt: -------------------------------------------------------------------------------- 1 | flag{1sog3ny_b4s3d_crypt0_w1ll_surv1v3!} -------------------------------------------------------------------------------- /EllipticPizza/points.txt: -------------------------------------------------------------------------------- 1 | 50,500,10 2 | -------------------------------------------------------------------------------- /EllipticPizza/presentation.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/EllipticPizza/presentation.pptx -------------------------------------------------------------------------------- /EllipticPizza/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/EllipticPizza/src/Dockerfile -------------------------------------------------------------------------------- /EllipticPizza/src/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/EllipticPizza/src/docker-compose.yml -------------------------------------------------------------------------------- /EllipticPizza/src/requirements.txt: -------------------------------------------------------------------------------- 1 | pycryptodome==3.15.0 -------------------------------------------------------------------------------- /EllipticPizza/src/secret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/EllipticPizza/src/secret.py -------------------------------------------------------------------------------- /EllipticPizza/src/source.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/EllipticPizza/src/source.sage -------------------------------------------------------------------------------- /EllipticPizza/src/source.sage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/EllipticPizza/src/source.sage.py -------------------------------------------------------------------------------- /EllipticPizza/src/sources.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/EllipticPizza/src/sources.list -------------------------------------------------------------------------------- /EllipticPizza/tags.txt: -------------------------------------------------------------------------------- 1 | crypto -------------------------------------------------------------------------------- /EllipticPizza/timeout.txt: -------------------------------------------------------------------------------- 1 | 600 -------------------------------------------------------------------------------- /EllipticPizza/title.txt: -------------------------------------------------------------------------------- 1 | Elliptic Pizza -------------------------------------------------------------------------------- /FamilyBusiness/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/FamilyBusiness/README.md -------------------------------------------------------------------------------- /FamilyBusiness/authors.txt: -------------------------------------------------------------------------------- 1 | Luigi Loffredo (ll3006) -------------------------------------------------------------------------------- /FamilyBusiness/challenge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/FamilyBusiness/challenge.json -------------------------------------------------------------------------------- /FamilyBusiness/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/FamilyBusiness/description.md -------------------------------------------------------------------------------- /FamilyBusiness/flags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/FamilyBusiness/flags.txt -------------------------------------------------------------------------------- /FamilyBusiness/points.txt: -------------------------------------------------------------------------------- 1 | 50,500,10 2 | -------------------------------------------------------------------------------- /FamilyBusiness/presentation.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/FamilyBusiness/presentation.pptx -------------------------------------------------------------------------------- /FamilyBusiness/tags.txt: -------------------------------------------------------------------------------- 1 | misc -------------------------------------------------------------------------------- /FamilyBusiness/title.txt: -------------------------------------------------------------------------------- 1 | Family Business -------------------------------------------------------------------------------- /FamilyRecipes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/FamilyRecipes/README.md -------------------------------------------------------------------------------- /FamilyRecipes/attachments/attachments.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/FamilyRecipes/attachments/attachments.zip -------------------------------------------------------------------------------- /FamilyRecipes/authors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/FamilyRecipes/authors.txt -------------------------------------------------------------------------------- /FamilyRecipes/challenge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/FamilyRecipes/challenge.json -------------------------------------------------------------------------------- /FamilyRecipes/checker/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/FamilyRecipes/checker/__main__.py -------------------------------------------------------------------------------- /FamilyRecipes/checker/exploit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/FamilyRecipes/checker/exploit -------------------------------------------------------------------------------- /FamilyRecipes/checker/requirements.txt: -------------------------------------------------------------------------------- 1 | pwntools==4.8.0 2 | pyngrok==5.1.0 -------------------------------------------------------------------------------- /FamilyRecipes/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/FamilyRecipes/description.md -------------------------------------------------------------------------------- /FamilyRecipes/flags.txt: -------------------------------------------------------------------------------- 1 | flag{g0d_bl3ss_gr4ndm4s_4nd_p3st0} 2 | -------------------------------------------------------------------------------- /FamilyRecipes/images/read_alignments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/FamilyRecipes/images/read_alignments.png -------------------------------------------------------------------------------- /FamilyRecipes/images/recipes_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/FamilyRecipes/images/recipes_list.png -------------------------------------------------------------------------------- /FamilyRecipes/images/write_alignments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/FamilyRecipes/images/write_alignments.png -------------------------------------------------------------------------------- /FamilyRecipes/points.txt: -------------------------------------------------------------------------------- 1 | 50,500,10 2 | -------------------------------------------------------------------------------- /FamilyRecipes/presentation.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/FamilyRecipes/presentation.pptx -------------------------------------------------------------------------------- /FamilyRecipes/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/FamilyRecipes/src/Dockerfile -------------------------------------------------------------------------------- /FamilyRecipes/src/bzImage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/FamilyRecipes/src/bzImage -------------------------------------------------------------------------------- /FamilyRecipes/src/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/FamilyRecipes/src/docker-compose.yml -------------------------------------------------------------------------------- /FamilyRecipes/src/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/FamilyRecipes/src/entrypoint.sh -------------------------------------------------------------------------------- /FamilyRecipes/src/initramfs.cpio.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/FamilyRecipes/src/initramfs.cpio.gz -------------------------------------------------------------------------------- /FamilyRecipes/src/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/FamilyRecipes/src/run.py -------------------------------------------------------------------------------- /FamilyRecipes/src/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/FamilyRecipes/src/run.sh -------------------------------------------------------------------------------- /FamilyRecipes/tags.txt: -------------------------------------------------------------------------------- 1 | pwn -------------------------------------------------------------------------------- /FamilyRecipes/timeout.txt: -------------------------------------------------------------------------------- 1 | 10 -------------------------------------------------------------------------------- /FamilyRecipes/title.txt: -------------------------------------------------------------------------------- 1 | FamilyRecipes -------------------------------------------------------------------------------- /FlagProxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/FlagProxy/README.md -------------------------------------------------------------------------------- /FlagProxy/attachments/flag-proxy.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/FlagProxy/attachments/flag-proxy.zip -------------------------------------------------------------------------------- /FlagProxy/authors.txt: -------------------------------------------------------------------------------- 1 | Giovanni Minotti (Giotino) -------------------------------------------------------------------------------- /FlagProxy/challenge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/FlagProxy/challenge.json -------------------------------------------------------------------------------- /FlagProxy/checker/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/FlagProxy/checker/__main__.py -------------------------------------------------------------------------------- /FlagProxy/checker/requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.28.1 -------------------------------------------------------------------------------- /FlagProxy/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/FlagProxy/description.md -------------------------------------------------------------------------------- /FlagProxy/flags.txt: -------------------------------------------------------------------------------- 1 | flag{sanity_check} -------------------------------------------------------------------------------- /FlagProxy/points.txt: -------------------------------------------------------------------------------- 1 | 50,500,10 2 | -------------------------------------------------------------------------------- /FlagProxy/presentation.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/FlagProxy/presentation.pptx -------------------------------------------------------------------------------- /FlagProxy/src/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/FlagProxy/src/docker-compose.yml -------------------------------------------------------------------------------- /FlagProxy/src/server-back/.dockerignore: -------------------------------------------------------------------------------- 1 | /.env 2 | /node_modules -------------------------------------------------------------------------------- /FlagProxy/src/server-back/.gitignore: -------------------------------------------------------------------------------- 1 | /.env 2 | /node_modules -------------------------------------------------------------------------------- /FlagProxy/src/server-back/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/FlagProxy/src/server-back/Dockerfile -------------------------------------------------------------------------------- /FlagProxy/src/server-back/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/FlagProxy/src/server-back/index.js -------------------------------------------------------------------------------- /FlagProxy/src/server-back/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/FlagProxy/src/server-back/package-lock.json -------------------------------------------------------------------------------- /FlagProxy/src/server-back/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/FlagProxy/src/server-back/package.json -------------------------------------------------------------------------------- /FlagProxy/src/server-front/.dockerignore: -------------------------------------------------------------------------------- 1 | /.env 2 | /node_modules -------------------------------------------------------------------------------- /FlagProxy/src/server-front/.gitignore: -------------------------------------------------------------------------------- 1 | /.env 2 | /node_modules -------------------------------------------------------------------------------- /FlagProxy/src/server-front/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/FlagProxy/src/server-front/Dockerfile -------------------------------------------------------------------------------- /FlagProxy/src/server-front/http-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/FlagProxy/src/server-front/http-client.js -------------------------------------------------------------------------------- /FlagProxy/src/server-front/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/FlagProxy/src/server-front/index.js -------------------------------------------------------------------------------- /FlagProxy/src/server-front/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/FlagProxy/src/server-front/package-lock.json -------------------------------------------------------------------------------- /FlagProxy/src/server-front/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/FlagProxy/src/server-front/package.json -------------------------------------------------------------------------------- /FlagProxy/tags.txt: -------------------------------------------------------------------------------- 1 | web -------------------------------------------------------------------------------- /FlagProxy/timeout.txt: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /FlagProxy/title.txt: -------------------------------------------------------------------------------- 1 | Flag proxy -------------------------------------------------------------------------------- /GPOCS/.gitignore: -------------------------------------------------------------------------------- 1 | .venv 2 | __pycache__ 3 | *.sage.py 4 | -------------------------------------------------------------------------------- /GPOCS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/GPOCS/README.md -------------------------------------------------------------------------------- /GPOCS/attachments/GPOCS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/GPOCS/attachments/GPOCS.py -------------------------------------------------------------------------------- /GPOCS/attachments/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/GPOCS/attachments/words.txt -------------------------------------------------------------------------------- /GPOCS/authors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/GPOCS/authors.txt -------------------------------------------------------------------------------- /GPOCS/challenge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/GPOCS/challenge.json -------------------------------------------------------------------------------- /GPOCS/checker/__main__.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/GPOCS/checker/__main__.sage -------------------------------------------------------------------------------- /GPOCS/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/GPOCS/description.md -------------------------------------------------------------------------------- /GPOCS/flags.txt: -------------------------------------------------------------------------------- 1 | flag{c4n_1_us3_fd1sk_t0_p4rt1t10n_my_k3ys?} 2 | -------------------------------------------------------------------------------- /GPOCS/points.txt: -------------------------------------------------------------------------------- 1 | 50,500,10 2 | -------------------------------------------------------------------------------- /GPOCS/presentation.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/GPOCS/presentation.pptx -------------------------------------------------------------------------------- /GPOCS/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/GPOCS/src/Dockerfile -------------------------------------------------------------------------------- /GPOCS/src/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/GPOCS/src/docker-compose.yml -------------------------------------------------------------------------------- /GPOCS/src/requirements.txt: -------------------------------------------------------------------------------- 1 | cffi==1.15.1 2 | cryptography==37.0.4 3 | pycparser==2.21 4 | -------------------------------------------------------------------------------- /GPOCS/src/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/GPOCS/src/server.py -------------------------------------------------------------------------------- /GPOCS/src/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/GPOCS/src/words.txt -------------------------------------------------------------------------------- /GPOCS/tags.txt: -------------------------------------------------------------------------------- 1 | crypto 2 | -------------------------------------------------------------------------------- /GPOCS/timeout.txt: -------------------------------------------------------------------------------- 1 | 10 -------------------------------------------------------------------------------- /GPOCS/title.txt: -------------------------------------------------------------------------------- 1 | GPOCS 2 | -------------------------------------------------------------------------------- /Goland/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/Goland/README.md -------------------------------------------------------------------------------- /Goland/attachments/goland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/Goland/attachments/goland -------------------------------------------------------------------------------- /Goland/authors.txt: -------------------------------------------------------------------------------- 1 | Simone Petroni (timetravel3) 2 | -------------------------------------------------------------------------------- /Goland/challenge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/Goland/challenge.json -------------------------------------------------------------------------------- /Goland/checker/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/Goland/checker/__main__.py -------------------------------------------------------------------------------- /Goland/checker/requirements.txt: -------------------------------------------------------------------------------- 1 | pwntools==4.8.0 -------------------------------------------------------------------------------- /Goland/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/Goland/description.md -------------------------------------------------------------------------------- /Goland/flags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/Goland/flags.txt -------------------------------------------------------------------------------- /Goland/points.txt: -------------------------------------------------------------------------------- 1 | 50,500,10 2 | -------------------------------------------------------------------------------- /Goland/presentation.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/Goland/presentation.pptx -------------------------------------------------------------------------------- /Goland/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/Goland/src/Dockerfile -------------------------------------------------------------------------------- /Goland/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/Goland/src/Makefile -------------------------------------------------------------------------------- /Goland/src/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/Goland/src/docker-compose.yml -------------------------------------------------------------------------------- /Goland/src/go.mod: -------------------------------------------------------------------------------- 1 | module main 2 | 3 | go 1.18 4 | -------------------------------------------------------------------------------- /Goland/src/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/Goland/src/main -------------------------------------------------------------------------------- /Goland/src/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/Goland/src/main.go -------------------------------------------------------------------------------- /Goland/tags.txt: -------------------------------------------------------------------------------- 1 | rev 2 | -------------------------------------------------------------------------------- /Goland/timeout.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /Goland/title.txt: -------------------------------------------------------------------------------- 1 | Alice's Adventures in Goland 2 | -------------------------------------------------------------------------------- /ImageStore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ImageStore/README.md -------------------------------------------------------------------------------- /ImageStore/attachments/imagestore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ImageStore/attachments/imagestore.py -------------------------------------------------------------------------------- /ImageStore/authors.txt: -------------------------------------------------------------------------------- 1 | Antonio Napolitano (napaalm) 2 | -------------------------------------------------------------------------------- /ImageStore/challenge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ImageStore/challenge.json -------------------------------------------------------------------------------- /ImageStore/checker/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ImageStore/checker/__main__.py -------------------------------------------------------------------------------- /ImageStore/checker/requirements.txt: -------------------------------------------------------------------------------- 1 | pwntools=4.8.0 -------------------------------------------------------------------------------- /ImageStore/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ImageStore/description.md -------------------------------------------------------------------------------- /ImageStore/flags.txt: -------------------------------------------------------------------------------- 1 | flag{d0nt_tru5t_M4gic_Byt3s} -------------------------------------------------------------------------------- /ImageStore/points.txt: -------------------------------------------------------------------------------- 1 | 50,500,10 2 | -------------------------------------------------------------------------------- /ImageStore/presentation.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ImageStore/presentation.pptx -------------------------------------------------------------------------------- /ImageStore/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ImageStore/src/Dockerfile -------------------------------------------------------------------------------- /ImageStore/src/challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ImageStore/src/challenge.py -------------------------------------------------------------------------------- /ImageStore/src/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ImageStore/src/docker-compose.yml -------------------------------------------------------------------------------- /ImageStore/src/flag: -------------------------------------------------------------------------------- 1 | flag{d0nt_tru5t_M4gic_Byt3s} -------------------------------------------------------------------------------- /ImageStore/src/nsjail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ImageStore/src/nsjail.cfg -------------------------------------------------------------------------------- /ImageStore/src/requirements.txt: -------------------------------------------------------------------------------- 1 | filetype==1.1.0 -------------------------------------------------------------------------------- /ImageStore/tags.txt: -------------------------------------------------------------------------------- 1 | misc 2 | -------------------------------------------------------------------------------- /ImageStore/timeout.txt: -------------------------------------------------------------------------------- 1 | 10 -------------------------------------------------------------------------------- /ImageStore/title.txt: -------------------------------------------------------------------------------- 1 | ImageStore 2 | -------------------------------------------------------------------------------- /ImageStore2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ImageStore2/README.md -------------------------------------------------------------------------------- /ImageStore2/attachments/imagestore2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ImageStore2/attachments/imagestore2.py -------------------------------------------------------------------------------- /ImageStore2/authors.txt: -------------------------------------------------------------------------------- 1 | Antonio Napolitano (napaalm) 2 | -------------------------------------------------------------------------------- /ImageStore2/challenge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ImageStore2/challenge.json -------------------------------------------------------------------------------- /ImageStore2/checker/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ImageStore2/checker/__main__.py -------------------------------------------------------------------------------- /ImageStore2/checker/requirements.txt: -------------------------------------------------------------------------------- 1 | pwntools=4.8.0 -------------------------------------------------------------------------------- /ImageStore2/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ImageStore2/description.md -------------------------------------------------------------------------------- /ImageStore2/flags.txt: -------------------------------------------------------------------------------- 1 | flag{uNZip_i5_w3ird_p01y9107_fi135_r_c001} -------------------------------------------------------------------------------- /ImageStore2/points.txt: -------------------------------------------------------------------------------- 1 | 50,500,10 2 | -------------------------------------------------------------------------------- /ImageStore2/presentation.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ImageStore2/presentation.pptx -------------------------------------------------------------------------------- /ImageStore2/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ImageStore2/src/Dockerfile -------------------------------------------------------------------------------- /ImageStore2/src/challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ImageStore2/src/challenge.py -------------------------------------------------------------------------------- /ImageStore2/src/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ImageStore2/src/docker-compose.yml -------------------------------------------------------------------------------- /ImageStore2/src/flag: -------------------------------------------------------------------------------- 1 | flag{uNZip_i5_w3ird_p01y9107_fi135_r_c001} -------------------------------------------------------------------------------- /ImageStore2/src/nsjail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ImageStore2/src/nsjail.cfg -------------------------------------------------------------------------------- /ImageStore2/src/requirements.txt: -------------------------------------------------------------------------------- 1 | Pillow -------------------------------------------------------------------------------- /ImageStore2/tags.txt: -------------------------------------------------------------------------------- 1 | misc 2 | -------------------------------------------------------------------------------- /ImageStore2/timeout.txt: -------------------------------------------------------------------------------- 1 | 10 -------------------------------------------------------------------------------- /ImageStore2/title.txt: -------------------------------------------------------------------------------- 1 | ImageStore2 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/LICENSE -------------------------------------------------------------------------------- /LazyPlatform/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ -------------------------------------------------------------------------------- /LazyPlatform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/LazyPlatform/README.md -------------------------------------------------------------------------------- /LazyPlatform/attachments/lazy-platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/LazyPlatform/attachments/lazy-platform.py -------------------------------------------------------------------------------- /LazyPlatform/authors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/LazyPlatform/authors.txt -------------------------------------------------------------------------------- /LazyPlatform/challenge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/LazyPlatform/challenge.json -------------------------------------------------------------------------------- /LazyPlatform/checker/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/LazyPlatform/checker/__main__.py -------------------------------------------------------------------------------- /LazyPlatform/checker/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/LazyPlatform/checker/requirements.txt -------------------------------------------------------------------------------- /LazyPlatform/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/LazyPlatform/description.md -------------------------------------------------------------------------------- /LazyPlatform/flags.txt: -------------------------------------------------------------------------------- 1 | flag{u53_s3cure_r4nd0m_numb3r_gen3r4t0rs} -------------------------------------------------------------------------------- /LazyPlatform/points.txt: -------------------------------------------------------------------------------- 1 | 50,500,10 2 | -------------------------------------------------------------------------------- /LazyPlatform/presentation.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/LazyPlatform/presentation.pptx -------------------------------------------------------------------------------- /LazyPlatform/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/LazyPlatform/src/Dockerfile -------------------------------------------------------------------------------- /LazyPlatform/src/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/LazyPlatform/src/docker-compose.yml -------------------------------------------------------------------------------- /LazyPlatform/src/requirements.txt: -------------------------------------------------------------------------------- 1 | pycryptodome==3.15.0 -------------------------------------------------------------------------------- /LazyPlatform/src/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/LazyPlatform/src/server.py -------------------------------------------------------------------------------- /LazyPlatform/tags.txt: -------------------------------------------------------------------------------- 1 | crypto -------------------------------------------------------------------------------- /LazyPlatform/timeout.txt: -------------------------------------------------------------------------------- 1 | 10 -------------------------------------------------------------------------------- /LazyPlatform/title.txt: -------------------------------------------------------------------------------- 1 | Lazy platform -------------------------------------------------------------------------------- /MMM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/MMM/README.md -------------------------------------------------------------------------------- /MMM/attachments/m3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/MMM/attachments/m3 -------------------------------------------------------------------------------- /MMM/authors.txt: -------------------------------------------------------------------------------- 1 | Mario Del Gaudio (hdesk) -------------------------------------------------------------------------------- /MMM/challenge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/MMM/challenge.json -------------------------------------------------------------------------------- /MMM/checker/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/MMM/checker/__main__.py -------------------------------------------------------------------------------- /MMM/checker/m3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/MMM/checker/m3 -------------------------------------------------------------------------------- /MMM/checker/requirements.txt: -------------------------------------------------------------------------------- 1 | pwntools==4.8.0 -------------------------------------------------------------------------------- /MMM/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/MMM/description.md -------------------------------------------------------------------------------- /MMM/flags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/MMM/flags.txt -------------------------------------------------------------------------------- /MMM/points.txt: -------------------------------------------------------------------------------- 1 | 50,500,10 2 | -------------------------------------------------------------------------------- /MMM/presentation.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/MMM/presentation.pptx -------------------------------------------------------------------------------- /MMM/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/MMM/src/Dockerfile -------------------------------------------------------------------------------- /MMM/src/Makefile: -------------------------------------------------------------------------------- 1 | build: 2 | gcc main.c -s -O0 -o m3 3 | -------------------------------------------------------------------------------- /MMM/src/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/MMM/src/docker-compose.yml -------------------------------------------------------------------------------- /MMM/src/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/MMM/src/flag.txt -------------------------------------------------------------------------------- /MMM/src/m3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/MMM/src/m3 -------------------------------------------------------------------------------- /MMM/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/MMM/src/main.c -------------------------------------------------------------------------------- /MMM/tags.txt: -------------------------------------------------------------------------------- 1 | pwn -------------------------------------------------------------------------------- /MMM/timeout.txt: -------------------------------------------------------------------------------- 1 | 30 -------------------------------------------------------------------------------- /MMM/title.txt: -------------------------------------------------------------------------------- 1 | Mario's Metaverse Marketplace -------------------------------------------------------------------------------- /MMM/writeup_res/heap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/MMM/writeup_res/heap.png -------------------------------------------------------------------------------- /MMM/writeup_res/toctou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/MMM/writeup_res/toctou.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/README.md -------------------------------------------------------------------------------- /RedSaffron/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/README.md -------------------------------------------------------------------------------- /RedSaffron/attachments/red-saffron.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/attachments/red-saffron.zip -------------------------------------------------------------------------------- /RedSaffron/authors.txt: -------------------------------------------------------------------------------- 1 | Stefano Alberto (xatophi) -------------------------------------------------------------------------------- /RedSaffron/challenge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/challenge.json -------------------------------------------------------------------------------- /RedSaffron/checker/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/checker/__main__.py -------------------------------------------------------------------------------- /RedSaffron/checker/attacker_server/.gitignore: -------------------------------------------------------------------------------- 1 | csrf_recipe_id.txt -------------------------------------------------------------------------------- /RedSaffron/checker/attacker_server/csrf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/checker/attacker_server/csrf.php -------------------------------------------------------------------------------- /RedSaffron/checker/attacker_server/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/checker/attacker_server/index.php -------------------------------------------------------------------------------- /RedSaffron/checker/attacker_server/start.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/checker/attacker_server/start.php -------------------------------------------------------------------------------- /RedSaffron/checker/requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.28.1 -------------------------------------------------------------------------------- /RedSaffron/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/description.md -------------------------------------------------------------------------------- /RedSaffron/flags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/flags.txt -------------------------------------------------------------------------------- /RedSaffron/points.txt: -------------------------------------------------------------------------------- 1 | 50,500,10 2 | -------------------------------------------------------------------------------- /RedSaffron/presentation.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/presentation.pptx -------------------------------------------------------------------------------- /RedSaffron/src/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /RedSaffron/src/blog/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /RedSaffron/src/blog/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/src/blog/Dockerfile -------------------------------------------------------------------------------- /RedSaffron/src/blog/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/src/blog/package-lock.json -------------------------------------------------------------------------------- /RedSaffron/src/blog/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/src/blog/package.json -------------------------------------------------------------------------------- /RedSaffron/src/blog/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/src/blog/server.js -------------------------------------------------------------------------------- /RedSaffron/src/blog/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/src/blog/static/logo.png -------------------------------------------------------------------------------- /RedSaffron/src/blog/static/pizza.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/src/blog/static/pizza.jpeg -------------------------------------------------------------------------------- /RedSaffron/src/blog/views/buyad.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/src/blog/views/buyad.ejs -------------------------------------------------------------------------------- /RedSaffron/src/blog/views/cb.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/src/blog/views/cb.ejs -------------------------------------------------------------------------------- /RedSaffron/src/blog/views/error.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/src/blog/views/error.ejs -------------------------------------------------------------------------------- /RedSaffron/src/blog/views/footer.ejs: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /RedSaffron/src/blog/views/header.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/src/blog/views/header.ejs -------------------------------------------------------------------------------- /RedSaffron/src/blog/views/home.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/src/blog/views/home.ejs -------------------------------------------------------------------------------- /RedSaffron/src/blog/views/me.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/src/blog/views/me.ejs -------------------------------------------------------------------------------- /RedSaffron/src/blog/views/new_recipe.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/src/blog/views/new_recipe.ejs -------------------------------------------------------------------------------- /RedSaffron/src/blog/views/recipe.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/src/blog/views/recipe.ejs -------------------------------------------------------------------------------- /RedSaffron/src/blog/views/recipe_list.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/src/blog/views/recipe_list.ejs -------------------------------------------------------------------------------- /RedSaffron/src/blog/views/registered.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/src/blog/views/registered.ejs -------------------------------------------------------------------------------- /RedSaffron/src/blog/views/report.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/src/blog/views/report.ejs -------------------------------------------------------------------------------- /RedSaffron/src/blog/views/reported.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/src/blog/views/reported.ejs -------------------------------------------------------------------------------- /RedSaffron/src/bot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/src/bot/Dockerfile -------------------------------------------------------------------------------- /RedSaffron/src/bot/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/src/bot/bot.js -------------------------------------------------------------------------------- /RedSaffron/src/bot/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/src/bot/package-lock.json -------------------------------------------------------------------------------- /RedSaffron/src/bot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/src/bot/package.json -------------------------------------------------------------------------------- /RedSaffron/src/bot/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/src/bot/server.js -------------------------------------------------------------------------------- /RedSaffron/src/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/src/docker-compose.yml -------------------------------------------------------------------------------- /RedSaffron/src/uauth/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /RedSaffron/src/uauth/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/src/uauth/Dockerfile -------------------------------------------------------------------------------- /RedSaffron/src/uauth/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/src/uauth/package-lock.json -------------------------------------------------------------------------------- /RedSaffron/src/uauth/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/src/uauth/package.json -------------------------------------------------------------------------------- /RedSaffron/src/uauth/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/src/uauth/server.js -------------------------------------------------------------------------------- /RedSaffron/src/uauth/views/footer.ejs: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /RedSaffron/src/uauth/views/header.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/src/uauth/views/header.ejs -------------------------------------------------------------------------------- /RedSaffron/src/uauth/views/login.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/src/uauth/views/login.ejs -------------------------------------------------------------------------------- /RedSaffron/src/uauth/views/register.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/RedSaffron/src/uauth/views/register.ejs -------------------------------------------------------------------------------- /RedSaffron/tags.txt: -------------------------------------------------------------------------------- 1 | web -------------------------------------------------------------------------------- /RedSaffron/timeout.txt: -------------------------------------------------------------------------------- 1 | 25 -------------------------------------------------------------------------------- /RedSaffron/title.txt: -------------------------------------------------------------------------------- 1 | Red Saffron -------------------------------------------------------------------------------- /SafePizzaOrders/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SafePizzaOrders/.gitignore -------------------------------------------------------------------------------- /SafePizzaOrders/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SafePizzaOrders/README.md -------------------------------------------------------------------------------- /SafePizzaOrders/attachments/safe_pizza_orders.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SafePizzaOrders/attachments/safe_pizza_orders.zip -------------------------------------------------------------------------------- /SafePizzaOrders/attachments/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SafePizzaOrders/attachments/template.py -------------------------------------------------------------------------------- /SafePizzaOrders/authors.txt: -------------------------------------------------------------------------------- 1 | Domingo Dirutigliano (DomySh) -------------------------------------------------------------------------------- /SafePizzaOrders/challenge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SafePizzaOrders/challenge.json -------------------------------------------------------------------------------- /SafePizzaOrders/checker/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SafePizzaOrders/checker/__main__.py -------------------------------------------------------------------------------- /SafePizzaOrders/checker/requirements.txt: -------------------------------------------------------------------------------- 1 | pwntools==4.8.0 -------------------------------------------------------------------------------- /SafePizzaOrders/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SafePizzaOrders/description.md -------------------------------------------------------------------------------- /SafePizzaOrders/flags.txt: -------------------------------------------------------------------------------- 1 | flag{$3cur1ty_w4s_NEVER_an_0pt10n} -------------------------------------------------------------------------------- /SafePizzaOrders/points.txt: -------------------------------------------------------------------------------- 1 | 50,500,10 2 | -------------------------------------------------------------------------------- /SafePizzaOrders/presentation.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SafePizzaOrders/presentation.pptx -------------------------------------------------------------------------------- /SafePizzaOrders/src/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SafePizzaOrders/src/.dockerignore -------------------------------------------------------------------------------- /SafePizzaOrders/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SafePizzaOrders/src/Dockerfile -------------------------------------------------------------------------------- /SafePizzaOrders/src/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SafePizzaOrders/src/banner.txt -------------------------------------------------------------------------------- /SafePizzaOrders/src/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SafePizzaOrders/src/chall -------------------------------------------------------------------------------- /SafePizzaOrders/src/chall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SafePizzaOrders/src/chall.c -------------------------------------------------------------------------------- /SafePizzaOrders/src/ctf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SafePizzaOrders/src/ctf.sh -------------------------------------------------------------------------------- /SafePizzaOrders/src/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SafePizzaOrders/src/docker-compose.yml -------------------------------------------------------------------------------- /SafePizzaOrders/src/laproxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SafePizzaOrders/src/laproxy.cpp -------------------------------------------------------------------------------- /SafePizzaOrders/src/pizza_secret_recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SafePizzaOrders/src/pizza_secret_recipe -------------------------------------------------------------------------------- /SafePizzaOrders/src/pow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SafePizzaOrders/src/pow.py -------------------------------------------------------------------------------- /SafePizzaOrders/src/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SafePizzaOrders/src/supervisord.conf -------------------------------------------------------------------------------- /SafePizzaOrders/src/xinetd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SafePizzaOrders/src/xinetd.conf -------------------------------------------------------------------------------- /SafePizzaOrders/tags.txt: -------------------------------------------------------------------------------- 1 | pwn -------------------------------------------------------------------------------- /SafePizzaOrders/timeout.txt: -------------------------------------------------------------------------------- 1 | 10 -------------------------------------------------------------------------------- /SafePizzaOrders/title.txt: -------------------------------------------------------------------------------- 1 | Safe Pizza Orders 2 | -------------------------------------------------------------------------------- /ScheiChecker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/.gitignore -------------------------------------------------------------------------------- /ScheiChecker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/README.md -------------------------------------------------------------------------------- /ScheiChecker/attachments/schei-checker.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/attachments/schei-checker.zip -------------------------------------------------------------------------------- /ScheiChecker/authors.txt: -------------------------------------------------------------------------------- 1 | Jacopo Di Pumpo (shishcat) -------------------------------------------------------------------------------- /ScheiChecker/challenge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/challenge.json -------------------------------------------------------------------------------- /ScheiChecker/checker/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/checker/__main__.py -------------------------------------------------------------------------------- /ScheiChecker/checker/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/checker/requirements.txt -------------------------------------------------------------------------------- /ScheiChecker/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/description.md -------------------------------------------------------------------------------- /ScheiChecker/flags.txt: -------------------------------------------------------------------------------- 1 | flag{number_!1_f4n_0f_H77P_R3dis} -------------------------------------------------------------------------------- /ScheiChecker/points.txt: -------------------------------------------------------------------------------- 1 | 50,500,10 2 | -------------------------------------------------------------------------------- /ScheiChecker/presentation.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/presentation.pptx -------------------------------------------------------------------------------- /ScheiChecker/src/.example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/.example.env -------------------------------------------------------------------------------- /ScheiChecker/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/README.md -------------------------------------------------------------------------------- /ScheiChecker/src/backend/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log -------------------------------------------------------------------------------- /ScheiChecker/src/backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/backend/Dockerfile -------------------------------------------------------------------------------- /ScheiChecker/src/backend/config.example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/backend/config.example.js -------------------------------------------------------------------------------- /ScheiChecker/src/backend/configChecker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/backend/configChecker.js -------------------------------------------------------------------------------- /ScheiChecker/src/backend/html/adminpanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/backend/html/adminpanel.html -------------------------------------------------------------------------------- /ScheiChecker/src/backend/html/assets/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/backend/html/assets/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /ScheiChecker/src/backend/html/assets/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/backend/html/assets/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /ScheiChecker/src/backend/html/assets/css/styles.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/backend/html/assets/css/styles.min.css -------------------------------------------------------------------------------- /ScheiChecker/src/backend/html/assets/fonts/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7SUc.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/backend/html/assets/fonts/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7SUc.woff2 -------------------------------------------------------------------------------- /ScheiChecker/src/backend/html/assets/fonts/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/backend/html/assets/fonts/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2 -------------------------------------------------------------------------------- /ScheiChecker/src/backend/html/assets/fonts/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7SUc.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/backend/html/assets/fonts/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7SUc.woff2 -------------------------------------------------------------------------------- /ScheiChecker/src/backend/html/assets/fonts/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7SUc.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/backend/html/assets/fonts/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7SUc.woff2 -------------------------------------------------------------------------------- /ScheiChecker/src/backend/html/assets/fonts/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7SUc.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/backend/html/assets/fonts/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7SUc.woff2 -------------------------------------------------------------------------------- /ScheiChecker/src/backend/html/assets/fonts/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7SUc.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/backend/html/assets/fonts/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7SUc.woff2 -------------------------------------------------------------------------------- /ScheiChecker/src/backend/html/assets/fonts/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7SUc.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/backend/html/assets/fonts/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7SUc.woff2 -------------------------------------------------------------------------------- /ScheiChecker/src/backend/html/assets/img/block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/backend/html/assets/img/block.png -------------------------------------------------------------------------------- /ScheiChecker/src/backend/html/assets/img/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/backend/html/assets/img/check.png -------------------------------------------------------------------------------- /ScheiChecker/src/backend/html/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/backend/html/assets/img/logo.png -------------------------------------------------------------------------------- /ScheiChecker/src/backend/html/assets/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/backend/html/assets/js/jquery.min.js -------------------------------------------------------------------------------- /ScheiChecker/src/backend/html/assets/js/script.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/backend/html/assets/js/script.min.js -------------------------------------------------------------------------------- /ScheiChecker/src/backend/html/assets/js/sitecode/adminpanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/backend/html/assets/js/sitecode/adminpanel.js -------------------------------------------------------------------------------- /ScheiChecker/src/backend/html/assets/js/sitecode/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/backend/html/assets/js/sitecode/index.js -------------------------------------------------------------------------------- /ScheiChecker/src/backend/html/assets/js/sitecode/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/backend/html/assets/js/sitecode/login.js -------------------------------------------------------------------------------- /ScheiChecker/src/backend/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/backend/html/index.html -------------------------------------------------------------------------------- /ScheiChecker/src/backend/html/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/backend/html/login.html -------------------------------------------------------------------------------- /ScheiChecker/src/backend/html/tooManyAttempts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/backend/html/tooManyAttempts.html -------------------------------------------------------------------------------- /ScheiChecker/src/backend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/backend/index.js -------------------------------------------------------------------------------- /ScheiChecker/src/backend/modules/admin-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/backend/modules/admin-api.js -------------------------------------------------------------------------------- /ScheiChecker/src/backend/modules/prices-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/backend/modules/prices-api.js -------------------------------------------------------------------------------- /ScheiChecker/src/backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/backend/package-lock.json -------------------------------------------------------------------------------- /ScheiChecker/src/backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/backend/package.json -------------------------------------------------------------------------------- /ScheiChecker/src/backend/utils/jwt-auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/backend/utils/jwt-auth.js -------------------------------------------------------------------------------- /ScheiChecker/src/backend/utils/prices-request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/backend/utils/prices-request.js -------------------------------------------------------------------------------- /ScheiChecker/src/backend/utils/serialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/backend/utils/serialize.js -------------------------------------------------------------------------------- /ScheiChecker/src/backend/utils/visits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/backend/utils/visits.js -------------------------------------------------------------------------------- /ScheiChecker/src/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/docker-compose.yml -------------------------------------------------------------------------------- /ScheiChecker/src/example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/example.env -------------------------------------------------------------------------------- /ScheiChecker/src/generate_attachment_zip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/generate_attachment_zip.sh -------------------------------------------------------------------------------- /ScheiChecker/src/generate_config_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/generate_config_files.sh -------------------------------------------------------------------------------- /ScheiChecker/src/prices-cache/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log -------------------------------------------------------------------------------- /ScheiChecker/src/prices-cache/CoinMarketCap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/prices-cache/CoinMarketCap.js -------------------------------------------------------------------------------- /ScheiChecker/src/prices-cache/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/prices-cache/Dockerfile -------------------------------------------------------------------------------- /ScheiChecker/src/prices-cache/cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/prices-cache/cache.js -------------------------------------------------------------------------------- /ScheiChecker/src/prices-cache/config.example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/prices-cache/config.example.js -------------------------------------------------------------------------------- /ScheiChecker/src/prices-cache/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/prices-cache/index.js -------------------------------------------------------------------------------- /ScheiChecker/src/prices-cache/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/prices-cache/package-lock.json -------------------------------------------------------------------------------- /ScheiChecker/src/prices-cache/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/prices-cache/package.json -------------------------------------------------------------------------------- /ScheiChecker/src/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/ScheiChecker/src/redis.conf -------------------------------------------------------------------------------- /ScheiChecker/tags.txt: -------------------------------------------------------------------------------- 1 | web -------------------------------------------------------------------------------- /ScheiChecker/timeout.txt: -------------------------------------------------------------------------------- 1 | 10 -------------------------------------------------------------------------------- /ScheiChecker/title.txt: -------------------------------------------------------------------------------- 1 | Schei Checker -------------------------------------------------------------------------------- /SpaghettiVM/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | node_modules 4 | gen 5 | -------------------------------------------------------------------------------- /SpaghettiVM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SpaghettiVM/README.md -------------------------------------------------------------------------------- /SpaghettiVM/attachments/svm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SpaghettiVM/attachments/svm.js -------------------------------------------------------------------------------- /SpaghettiVM/authors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SpaghettiVM/authors.txt -------------------------------------------------------------------------------- /SpaghettiVM/challenge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SpaghettiVM/challenge.json -------------------------------------------------------------------------------- /SpaghettiVM/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SpaghettiVM/description.md -------------------------------------------------------------------------------- /SpaghettiVM/flags.txt: -------------------------------------------------------------------------------- 1 | flag{J4va5cr1pt_vm5_4r3_s0_ea5y} -------------------------------------------------------------------------------- /SpaghettiVM/points.txt: -------------------------------------------------------------------------------- 1 | 50,500,10 2 | -------------------------------------------------------------------------------- /SpaghettiVM/presentation.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SpaghettiVM/presentation.pptx -------------------------------------------------------------------------------- /SpaghettiVM/src/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SpaghettiVM/src/.prettierrc -------------------------------------------------------------------------------- /SpaghettiVM/src/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SpaghettiVM/src/builder.ts -------------------------------------------------------------------------------- /SpaghettiVM/src/chall/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SpaghettiVM/src/chall/index.ts -------------------------------------------------------------------------------- /SpaghettiVM/src/chall/key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SpaghettiVM/src/chall/key.ts -------------------------------------------------------------------------------- /SpaghettiVM/src/examples/echo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SpaghettiVM/src/examples/echo.ts -------------------------------------------------------------------------------- /SpaghettiVM/src/examples/hello-world-1337.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SpaghettiVM/src/examples/hello-world-1337.ts -------------------------------------------------------------------------------- /SpaghettiVM/src/examples/hello-world-infinite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SpaghettiVM/src/examples/hello-world-infinite.ts -------------------------------------------------------------------------------- /SpaghettiVM/src/examples/hello-world.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SpaghettiVM/src/examples/hello-world.ts -------------------------------------------------------------------------------- /SpaghettiVM/src/id-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SpaghettiVM/src/id-helper.ts -------------------------------------------------------------------------------- /SpaghettiVM/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SpaghettiVM/src/index.ts -------------------------------------------------------------------------------- /SpaghettiVM/src/instructions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SpaghettiVM/src/instructions.ts -------------------------------------------------------------------------------- /SpaghettiVM/src/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SpaghettiVM/src/package-lock.json -------------------------------------------------------------------------------- /SpaghettiVM/src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SpaghettiVM/src/package.json -------------------------------------------------------------------------------- /SpaghettiVM/src/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SpaghettiVM/src/parser.ts -------------------------------------------------------------------------------- /SpaghettiVM/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SpaghettiVM/src/tsconfig.json -------------------------------------------------------------------------------- /SpaghettiVM/tags.txt: -------------------------------------------------------------------------------- 1 | rev 2 | -------------------------------------------------------------------------------- /SpaghettiVM/title.txt: -------------------------------------------------------------------------------- 1 | Spaghetti VM -------------------------------------------------------------------------------- /SpeakingWithHands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SpeakingWithHands/README.md -------------------------------------------------------------------------------- /SpeakingWithHands/attachments/translator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SpeakingWithHands/attachments/translator -------------------------------------------------------------------------------- /SpeakingWithHands/authors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SpeakingWithHands/authors.txt -------------------------------------------------------------------------------- /SpeakingWithHands/challenge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SpeakingWithHands/challenge.json -------------------------------------------------------------------------------- /SpeakingWithHands/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SpeakingWithHands/description.md -------------------------------------------------------------------------------- /SpeakingWithHands/flags.txt: -------------------------------------------------------------------------------- 1 | flag{C0n92H4nd5!9376} -------------------------------------------------------------------------------- /SpeakingWithHands/points.txt: -------------------------------------------------------------------------------- 1 | 50,500,10 2 | -------------------------------------------------------------------------------- /SpeakingWithHands/presentation.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SpeakingWithHands/presentation.pptx -------------------------------------------------------------------------------- /SpeakingWithHands/src/.gitignore: -------------------------------------------------------------------------------- 1 | challenge 2 | tmp.bin 3 | bin.h -------------------------------------------------------------------------------- /SpeakingWithHands/src/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SpeakingWithHands/src/build.py -------------------------------------------------------------------------------- /SpeakingWithHands/src/code.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SpeakingWithHands/src/code.asm -------------------------------------------------------------------------------- /SpeakingWithHands/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SpeakingWithHands/src/main.c -------------------------------------------------------------------------------- /SpeakingWithHands/src/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/SpeakingWithHands/src/solve.py -------------------------------------------------------------------------------- /SpeakingWithHands/tags.txt: -------------------------------------------------------------------------------- 1 | rev 2 | -------------------------------------------------------------------------------- /SpeakingWithHands/title.txt: -------------------------------------------------------------------------------- 1 | Speaking with hands -------------------------------------------------------------------------------- /TheMissingHalf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/TheMissingHalf/README.md -------------------------------------------------------------------------------- /TheMissingHalf/attachments/missing-half.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/TheMissingHalf/attachments/missing-half.out -------------------------------------------------------------------------------- /TheMissingHalf/attachments/missing-half.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/TheMissingHalf/attachments/missing-half.py -------------------------------------------------------------------------------- /TheMissingHalf/authors.txt: -------------------------------------------------------------------------------- 1 | Elia Cal (Elius) -------------------------------------------------------------------------------- /TheMissingHalf/challenge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/TheMissingHalf/challenge.json -------------------------------------------------------------------------------- /TheMissingHalf/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/TheMissingHalf/description.md -------------------------------------------------------------------------------- /TheMissingHalf/flags.txt: -------------------------------------------------------------------------------- 1 | flag{Sh3_i3_h1ding_in_P0l4nd} -------------------------------------------------------------------------------- /TheMissingHalf/points.txt: -------------------------------------------------------------------------------- 1 | 50,500,10 2 | -------------------------------------------------------------------------------- /TheMissingHalf/presentation.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/TheMissingHalf/presentation.pptx -------------------------------------------------------------------------------- /TheMissingHalf/solver/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/TheMissingHalf/solver/out.txt -------------------------------------------------------------------------------- /TheMissingHalf/solver/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/TheMissingHalf/solver/solve.py -------------------------------------------------------------------------------- /TheMissingHalf/src/missing-half.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/TheMissingHalf/src/missing-half.out -------------------------------------------------------------------------------- /TheMissingHalf/src/missing-half.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/TheMissingHalf/src/missing-half.py -------------------------------------------------------------------------------- /TheMissingHalf/tags.txt: -------------------------------------------------------------------------------- 1 | crypto -------------------------------------------------------------------------------- /TheMissingHalf/title.txt: -------------------------------------------------------------------------------- 1 | The missing half -------------------------------------------------------------------------------- /data/scoreboard.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/data/scoreboard.csv -------------------------------------------------------------------------------- /data/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/data/scoreboard.json -------------------------------------------------------------------------------- /data/submissions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/data/submissions.csv -------------------------------------------------------------------------------- /docker-compose.dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/docker-compose.dev.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /images/cybersecnatlab-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/images/cybersecnatlab-logo.png -------------------------------------------------------------------------------- /images/scoreboard-top10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/images/scoreboard-top10.png -------------------------------------------------------------------------------- /images/scoreboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/images/scoreboard.png -------------------------------------------------------------------------------- /images/solves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/images/solves.png -------------------------------------------------------------------------------- /images/teamitaly-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/images/teamitaly-logo.png -------------------------------------------------------------------------------- /kreap/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | build 3 | checker/__pycache__ -------------------------------------------------------------------------------- /kreap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/kreap/Makefile -------------------------------------------------------------------------------- /kreap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/kreap/README.md -------------------------------------------------------------------------------- /kreap/attachments/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/kreap/attachments/chall -------------------------------------------------------------------------------- /kreap/attachments/kreap.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/kreap/attachments/kreap.ko -------------------------------------------------------------------------------- /kreap/authors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/kreap/authors.txt -------------------------------------------------------------------------------- /kreap/challenge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/kreap/challenge.json -------------------------------------------------------------------------------- /kreap/checker/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/kreap/checker/__main__.py -------------------------------------------------------------------------------- /kreap/checker/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/kreap/checker/chall -------------------------------------------------------------------------------- /kreap/checker/requirements.txt: -------------------------------------------------------------------------------- 1 | pwntools==4.8.0 -------------------------------------------------------------------------------- /kreap/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/kreap/description.md -------------------------------------------------------------------------------- /kreap/flags.txt: -------------------------------------------------------------------------------- 1 | flag{N3xt_t1m3_1_7h1nk_i'l1_g0_w17h_l1bc_h34p!!} -------------------------------------------------------------------------------- /kreap/points.txt: -------------------------------------------------------------------------------- 1 | 50,500,10 2 | -------------------------------------------------------------------------------- /kreap/presentation.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/kreap/presentation.pptx -------------------------------------------------------------------------------- /kreap/src/31-kreap.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/kreap/src/31-kreap.rules -------------------------------------------------------------------------------- /kreap/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/kreap/src/Dockerfile -------------------------------------------------------------------------------- /kreap/src/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/kreap/src/chall -------------------------------------------------------------------------------- /kreap/src/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/kreap/src/docker-compose.yml -------------------------------------------------------------------------------- /kreap/src/flag.txt: -------------------------------------------------------------------------------- 1 | flag{N3xt_t1m3_1_7h1nk_i'l1_g0_w17h_l1bc_h34p!!} -------------------------------------------------------------------------------- /kreap/src/kernel/kreap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/kreap/src/kernel/kreap.c -------------------------------------------------------------------------------- /kreap/src/kreap.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/kreap/src/kreap.ko -------------------------------------------------------------------------------- /kreap/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/kreap/src/main.c -------------------------------------------------------------------------------- /kreap/src/setup_vm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/kreap/src/setup_vm.sh -------------------------------------------------------------------------------- /kreap/src/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/kreap/src/start.sh -------------------------------------------------------------------------------- /kreap/src/test/maintest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/kreap/src/test/maintest.c -------------------------------------------------------------------------------- /kreap/src/test/read_all_sectors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/kreap/src/test/read_all_sectors.c -------------------------------------------------------------------------------- /kreap/src/test/test_full.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/kreap/src/test/test_full.c -------------------------------------------------------------------------------- /kreap/src/test/test_map_block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/kreap/src/test/test_map_block.c -------------------------------------------------------------------------------- /kreap/src/test/test_multiple_open_chrdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/kreap/src/test/test_multiple_open_chrdev.c -------------------------------------------------------------------------------- /kreap/tags.txt: -------------------------------------------------------------------------------- 1 | pwn -------------------------------------------------------------------------------- /kreap/timeout.txt: -------------------------------------------------------------------------------- 1 | 60 -------------------------------------------------------------------------------- /kreap/title.txt: -------------------------------------------------------------------------------- 1 | kreap -------------------------------------------------------------------------------- /kreap/writeup_images/0_init_array.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/kreap/writeup_images/0_init_array.png -------------------------------------------------------------------------------- /kreap/writeup_images/1_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamItaly/TeamItalyCTF-2022/HEAD/kreap/writeup_images/1_menu.png --------------------------------------------------------------------------------