├── README.md ├── assets ├── banner.png ├── htb.png └── logo_htb.png ├── blockchain ├── Lucky Faucet [Easy] │ ├── README.md │ └── htb │ │ └── solver.py ├── Recovery [Easy] │ ├── README.md │ └── assets │ │ ├── CA_banner.jpg │ │ ├── btc_sent.png │ │ ├── electrum_download.png │ │ ├── electrum_importseed.png │ │ ├── electrum_newwallet.png │ │ ├── electrum_server.png │ │ ├── flag.png │ │ ├── hacktheboo_banner.jpg │ │ ├── sending_btc_back.png │ │ ├── ssh_access.png │ │ └── stolen_bitcoin.png └── Russian Roulette [Very Easy] │ ├── README.md │ ├── assets │ └── CA_banner.jpg │ └── htb │ └── solver.py ├── crypto ├── [Easy] Blunt │ ├── README.md │ └── htb │ │ └── solve.sage ├── [Easy] Iced Tea │ ├── Makefile │ ├── README.md │ └── htb │ │ ├── output.txt │ │ └── solver.py ├── [Hard] Permuted │ ├── README.md │ └── htb │ │ ├── secret.py │ │ └── solve.py ├── [Hard] Tsayaki │ ├── Makefile │ ├── README.md │ └── htb │ │ ├── solver.py │ │ └── tea.py ├── [Insane] ROT128 │ ├── Makefile │ ├── README.md │ └── htb │ │ └── solver.sage ├── [Medium] Arranged │ ├── README.md │ └── htb │ │ └── solve.sage ├── [Medium] Partial Tenacity │ ├── Makefile │ ├── README.md │ └── htb │ │ ├── output.txt │ │ └── solver.py ├── [Very Easy] Dynastic │ ├── Makefile │ ├── README.md │ └── htb │ │ ├── output.txt │ │ └── solver.py ├── [Very Easy] Makeshift │ ├── README.md │ └── htb │ │ └── solve.py └── [Very Easy] Primary Knowledge │ ├── Makefile │ ├── README.md │ └── htb │ ├── output.txt │ └── solver.py ├── forensics ├── .gitkeep ├── [Easy] Fake Boost │ ├── Readme.md │ └── assets │ │ ├── banner.png │ │ ├── htb.png │ │ ├── writeup1.png │ │ ├── writeup2.png │ │ └── writeup3.png ├── [Easy] Persue The Tracks │ ├── README.md │ └── assets │ │ └── images │ │ ├── banner.png │ │ ├── htb.png │ │ ├── q1.png │ │ ├── q2.png │ │ ├── q3.png │ │ ├── q4.png │ │ ├── q5.png │ │ ├── q6.png │ │ ├── q7.png │ │ ├── q8.png │ │ └── q9.png ├── [Hard] Confinement │ ├── README.md │ └── assets │ │ ├── banner.png │ │ ├── chainsaw.png │ │ ├── cyberchef.png │ │ ├── decrypt-quarantine-file.png │ │ ├── decrypt.png │ │ ├── firstlook.png │ │ ├── flag.png │ │ ├── htb.png │ │ ├── intel-prefetch.png │ │ ├── intel-securitylog.png │ │ ├── log-quarantine.png │ │ ├── pwsh-command1.png │ │ ├── pwsh-command2.png │ │ ├── pwshlog.png │ │ ├── ransomnote.png │ │ ├── rev2.png │ │ ├── rev3.png │ │ └── rev4.png ├── [Hard] Game Invitation │ ├── README.md │ └── assets │ │ ├── banner.png │ │ ├── cyberchef.png │ │ ├── flag.png │ │ ├── htb.png │ │ ├── step_one.png │ │ ├── step_two.png │ │ └── step_two_beautified.png ├── [Insane] Oblique Final │ ├── Readme.md │ └── assets │ │ ├── banner.png │ │ ├── cor20.png │ │ ├── dnspy_debug_options.png │ │ ├── dotpeek.png │ │ ├── hexedit.png │ │ ├── htb.png │ │ ├── ilspy.png │ │ ├── r2r.png │ │ ├── shellcode_range.png │ │ └── tabs.png ├── [Medium] Data Siege │ ├── README.md │ └── assets │ │ └── images │ │ ├── banner.png │ │ └── htb.png ├── [Medium] Phreaky │ ├── Assets │ │ ├── Images │ │ │ ├── banner.png │ │ │ ├── example.png │ │ │ ├── htb.png │ │ │ └── shell.png │ │ ├── image-20240307210526796.png │ │ ├── image-20240307210539350.png │ │ ├── image-20240307210553102.png │ │ ├── image-20240307210648805.png │ │ ├── image-20240307210826562.png │ │ ├── image-20240307211242055.png │ │ ├── image-20240307211425321.png │ │ ├── image-20240307211518078.png │ │ ├── image-20240307211611787.png │ │ └── image-20240307211632474.png │ └── README.md ├── [Very Easy] An unusual sighting │ ├── README.md │ └── assets │ │ ├── banner.png │ │ └── htb.png ├── [Very Easy] It Has Begun │ ├── Readme.md │ └── assets │ │ ├── banner.png │ │ ├── htb.png │ │ └── image.png └── [Very Easy] Urgent │ ├── README.md │ └── assets │ ├── banner.png │ ├── conv.png │ ├── conv_full.png │ ├── cyberchef1.png │ ├── cyberchef2.png │ ├── flag.png │ ├── htb.png │ └── html.png ├── hw ├── BunnyPass [Very Easy] │ ├── README.md │ ├── assets │ │ ├── get_msg_1.png │ │ ├── get_msg_2.png │ │ ├── get_msg_3.png │ │ ├── loginpage.png │ │ ├── page_1.png │ │ ├── queues2.png │ │ └── rabbitmq.png │ └── entrypoint.sh ├── Flash-ing Logs [Hard] │ ├── README.md │ ├── assets │ │ ├── W25Q128.png │ │ ├── datahsheet_2.png │ │ ├── datasheet_1.png │ │ ├── datasheet_3_instructions.png │ │ ├── datasheet_3_instructions_2.png │ │ ├── flow_1.png │ │ ├── instruction_erase_sector.png │ │ ├── instruction_page_program.png │ │ ├── instruction_read.png │ │ ├── instruction_read_sec_reg.png │ │ ├── instruction_write_enable.png │ │ └── winbond.png │ └── htb │ │ └── solver.py ├── Maze [Very Easy] │ ├── Makefile │ ├── README.md │ └── assets │ │ └── image-20240314210808496.png ├── Rids [Easy] │ ├── README.md │ ├── assets │ │ ├── W25Q128.png │ │ ├── datahsheet_2.png │ │ ├── datasheet_1.png │ │ ├── instruction_read.png │ │ ├── read.png │ │ └── winbond.png │ └── htb │ │ └── solver.py └── The PROM [Medium] │ ├── README.md │ ├── assets │ ├── image-20240313172648964.png │ ├── image-20240313172820264.png │ ├── image-20240313172942389.png │ └── image-20240313173144008.png │ └── htb │ └── solver.py ├── misc ├── [Easy] Cubicle Riddle │ ├── README.md │ └── htb │ │ └── solver.py ├── [Easy] Unbreakable │ ├── README.md │ ├── assets │ │ ├── banner.png │ │ └── htb.png │ └── htb │ │ ├── main.py │ │ └── solver.py ├── [Easy] Were Pickle Phreaks │ ├── README.md │ └── htb │ │ └── sol.py ├── [Hard] MultiDigilingual │ ├── README.md │ └── htb │ │ └── sol.py ├── [Hard] Path of Survival │ ├── README.md │ ├── assets │ │ └── initial_view.png │ └── htb │ │ ├── consts_sol.py │ │ ├── game_sol.py │ │ ├── pathfinder_sol.py │ │ └── solve.py ├── [Medium] Colored Squares │ ├── Makefile │ ├── README.md │ └── htb │ │ └── solver.py ├── [Medium] Quantum Conundrum │ ├── README.md │ ├── assets │ │ └── image.png │ └── htb │ │ └── solver.py ├── [Medium] Were Pickle Phreaks Revenge │ ├── README.md │ └── htb │ │ └── sol.py ├── [Very Easy] Character │ ├── README.md │ └── htb │ │ └── solve.py └── [Very Easy] Stop Drop and Roll │ ├── README.md │ └── htb │ └── solve.py ├── pwn ├── [Easy] Pet companion │ ├── README.md │ ├── assets │ │ ├── banner.png │ │ └── htb.png │ └── htb │ │ └── solver.py ├── [Easy] Rocket Blaster XXX │ ├── README.md │ ├── assets │ │ ├── banner.png │ │ ├── htb.png │ │ └── inter.png │ └── htb │ │ └── solver.py ├── [Hard] Maze of Mist │ ├── README.md │ ├── assets │ │ └── symlink.png │ └── htb │ │ └── exploit.py ├── [Hard] Oracle │ ├── README.md │ └── htb │ │ └── exploit.py ├── [Insane] Gloater │ ├── README.md │ ├── assets │ │ └── initial_run.png │ └── htb │ │ └── exploit.py ├── [Medium] Death Note │ ├── README.md │ ├── assets │ │ ├── banner.png │ │ └── htb.png │ └── htb │ │ └── solver.py ├── [Medium] Sound of Silence │ ├── README.md │ ├── assets │ │ ├── banner.png │ │ └── htb.png │ └── htb │ │ └── solver.py ├── [Very Easy] Delulu │ ├── README.md │ ├── assets │ │ ├── banner.png │ │ ├── htb.png │ │ └── interface.png │ └── htb │ │ └── solver.py ├── [Very Easy] Tutorial │ ├── README.md │ ├── assets │ │ ├── banner.png │ │ ├── htb.png │ │ └── interface.png │ └── htb │ │ └── solver.py └── [Very Easy] Writing on the wall │ ├── README.md │ ├── assets │ ├── banner.png │ └── htb.png │ └── htb │ └── solver.py ├── reversing ├── [Easy] Crushing │ ├── README.md │ └── htb │ │ └── solve.py ├── [Hard] FlecksOfGold │ └── README.md ├── [Hard] Metagaming │ ├── README.md │ └── htb │ │ └── solve.py ├── [Insane] MazeOfPower │ ├── README.md │ ├── htb │ │ ├── go.mod │ │ ├── go.sum │ │ └── solve.go │ └── solve.py ├── [Medium] FollowThePath │ ├── README.md │ └── htb │ │ └── solve.py ├── [Medium] QuickScan │ ├── README.md │ └── htb │ │ └── solve.py ├── [Very Easy] BoxCutter │ └── README.md ├── [Very Easy] LootStash │ └── README.md └── [Very Easy] PackedAway │ ├── README.md │ └── assets │ ├── flag.png │ └── textbox.png └── web ├── [Easy] Labyrinth Linguist ├── README.md ├── assets │ └── overview.png ├── entrypoint.sh └── htb │ ├── flag.sh │ └── solver.py ├── [Easy] Testimonial ├── README.md ├── assets │ └── overview1.png ├── entrypoint.sh └── htb │ ├── solution.txt │ └── solver │ ├── .env │ ├── go.mod │ ├── go.sum │ ├── main.go │ ├── pb │ ├── ptypes.pb.go │ ├── ptypes.proto │ └── ptypes_grpc.pb.go │ └── pwn.go ├── [Hard] Percetron ├── .gitignore ├── README.md ├── assets │ ├── about.png │ ├── addcert.png │ ├── admin.png │ ├── certificates.png │ ├── home.png │ ├── hosts.png │ ├── login.png │ ├── management.png │ ├── op_msg.png │ ├── overview.png │ ├── register.png │ ├── smuggling.png │ ├── smuggling2.png │ └── solved.png ├── conf │ ├── haproxy.conf │ └── supervisord.conf ├── entrypoint.sh └── htb │ └── solver.py ├── [Insane] apexsurvive ├── assets │ ├── admhoem.png │ ├── afterverified.png │ ├── chrover.png │ ├── cook.png │ ├── csrfdone.png │ ├── cssexpl.png │ ├── email.png │ ├── flag.png │ ├── home.png │ ├── inbox.png │ ├── info.png │ ├── login.png │ ├── proadd.png │ └── product.png ├── bot │ └── app.py ├── email-app │ ├── index.js │ ├── package-lock.json │ ├── package.json │ ├── routes │ │ └── index.js │ ├── static │ │ ├── css │ │ │ └── bootstrap.min.css │ │ └── images │ │ │ └── LaughtPepe.gif │ └── views │ │ └── home.html ├── entrypoint.sh ├── htb │ ├── css_injection_csrf │ │ ├── css-exfiltrator-server.js │ │ ├── package-lock.json │ │ └── package.json │ ├── genPDF.py │ ├── payload.pdf │ ├── solver.py │ └── test.jpeg └── official_writeup.md ├── [Medium] LockTalk ├── README.md ├── assets │ └── .gitkeep ├── conf │ ├── haproxy.cfg │ ├── requirements.txt │ ├── supervisord.conf │ └── uwsgi.ini └── htb │ └── solver.py ├── [Medium] SerialFlow ├── README.md ├── assets │ ├── overview.png │ └── purple.png ├── conf │ └── supervisord.conf ├── entrypoint.sh └── htb │ └── solver.py ├── [Very Easy] Flag Command ├── assets │ ├── dev.png │ ├── flag.png │ ├── home.png │ └── res.png ├── htb │ └── solver.py └── official_writeup.md ├── [Very Easy] KORP Terminal ├── .gitignore ├── README.md ├── assets │ ├── dump.png │ ├── overview.png │ └── sqlmap.png ├── conf │ └── supervisord.conf ├── entrypoint.sh └── htb │ └── solver.py └── [Very Easy] TimeKORP ├── README.md ├── assets └── preview.png ├── flag └── htb └── solver.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/README.md -------------------------------------------------------------------------------- /assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/assets/banner.png -------------------------------------------------------------------------------- /assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/assets/htb.png -------------------------------------------------------------------------------- /assets/logo_htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/assets/logo_htb.png -------------------------------------------------------------------------------- /blockchain/Lucky Faucet [Easy]/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/blockchain/Lucky Faucet [Easy]/README.md -------------------------------------------------------------------------------- /blockchain/Lucky Faucet [Easy]/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/blockchain/Lucky Faucet [Easy]/htb/solver.py -------------------------------------------------------------------------------- /blockchain/Recovery [Easy]/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/blockchain/Recovery [Easy]/README.md -------------------------------------------------------------------------------- /blockchain/Recovery [Easy]/assets/CA_banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/blockchain/Recovery [Easy]/assets/CA_banner.jpg -------------------------------------------------------------------------------- /blockchain/Recovery [Easy]/assets/btc_sent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/blockchain/Recovery [Easy]/assets/btc_sent.png -------------------------------------------------------------------------------- /blockchain/Recovery [Easy]/assets/electrum_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/blockchain/Recovery [Easy]/assets/electrum_download.png -------------------------------------------------------------------------------- /blockchain/Recovery [Easy]/assets/electrum_importseed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/blockchain/Recovery [Easy]/assets/electrum_importseed.png -------------------------------------------------------------------------------- /blockchain/Recovery [Easy]/assets/electrum_newwallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/blockchain/Recovery [Easy]/assets/electrum_newwallet.png -------------------------------------------------------------------------------- /blockchain/Recovery [Easy]/assets/electrum_server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/blockchain/Recovery [Easy]/assets/electrum_server.png -------------------------------------------------------------------------------- /blockchain/Recovery [Easy]/assets/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/blockchain/Recovery [Easy]/assets/flag.png -------------------------------------------------------------------------------- /blockchain/Recovery [Easy]/assets/hacktheboo_banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/blockchain/Recovery [Easy]/assets/hacktheboo_banner.jpg -------------------------------------------------------------------------------- /blockchain/Recovery [Easy]/assets/sending_btc_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/blockchain/Recovery [Easy]/assets/sending_btc_back.png -------------------------------------------------------------------------------- /blockchain/Recovery [Easy]/assets/ssh_access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/blockchain/Recovery [Easy]/assets/ssh_access.png -------------------------------------------------------------------------------- /blockchain/Recovery [Easy]/assets/stolen_bitcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/blockchain/Recovery [Easy]/assets/stolen_bitcoin.png -------------------------------------------------------------------------------- /blockchain/Russian Roulette [Very Easy]/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/blockchain/Russian Roulette [Very Easy]/README.md -------------------------------------------------------------------------------- /blockchain/Russian Roulette [Very Easy]/assets/CA_banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/blockchain/Russian Roulette [Very Easy]/assets/CA_banner.jpg -------------------------------------------------------------------------------- /blockchain/Russian Roulette [Very Easy]/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/blockchain/Russian Roulette [Very Easy]/htb/solver.py -------------------------------------------------------------------------------- /crypto/[Easy] Blunt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/crypto/[Easy] Blunt/README.md -------------------------------------------------------------------------------- /crypto/[Easy] Blunt/htb/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/crypto/[Easy] Blunt/htb/solve.sage -------------------------------------------------------------------------------- /crypto/[Easy] Iced Tea/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/crypto/[Easy] Iced Tea/Makefile -------------------------------------------------------------------------------- /crypto/[Easy] Iced Tea/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/crypto/[Easy] Iced Tea/README.md -------------------------------------------------------------------------------- /crypto/[Easy] Iced Tea/htb/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/crypto/[Easy] Iced Tea/htb/output.txt -------------------------------------------------------------------------------- /crypto/[Easy] Iced Tea/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/crypto/[Easy] Iced Tea/htb/solver.py -------------------------------------------------------------------------------- /crypto/[Hard] Permuted/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/crypto/[Hard] Permuted/README.md -------------------------------------------------------------------------------- /crypto/[Hard] Permuted/htb/secret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/crypto/[Hard] Permuted/htb/secret.py -------------------------------------------------------------------------------- /crypto/[Hard] Permuted/htb/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/crypto/[Hard] Permuted/htb/solve.py -------------------------------------------------------------------------------- /crypto/[Hard] Tsayaki/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/crypto/[Hard] Tsayaki/Makefile -------------------------------------------------------------------------------- /crypto/[Hard] Tsayaki/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/crypto/[Hard] Tsayaki/README.md -------------------------------------------------------------------------------- /crypto/[Hard] Tsayaki/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/crypto/[Hard] Tsayaki/htb/solver.py -------------------------------------------------------------------------------- /crypto/[Hard] Tsayaki/htb/tea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/crypto/[Hard] Tsayaki/htb/tea.py -------------------------------------------------------------------------------- /crypto/[Insane] ROT128/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/crypto/[Insane] ROT128/Makefile -------------------------------------------------------------------------------- /crypto/[Insane] ROT128/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/crypto/[Insane] ROT128/README.md -------------------------------------------------------------------------------- /crypto/[Insane] ROT128/htb/solver.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/crypto/[Insane] ROT128/htb/solver.sage -------------------------------------------------------------------------------- /crypto/[Medium] Arranged/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/crypto/[Medium] Arranged/README.md -------------------------------------------------------------------------------- /crypto/[Medium] Arranged/htb/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/crypto/[Medium] Arranged/htb/solve.sage -------------------------------------------------------------------------------- /crypto/[Medium] Partial Tenacity/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/crypto/[Medium] Partial Tenacity/Makefile -------------------------------------------------------------------------------- /crypto/[Medium] Partial Tenacity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/crypto/[Medium] Partial Tenacity/README.md -------------------------------------------------------------------------------- /crypto/[Medium] Partial Tenacity/htb/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/crypto/[Medium] Partial Tenacity/htb/output.txt -------------------------------------------------------------------------------- /crypto/[Medium] Partial Tenacity/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/crypto/[Medium] Partial Tenacity/htb/solver.py -------------------------------------------------------------------------------- /crypto/[Very Easy] Dynastic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/crypto/[Very Easy] Dynastic/Makefile -------------------------------------------------------------------------------- /crypto/[Very Easy] Dynastic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/crypto/[Very Easy] Dynastic/README.md -------------------------------------------------------------------------------- /crypto/[Very Easy] Dynastic/htb/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/crypto/[Very Easy] Dynastic/htb/output.txt -------------------------------------------------------------------------------- /crypto/[Very Easy] Dynastic/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/crypto/[Very Easy] Dynastic/htb/solver.py -------------------------------------------------------------------------------- /crypto/[Very Easy] Makeshift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/crypto/[Very Easy] Makeshift/README.md -------------------------------------------------------------------------------- /crypto/[Very Easy] Makeshift/htb/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/crypto/[Very Easy] Makeshift/htb/solve.py -------------------------------------------------------------------------------- /crypto/[Very Easy] Primary Knowledge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/crypto/[Very Easy] Primary Knowledge/Makefile -------------------------------------------------------------------------------- /crypto/[Very Easy] Primary Knowledge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/crypto/[Very Easy] Primary Knowledge/README.md -------------------------------------------------------------------------------- /crypto/[Very Easy] Primary Knowledge/htb/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/crypto/[Very Easy] Primary Knowledge/htb/output.txt -------------------------------------------------------------------------------- /crypto/[Very Easy] Primary Knowledge/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/crypto/[Very Easy] Primary Knowledge/htb/solver.py -------------------------------------------------------------------------------- /forensics/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /forensics/[Easy] Fake Boost/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Easy] Fake Boost/Readme.md -------------------------------------------------------------------------------- /forensics/[Easy] Fake Boost/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Easy] Fake Boost/assets/banner.png -------------------------------------------------------------------------------- /forensics/[Easy] Fake Boost/assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Easy] Fake Boost/assets/htb.png -------------------------------------------------------------------------------- /forensics/[Easy] Fake Boost/assets/writeup1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Easy] Fake Boost/assets/writeup1.png -------------------------------------------------------------------------------- /forensics/[Easy] Fake Boost/assets/writeup2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Easy] Fake Boost/assets/writeup2.png -------------------------------------------------------------------------------- /forensics/[Easy] Fake Boost/assets/writeup3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Easy] Fake Boost/assets/writeup3.png -------------------------------------------------------------------------------- /forensics/[Easy] Persue The Tracks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Easy] Persue The Tracks/README.md -------------------------------------------------------------------------------- /forensics/[Easy] Persue The Tracks/assets/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Easy] Persue The Tracks/assets/images/banner.png -------------------------------------------------------------------------------- /forensics/[Easy] Persue The Tracks/assets/images/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Easy] Persue The Tracks/assets/images/htb.png -------------------------------------------------------------------------------- /forensics/[Easy] Persue The Tracks/assets/images/q1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Easy] Persue The Tracks/assets/images/q1.png -------------------------------------------------------------------------------- /forensics/[Easy] Persue The Tracks/assets/images/q2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Easy] Persue The Tracks/assets/images/q2.png -------------------------------------------------------------------------------- /forensics/[Easy] Persue The Tracks/assets/images/q3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Easy] Persue The Tracks/assets/images/q3.png -------------------------------------------------------------------------------- /forensics/[Easy] Persue The Tracks/assets/images/q4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Easy] Persue The Tracks/assets/images/q4.png -------------------------------------------------------------------------------- /forensics/[Easy] Persue The Tracks/assets/images/q5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Easy] Persue The Tracks/assets/images/q5.png -------------------------------------------------------------------------------- /forensics/[Easy] Persue The Tracks/assets/images/q6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Easy] Persue The Tracks/assets/images/q6.png -------------------------------------------------------------------------------- /forensics/[Easy] Persue The Tracks/assets/images/q7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Easy] Persue The Tracks/assets/images/q7.png -------------------------------------------------------------------------------- /forensics/[Easy] Persue The Tracks/assets/images/q8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Easy] Persue The Tracks/assets/images/q8.png -------------------------------------------------------------------------------- /forensics/[Easy] Persue The Tracks/assets/images/q9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Easy] Persue The Tracks/assets/images/q9.png -------------------------------------------------------------------------------- /forensics/[Hard] Confinement/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Hard] Confinement/README.md -------------------------------------------------------------------------------- /forensics/[Hard] Confinement/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Hard] Confinement/assets/banner.png -------------------------------------------------------------------------------- /forensics/[Hard] Confinement/assets/chainsaw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Hard] Confinement/assets/chainsaw.png -------------------------------------------------------------------------------- /forensics/[Hard] Confinement/assets/cyberchef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Hard] Confinement/assets/cyberchef.png -------------------------------------------------------------------------------- /forensics/[Hard] Confinement/assets/decrypt-quarantine-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Hard] Confinement/assets/decrypt-quarantine-file.png -------------------------------------------------------------------------------- /forensics/[Hard] Confinement/assets/decrypt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Hard] Confinement/assets/decrypt.png -------------------------------------------------------------------------------- /forensics/[Hard] Confinement/assets/firstlook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Hard] Confinement/assets/firstlook.png -------------------------------------------------------------------------------- /forensics/[Hard] Confinement/assets/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Hard] Confinement/assets/flag.png -------------------------------------------------------------------------------- /forensics/[Hard] Confinement/assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Hard] Confinement/assets/htb.png -------------------------------------------------------------------------------- /forensics/[Hard] Confinement/assets/intel-prefetch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Hard] Confinement/assets/intel-prefetch.png -------------------------------------------------------------------------------- /forensics/[Hard] Confinement/assets/intel-securitylog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Hard] Confinement/assets/intel-securitylog.png -------------------------------------------------------------------------------- /forensics/[Hard] Confinement/assets/log-quarantine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Hard] Confinement/assets/log-quarantine.png -------------------------------------------------------------------------------- /forensics/[Hard] Confinement/assets/pwsh-command1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Hard] Confinement/assets/pwsh-command1.png -------------------------------------------------------------------------------- /forensics/[Hard] Confinement/assets/pwsh-command2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Hard] Confinement/assets/pwsh-command2.png -------------------------------------------------------------------------------- /forensics/[Hard] Confinement/assets/pwshlog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Hard] Confinement/assets/pwshlog.png -------------------------------------------------------------------------------- /forensics/[Hard] Confinement/assets/ransomnote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Hard] Confinement/assets/ransomnote.png -------------------------------------------------------------------------------- /forensics/[Hard] Confinement/assets/rev2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Hard] Confinement/assets/rev2.png -------------------------------------------------------------------------------- /forensics/[Hard] Confinement/assets/rev3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Hard] Confinement/assets/rev3.png -------------------------------------------------------------------------------- /forensics/[Hard] Confinement/assets/rev4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Hard] Confinement/assets/rev4.png -------------------------------------------------------------------------------- /forensics/[Hard] Game Invitation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Hard] Game Invitation/README.md -------------------------------------------------------------------------------- /forensics/[Hard] Game Invitation/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Hard] Game Invitation/assets/banner.png -------------------------------------------------------------------------------- /forensics/[Hard] Game Invitation/assets/cyberchef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Hard] Game Invitation/assets/cyberchef.png -------------------------------------------------------------------------------- /forensics/[Hard] Game Invitation/assets/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Hard] Game Invitation/assets/flag.png -------------------------------------------------------------------------------- /forensics/[Hard] Game Invitation/assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Hard] Game Invitation/assets/htb.png -------------------------------------------------------------------------------- /forensics/[Hard] Game Invitation/assets/step_one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Hard] Game Invitation/assets/step_one.png -------------------------------------------------------------------------------- /forensics/[Hard] Game Invitation/assets/step_two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Hard] Game Invitation/assets/step_two.png -------------------------------------------------------------------------------- /forensics/[Hard] Game Invitation/assets/step_two_beautified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Hard] Game Invitation/assets/step_two_beautified.png -------------------------------------------------------------------------------- /forensics/[Insane] Oblique Final/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Insane] Oblique Final/Readme.md -------------------------------------------------------------------------------- /forensics/[Insane] Oblique Final/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Insane] Oblique Final/assets/banner.png -------------------------------------------------------------------------------- /forensics/[Insane] Oblique Final/assets/cor20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Insane] Oblique Final/assets/cor20.png -------------------------------------------------------------------------------- /forensics/[Insane] Oblique Final/assets/dnspy_debug_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Insane] Oblique Final/assets/dnspy_debug_options.png -------------------------------------------------------------------------------- /forensics/[Insane] Oblique Final/assets/dotpeek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Insane] Oblique Final/assets/dotpeek.png -------------------------------------------------------------------------------- /forensics/[Insane] Oblique Final/assets/hexedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Insane] Oblique Final/assets/hexedit.png -------------------------------------------------------------------------------- /forensics/[Insane] Oblique Final/assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Insane] Oblique Final/assets/htb.png -------------------------------------------------------------------------------- /forensics/[Insane] Oblique Final/assets/ilspy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Insane] Oblique Final/assets/ilspy.png -------------------------------------------------------------------------------- /forensics/[Insane] Oblique Final/assets/r2r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Insane] Oblique Final/assets/r2r.png -------------------------------------------------------------------------------- /forensics/[Insane] Oblique Final/assets/shellcode_range.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Insane] Oblique Final/assets/shellcode_range.png -------------------------------------------------------------------------------- /forensics/[Insane] Oblique Final/assets/tabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Insane] Oblique Final/assets/tabs.png -------------------------------------------------------------------------------- /forensics/[Medium] Data Siege/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Medium] Data Siege/README.md -------------------------------------------------------------------------------- /forensics/[Medium] Data Siege/assets/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Medium] Data Siege/assets/images/banner.png -------------------------------------------------------------------------------- /forensics/[Medium] Data Siege/assets/images/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Medium] Data Siege/assets/images/htb.png -------------------------------------------------------------------------------- /forensics/[Medium] Phreaky/Assets/Images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Medium] Phreaky/Assets/Images/banner.png -------------------------------------------------------------------------------- /forensics/[Medium] Phreaky/Assets/Images/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Medium] Phreaky/Assets/Images/example.png -------------------------------------------------------------------------------- /forensics/[Medium] Phreaky/Assets/Images/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Medium] Phreaky/Assets/Images/htb.png -------------------------------------------------------------------------------- /forensics/[Medium] Phreaky/Assets/Images/shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Medium] Phreaky/Assets/Images/shell.png -------------------------------------------------------------------------------- /forensics/[Medium] Phreaky/Assets/image-20240307210526796.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Medium] Phreaky/Assets/image-20240307210526796.png -------------------------------------------------------------------------------- /forensics/[Medium] Phreaky/Assets/image-20240307210539350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Medium] Phreaky/Assets/image-20240307210539350.png -------------------------------------------------------------------------------- /forensics/[Medium] Phreaky/Assets/image-20240307210553102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Medium] Phreaky/Assets/image-20240307210553102.png -------------------------------------------------------------------------------- /forensics/[Medium] Phreaky/Assets/image-20240307210648805.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Medium] Phreaky/Assets/image-20240307210648805.png -------------------------------------------------------------------------------- /forensics/[Medium] Phreaky/Assets/image-20240307210826562.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Medium] Phreaky/Assets/image-20240307210826562.png -------------------------------------------------------------------------------- /forensics/[Medium] Phreaky/Assets/image-20240307211242055.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Medium] Phreaky/Assets/image-20240307211242055.png -------------------------------------------------------------------------------- /forensics/[Medium] Phreaky/Assets/image-20240307211425321.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Medium] Phreaky/Assets/image-20240307211425321.png -------------------------------------------------------------------------------- /forensics/[Medium] Phreaky/Assets/image-20240307211518078.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Medium] Phreaky/Assets/image-20240307211518078.png -------------------------------------------------------------------------------- /forensics/[Medium] Phreaky/Assets/image-20240307211611787.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Medium] Phreaky/Assets/image-20240307211611787.png -------------------------------------------------------------------------------- /forensics/[Medium] Phreaky/Assets/image-20240307211632474.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Medium] Phreaky/Assets/image-20240307211632474.png -------------------------------------------------------------------------------- /forensics/[Medium] Phreaky/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Medium] Phreaky/README.md -------------------------------------------------------------------------------- /forensics/[Very Easy] An unusual sighting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Very Easy] An unusual sighting/README.md -------------------------------------------------------------------------------- /forensics/[Very Easy] An unusual sighting/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Very Easy] An unusual sighting/assets/banner.png -------------------------------------------------------------------------------- /forensics/[Very Easy] An unusual sighting/assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Very Easy] An unusual sighting/assets/htb.png -------------------------------------------------------------------------------- /forensics/[Very Easy] It Has Begun/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Very Easy] It Has Begun/Readme.md -------------------------------------------------------------------------------- /forensics/[Very Easy] It Has Begun/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Very Easy] It Has Begun/assets/banner.png -------------------------------------------------------------------------------- /forensics/[Very Easy] It Has Begun/assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Very Easy] It Has Begun/assets/htb.png -------------------------------------------------------------------------------- /forensics/[Very Easy] It Has Begun/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Very Easy] It Has Begun/assets/image.png -------------------------------------------------------------------------------- /forensics/[Very Easy] Urgent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Very Easy] Urgent/README.md -------------------------------------------------------------------------------- /forensics/[Very Easy] Urgent/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Very Easy] Urgent/assets/banner.png -------------------------------------------------------------------------------- /forensics/[Very Easy] Urgent/assets/conv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Very Easy] Urgent/assets/conv.png -------------------------------------------------------------------------------- /forensics/[Very Easy] Urgent/assets/conv_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Very Easy] Urgent/assets/conv_full.png -------------------------------------------------------------------------------- /forensics/[Very Easy] Urgent/assets/cyberchef1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Very Easy] Urgent/assets/cyberchef1.png -------------------------------------------------------------------------------- /forensics/[Very Easy] Urgent/assets/cyberchef2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Very Easy] Urgent/assets/cyberchef2.png -------------------------------------------------------------------------------- /forensics/[Very Easy] Urgent/assets/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Very Easy] Urgent/assets/flag.png -------------------------------------------------------------------------------- /forensics/[Very Easy] Urgent/assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Very Easy] Urgent/assets/htb.png -------------------------------------------------------------------------------- /forensics/[Very Easy] Urgent/assets/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/forensics/[Very Easy] Urgent/assets/html.png -------------------------------------------------------------------------------- /hw/BunnyPass [Very Easy]/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/hw/BunnyPass [Very Easy]/README.md -------------------------------------------------------------------------------- /hw/BunnyPass [Very Easy]/assets/get_msg_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/hw/BunnyPass [Very Easy]/assets/get_msg_1.png -------------------------------------------------------------------------------- /hw/BunnyPass [Very Easy]/assets/get_msg_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/hw/BunnyPass [Very Easy]/assets/get_msg_2.png -------------------------------------------------------------------------------- /hw/BunnyPass [Very Easy]/assets/get_msg_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/hw/BunnyPass [Very Easy]/assets/get_msg_3.png -------------------------------------------------------------------------------- /hw/BunnyPass [Very Easy]/assets/loginpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/hw/BunnyPass [Very Easy]/assets/loginpage.png -------------------------------------------------------------------------------- /hw/BunnyPass [Very Easy]/assets/page_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/hw/BunnyPass [Very Easy]/assets/page_1.png -------------------------------------------------------------------------------- /hw/BunnyPass [Very Easy]/assets/queues2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/hw/BunnyPass [Very Easy]/assets/queues2.png -------------------------------------------------------------------------------- /hw/BunnyPass [Very Easy]/assets/rabbitmq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/hw/BunnyPass [Very Easy]/assets/rabbitmq.png -------------------------------------------------------------------------------- /hw/BunnyPass [Very Easy]/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/hw/BunnyPass [Very Easy]/entrypoint.sh -------------------------------------------------------------------------------- /hw/Flash-ing Logs [Hard]/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/hw/Flash-ing Logs [Hard]/README.md -------------------------------------------------------------------------------- /hw/Flash-ing Logs [Hard]/assets/W25Q128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/hw/Flash-ing Logs [Hard]/assets/W25Q128.png -------------------------------------------------------------------------------- /hw/Flash-ing Logs [Hard]/assets/datahsheet_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/hw/Flash-ing Logs [Hard]/assets/datahsheet_2.png -------------------------------------------------------------------------------- /hw/Flash-ing Logs [Hard]/assets/datasheet_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/hw/Flash-ing Logs [Hard]/assets/datasheet_1.png -------------------------------------------------------------------------------- /hw/Flash-ing Logs [Hard]/assets/datasheet_3_instructions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/hw/Flash-ing Logs [Hard]/assets/datasheet_3_instructions.png -------------------------------------------------------------------------------- /hw/Flash-ing Logs [Hard]/assets/datasheet_3_instructions_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/hw/Flash-ing Logs [Hard]/assets/datasheet_3_instructions_2.png -------------------------------------------------------------------------------- /hw/Flash-ing Logs [Hard]/assets/flow_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/hw/Flash-ing Logs [Hard]/assets/flow_1.png -------------------------------------------------------------------------------- /hw/Flash-ing Logs [Hard]/assets/instruction_erase_sector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/hw/Flash-ing Logs [Hard]/assets/instruction_erase_sector.png -------------------------------------------------------------------------------- /hw/Flash-ing Logs [Hard]/assets/instruction_page_program.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/hw/Flash-ing Logs [Hard]/assets/instruction_page_program.png -------------------------------------------------------------------------------- /hw/Flash-ing Logs [Hard]/assets/instruction_read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/hw/Flash-ing Logs [Hard]/assets/instruction_read.png -------------------------------------------------------------------------------- /hw/Flash-ing Logs [Hard]/assets/instruction_read_sec_reg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/hw/Flash-ing Logs [Hard]/assets/instruction_read_sec_reg.png -------------------------------------------------------------------------------- /hw/Flash-ing Logs [Hard]/assets/instruction_write_enable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/hw/Flash-ing Logs [Hard]/assets/instruction_write_enable.png -------------------------------------------------------------------------------- /hw/Flash-ing Logs [Hard]/assets/winbond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/hw/Flash-ing Logs [Hard]/assets/winbond.png -------------------------------------------------------------------------------- /hw/Flash-ing Logs [Hard]/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/hw/Flash-ing Logs [Hard]/htb/solver.py -------------------------------------------------------------------------------- /hw/Maze [Very Easy]/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/hw/Maze [Very Easy]/Makefile -------------------------------------------------------------------------------- /hw/Maze [Very Easy]/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/hw/Maze [Very Easy]/README.md -------------------------------------------------------------------------------- /hw/Maze [Very Easy]/assets/image-20240314210808496.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/hw/Maze [Very Easy]/assets/image-20240314210808496.png -------------------------------------------------------------------------------- /hw/Rids [Easy]/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/hw/Rids [Easy]/README.md -------------------------------------------------------------------------------- /hw/Rids [Easy]/assets/W25Q128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/hw/Rids [Easy]/assets/W25Q128.png -------------------------------------------------------------------------------- /hw/Rids [Easy]/assets/datahsheet_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/hw/Rids [Easy]/assets/datahsheet_2.png -------------------------------------------------------------------------------- /hw/Rids [Easy]/assets/datasheet_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/hw/Rids [Easy]/assets/datasheet_1.png -------------------------------------------------------------------------------- /hw/Rids [Easy]/assets/instruction_read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/hw/Rids [Easy]/assets/instruction_read.png -------------------------------------------------------------------------------- /hw/Rids [Easy]/assets/read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/hw/Rids [Easy]/assets/read.png -------------------------------------------------------------------------------- /hw/Rids [Easy]/assets/winbond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/hw/Rids [Easy]/assets/winbond.png -------------------------------------------------------------------------------- /hw/Rids [Easy]/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/hw/Rids [Easy]/htb/solver.py -------------------------------------------------------------------------------- /hw/The PROM [Medium]/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/hw/The PROM [Medium]/README.md -------------------------------------------------------------------------------- /hw/The PROM [Medium]/assets/image-20240313172648964.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/hw/The PROM [Medium]/assets/image-20240313172648964.png -------------------------------------------------------------------------------- /hw/The PROM [Medium]/assets/image-20240313172820264.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/hw/The PROM [Medium]/assets/image-20240313172820264.png -------------------------------------------------------------------------------- /hw/The PROM [Medium]/assets/image-20240313172942389.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/hw/The PROM [Medium]/assets/image-20240313172942389.png -------------------------------------------------------------------------------- /hw/The PROM [Medium]/assets/image-20240313173144008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/hw/The PROM [Medium]/assets/image-20240313173144008.png -------------------------------------------------------------------------------- /hw/The PROM [Medium]/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/hw/The PROM [Medium]/htb/solver.py -------------------------------------------------------------------------------- /misc/[Easy] Cubicle Riddle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/misc/[Easy] Cubicle Riddle/README.md -------------------------------------------------------------------------------- /misc/[Easy] Cubicle Riddle/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/misc/[Easy] Cubicle Riddle/htb/solver.py -------------------------------------------------------------------------------- /misc/[Easy] Unbreakable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/misc/[Easy] Unbreakable/README.md -------------------------------------------------------------------------------- /misc/[Easy] Unbreakable/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/misc/[Easy] Unbreakable/assets/banner.png -------------------------------------------------------------------------------- /misc/[Easy] Unbreakable/assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/misc/[Easy] Unbreakable/assets/htb.png -------------------------------------------------------------------------------- /misc/[Easy] Unbreakable/htb/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/misc/[Easy] Unbreakable/htb/main.py -------------------------------------------------------------------------------- /misc/[Easy] Unbreakable/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/misc/[Easy] Unbreakable/htb/solver.py -------------------------------------------------------------------------------- /misc/[Easy] Were Pickle Phreaks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/misc/[Easy] Were Pickle Phreaks/README.md -------------------------------------------------------------------------------- /misc/[Easy] Were Pickle Phreaks/htb/sol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/misc/[Easy] Were Pickle Phreaks/htb/sol.py -------------------------------------------------------------------------------- /misc/[Hard] MultiDigilingual/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/misc/[Hard] MultiDigilingual/README.md -------------------------------------------------------------------------------- /misc/[Hard] MultiDigilingual/htb/sol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/misc/[Hard] MultiDigilingual/htb/sol.py -------------------------------------------------------------------------------- /misc/[Hard] Path of Survival/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/misc/[Hard] Path of Survival/README.md -------------------------------------------------------------------------------- /misc/[Hard] Path of Survival/assets/initial_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/misc/[Hard] Path of Survival/assets/initial_view.png -------------------------------------------------------------------------------- /misc/[Hard] Path of Survival/htb/consts_sol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/misc/[Hard] Path of Survival/htb/consts_sol.py -------------------------------------------------------------------------------- /misc/[Hard] Path of Survival/htb/game_sol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/misc/[Hard] Path of Survival/htb/game_sol.py -------------------------------------------------------------------------------- /misc/[Hard] Path of Survival/htb/pathfinder_sol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/misc/[Hard] Path of Survival/htb/pathfinder_sol.py -------------------------------------------------------------------------------- /misc/[Hard] Path of Survival/htb/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/misc/[Hard] Path of Survival/htb/solve.py -------------------------------------------------------------------------------- /misc/[Medium] Colored Squares/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/misc/[Medium] Colored Squares/Makefile -------------------------------------------------------------------------------- /misc/[Medium] Colored Squares/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/misc/[Medium] Colored Squares/README.md -------------------------------------------------------------------------------- /misc/[Medium] Colored Squares/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/misc/[Medium] Colored Squares/htb/solver.py -------------------------------------------------------------------------------- /misc/[Medium] Quantum Conundrum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/misc/[Medium] Quantum Conundrum/README.md -------------------------------------------------------------------------------- /misc/[Medium] Quantum Conundrum/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/misc/[Medium] Quantum Conundrum/assets/image.png -------------------------------------------------------------------------------- /misc/[Medium] Quantum Conundrum/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/misc/[Medium] Quantum Conundrum/htb/solver.py -------------------------------------------------------------------------------- /misc/[Medium] Were Pickle Phreaks Revenge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/misc/[Medium] Were Pickle Phreaks Revenge/README.md -------------------------------------------------------------------------------- /misc/[Medium] Were Pickle Phreaks Revenge/htb/sol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/misc/[Medium] Were Pickle Phreaks Revenge/htb/sol.py -------------------------------------------------------------------------------- /misc/[Very Easy] Character/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/misc/[Very Easy] Character/README.md -------------------------------------------------------------------------------- /misc/[Very Easy] Character/htb/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/misc/[Very Easy] Character/htb/solve.py -------------------------------------------------------------------------------- /misc/[Very Easy] Stop Drop and Roll/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/misc/[Very Easy] Stop Drop and Roll/README.md -------------------------------------------------------------------------------- /misc/[Very Easy] Stop Drop and Roll/htb/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/misc/[Very Easy] Stop Drop and Roll/htb/solve.py -------------------------------------------------------------------------------- /pwn/[Easy] Pet companion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/pwn/[Easy] Pet companion/README.md -------------------------------------------------------------------------------- /pwn/[Easy] Pet companion/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/pwn/[Easy] Pet companion/assets/banner.png -------------------------------------------------------------------------------- /pwn/[Easy] Pet companion/assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/pwn/[Easy] Pet companion/assets/htb.png -------------------------------------------------------------------------------- /pwn/[Easy] Pet companion/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/pwn/[Easy] Pet companion/htb/solver.py -------------------------------------------------------------------------------- /pwn/[Easy] Rocket Blaster XXX/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/pwn/[Easy] Rocket Blaster XXX/README.md -------------------------------------------------------------------------------- /pwn/[Easy] Rocket Blaster XXX/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/pwn/[Easy] Rocket Blaster XXX/assets/banner.png -------------------------------------------------------------------------------- /pwn/[Easy] Rocket Blaster XXX/assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/pwn/[Easy] Rocket Blaster XXX/assets/htb.png -------------------------------------------------------------------------------- /pwn/[Easy] Rocket Blaster XXX/assets/inter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/pwn/[Easy] Rocket Blaster XXX/assets/inter.png -------------------------------------------------------------------------------- /pwn/[Easy] Rocket Blaster XXX/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/pwn/[Easy] Rocket Blaster XXX/htb/solver.py -------------------------------------------------------------------------------- /pwn/[Hard] Maze of Mist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/pwn/[Hard] Maze of Mist/README.md -------------------------------------------------------------------------------- /pwn/[Hard] Maze of Mist/assets/symlink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/pwn/[Hard] Maze of Mist/assets/symlink.png -------------------------------------------------------------------------------- /pwn/[Hard] Maze of Mist/htb/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/pwn/[Hard] Maze of Mist/htb/exploit.py -------------------------------------------------------------------------------- /pwn/[Hard] Oracle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/pwn/[Hard] Oracle/README.md -------------------------------------------------------------------------------- /pwn/[Hard] Oracle/htb/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/pwn/[Hard] Oracle/htb/exploit.py -------------------------------------------------------------------------------- /pwn/[Insane] Gloater/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/pwn/[Insane] Gloater/README.md -------------------------------------------------------------------------------- /pwn/[Insane] Gloater/assets/initial_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/pwn/[Insane] Gloater/assets/initial_run.png -------------------------------------------------------------------------------- /pwn/[Insane] Gloater/htb/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/pwn/[Insane] Gloater/htb/exploit.py -------------------------------------------------------------------------------- /pwn/[Medium] Death Note/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/pwn/[Medium] Death Note/README.md -------------------------------------------------------------------------------- /pwn/[Medium] Death Note/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/pwn/[Medium] Death Note/assets/banner.png -------------------------------------------------------------------------------- /pwn/[Medium] Death Note/assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/pwn/[Medium] Death Note/assets/htb.png -------------------------------------------------------------------------------- /pwn/[Medium] Death Note/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/pwn/[Medium] Death Note/htb/solver.py -------------------------------------------------------------------------------- /pwn/[Medium] Sound of Silence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/pwn/[Medium] Sound of Silence/README.md -------------------------------------------------------------------------------- /pwn/[Medium] Sound of Silence/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/pwn/[Medium] Sound of Silence/assets/banner.png -------------------------------------------------------------------------------- /pwn/[Medium] Sound of Silence/assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/pwn/[Medium] Sound of Silence/assets/htb.png -------------------------------------------------------------------------------- /pwn/[Medium] Sound of Silence/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/pwn/[Medium] Sound of Silence/htb/solver.py -------------------------------------------------------------------------------- /pwn/[Very Easy] Delulu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/pwn/[Very Easy] Delulu/README.md -------------------------------------------------------------------------------- /pwn/[Very Easy] Delulu/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/pwn/[Very Easy] Delulu/assets/banner.png -------------------------------------------------------------------------------- /pwn/[Very Easy] Delulu/assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/pwn/[Very Easy] Delulu/assets/htb.png -------------------------------------------------------------------------------- /pwn/[Very Easy] Delulu/assets/interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/pwn/[Very Easy] Delulu/assets/interface.png -------------------------------------------------------------------------------- /pwn/[Very Easy] Delulu/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/pwn/[Very Easy] Delulu/htb/solver.py -------------------------------------------------------------------------------- /pwn/[Very Easy] Tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/pwn/[Very Easy] Tutorial/README.md -------------------------------------------------------------------------------- /pwn/[Very Easy] Tutorial/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/pwn/[Very Easy] Tutorial/assets/banner.png -------------------------------------------------------------------------------- /pwn/[Very Easy] Tutorial/assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/pwn/[Very Easy] Tutorial/assets/htb.png -------------------------------------------------------------------------------- /pwn/[Very Easy] Tutorial/assets/interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/pwn/[Very Easy] Tutorial/assets/interface.png -------------------------------------------------------------------------------- /pwn/[Very Easy] Tutorial/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/pwn/[Very Easy] Tutorial/htb/solver.py -------------------------------------------------------------------------------- /pwn/[Very Easy] Writing on the wall/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/pwn/[Very Easy] Writing on the wall/README.md -------------------------------------------------------------------------------- /pwn/[Very Easy] Writing on the wall/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/pwn/[Very Easy] Writing on the wall/assets/banner.png -------------------------------------------------------------------------------- /pwn/[Very Easy] Writing on the wall/assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/pwn/[Very Easy] Writing on the wall/assets/htb.png -------------------------------------------------------------------------------- /pwn/[Very Easy] Writing on the wall/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/pwn/[Very Easy] Writing on the wall/htb/solver.py -------------------------------------------------------------------------------- /reversing/[Easy] Crushing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/reversing/[Easy] Crushing/README.md -------------------------------------------------------------------------------- /reversing/[Easy] Crushing/htb/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/reversing/[Easy] Crushing/htb/solve.py -------------------------------------------------------------------------------- /reversing/[Hard] FlecksOfGold/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/reversing/[Hard] FlecksOfGold/README.md -------------------------------------------------------------------------------- /reversing/[Hard] Metagaming/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/reversing/[Hard] Metagaming/README.md -------------------------------------------------------------------------------- /reversing/[Hard] Metagaming/htb/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/reversing/[Hard] Metagaming/htb/solve.py -------------------------------------------------------------------------------- /reversing/[Insane] MazeOfPower/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/reversing/[Insane] MazeOfPower/README.md -------------------------------------------------------------------------------- /reversing/[Insane] MazeOfPower/htb/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/reversing/[Insane] MazeOfPower/htb/go.mod -------------------------------------------------------------------------------- /reversing/[Insane] MazeOfPower/htb/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/reversing/[Insane] MazeOfPower/htb/go.sum -------------------------------------------------------------------------------- /reversing/[Insane] MazeOfPower/htb/solve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/reversing/[Insane] MazeOfPower/htb/solve.go -------------------------------------------------------------------------------- /reversing/[Insane] MazeOfPower/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/reversing/[Insane] MazeOfPower/solve.py -------------------------------------------------------------------------------- /reversing/[Medium] FollowThePath/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/reversing/[Medium] FollowThePath/README.md -------------------------------------------------------------------------------- /reversing/[Medium] FollowThePath/htb/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/reversing/[Medium] FollowThePath/htb/solve.py -------------------------------------------------------------------------------- /reversing/[Medium] QuickScan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/reversing/[Medium] QuickScan/README.md -------------------------------------------------------------------------------- /reversing/[Medium] QuickScan/htb/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/reversing/[Medium] QuickScan/htb/solve.py -------------------------------------------------------------------------------- /reversing/[Very Easy] BoxCutter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/reversing/[Very Easy] BoxCutter/README.md -------------------------------------------------------------------------------- /reversing/[Very Easy] LootStash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/reversing/[Very Easy] LootStash/README.md -------------------------------------------------------------------------------- /reversing/[Very Easy] PackedAway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/reversing/[Very Easy] PackedAway/README.md -------------------------------------------------------------------------------- /reversing/[Very Easy] PackedAway/assets/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/reversing/[Very Easy] PackedAway/assets/flag.png -------------------------------------------------------------------------------- /reversing/[Very Easy] PackedAway/assets/textbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/reversing/[Very Easy] PackedAway/assets/textbox.png -------------------------------------------------------------------------------- /web/[Easy] Labyrinth Linguist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Easy] Labyrinth Linguist/README.md -------------------------------------------------------------------------------- /web/[Easy] Labyrinth Linguist/assets/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Easy] Labyrinth Linguist/assets/overview.png -------------------------------------------------------------------------------- /web/[Easy] Labyrinth Linguist/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Easy] Labyrinth Linguist/entrypoint.sh -------------------------------------------------------------------------------- /web/[Easy] Labyrinth Linguist/htb/flag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Easy] Labyrinth Linguist/htb/flag.sh -------------------------------------------------------------------------------- /web/[Easy] Labyrinth Linguist/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Easy] Labyrinth Linguist/htb/solver.py -------------------------------------------------------------------------------- /web/[Easy] Testimonial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Easy] Testimonial/README.md -------------------------------------------------------------------------------- /web/[Easy] Testimonial/assets/overview1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Easy] Testimonial/assets/overview1.png -------------------------------------------------------------------------------- /web/[Easy] Testimonial/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Easy] Testimonial/entrypoint.sh -------------------------------------------------------------------------------- /web/[Easy] Testimonial/htb/solution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Easy] Testimonial/htb/solution.txt -------------------------------------------------------------------------------- /web/[Easy] Testimonial/htb/solver/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Easy] Testimonial/htb/solver/.env -------------------------------------------------------------------------------- /web/[Easy] Testimonial/htb/solver/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Easy] Testimonial/htb/solver/go.mod -------------------------------------------------------------------------------- /web/[Easy] Testimonial/htb/solver/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Easy] Testimonial/htb/solver/go.sum -------------------------------------------------------------------------------- /web/[Easy] Testimonial/htb/solver/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Easy] Testimonial/htb/solver/main.go -------------------------------------------------------------------------------- /web/[Easy] Testimonial/htb/solver/pb/ptypes.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Easy] Testimonial/htb/solver/pb/ptypes.pb.go -------------------------------------------------------------------------------- /web/[Easy] Testimonial/htb/solver/pb/ptypes.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Easy] Testimonial/htb/solver/pb/ptypes.proto -------------------------------------------------------------------------------- /web/[Easy] Testimonial/htb/solver/pb/ptypes_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Easy] Testimonial/htb/solver/pb/ptypes_grpc.pb.go -------------------------------------------------------------------------------- /web/[Easy] Testimonial/htb/solver/pwn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Easy] Testimonial/htb/solver/pwn.go -------------------------------------------------------------------------------- /web/[Hard] Percetron/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Hard] Percetron/.gitignore -------------------------------------------------------------------------------- /web/[Hard] Percetron/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Hard] Percetron/README.md -------------------------------------------------------------------------------- /web/[Hard] Percetron/assets/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Hard] Percetron/assets/about.png -------------------------------------------------------------------------------- /web/[Hard] Percetron/assets/addcert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Hard] Percetron/assets/addcert.png -------------------------------------------------------------------------------- /web/[Hard] Percetron/assets/admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Hard] Percetron/assets/admin.png -------------------------------------------------------------------------------- /web/[Hard] Percetron/assets/certificates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Hard] Percetron/assets/certificates.png -------------------------------------------------------------------------------- /web/[Hard] Percetron/assets/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Hard] Percetron/assets/home.png -------------------------------------------------------------------------------- /web/[Hard] Percetron/assets/hosts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Hard] Percetron/assets/hosts.png -------------------------------------------------------------------------------- /web/[Hard] Percetron/assets/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Hard] Percetron/assets/login.png -------------------------------------------------------------------------------- /web/[Hard] Percetron/assets/management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Hard] Percetron/assets/management.png -------------------------------------------------------------------------------- /web/[Hard] Percetron/assets/op_msg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Hard] Percetron/assets/op_msg.png -------------------------------------------------------------------------------- /web/[Hard] Percetron/assets/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Hard] Percetron/assets/overview.png -------------------------------------------------------------------------------- /web/[Hard] Percetron/assets/register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Hard] Percetron/assets/register.png -------------------------------------------------------------------------------- /web/[Hard] Percetron/assets/smuggling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Hard] Percetron/assets/smuggling.png -------------------------------------------------------------------------------- /web/[Hard] Percetron/assets/smuggling2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Hard] Percetron/assets/smuggling2.png -------------------------------------------------------------------------------- /web/[Hard] Percetron/assets/solved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Hard] Percetron/assets/solved.png -------------------------------------------------------------------------------- /web/[Hard] Percetron/conf/haproxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Hard] Percetron/conf/haproxy.conf -------------------------------------------------------------------------------- /web/[Hard] Percetron/conf/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Hard] Percetron/conf/supervisord.conf -------------------------------------------------------------------------------- /web/[Hard] Percetron/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Hard] Percetron/entrypoint.sh -------------------------------------------------------------------------------- /web/[Hard] Percetron/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Hard] Percetron/htb/solver.py -------------------------------------------------------------------------------- /web/[Insane] apexsurvive/assets/admhoem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Insane] apexsurvive/assets/admhoem.png -------------------------------------------------------------------------------- /web/[Insane] apexsurvive/assets/afterverified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Insane] apexsurvive/assets/afterverified.png -------------------------------------------------------------------------------- /web/[Insane] apexsurvive/assets/chrover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Insane] apexsurvive/assets/chrover.png -------------------------------------------------------------------------------- /web/[Insane] apexsurvive/assets/cook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Insane] apexsurvive/assets/cook.png -------------------------------------------------------------------------------- /web/[Insane] apexsurvive/assets/csrfdone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Insane] apexsurvive/assets/csrfdone.png -------------------------------------------------------------------------------- /web/[Insane] apexsurvive/assets/cssexpl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Insane] apexsurvive/assets/cssexpl.png -------------------------------------------------------------------------------- /web/[Insane] apexsurvive/assets/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Insane] apexsurvive/assets/email.png -------------------------------------------------------------------------------- /web/[Insane] apexsurvive/assets/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Insane] apexsurvive/assets/flag.png -------------------------------------------------------------------------------- /web/[Insane] apexsurvive/assets/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Insane] apexsurvive/assets/home.png -------------------------------------------------------------------------------- /web/[Insane] apexsurvive/assets/inbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Insane] apexsurvive/assets/inbox.png -------------------------------------------------------------------------------- /web/[Insane] apexsurvive/assets/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Insane] apexsurvive/assets/info.png -------------------------------------------------------------------------------- /web/[Insane] apexsurvive/assets/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Insane] apexsurvive/assets/login.png -------------------------------------------------------------------------------- /web/[Insane] apexsurvive/assets/proadd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Insane] apexsurvive/assets/proadd.png -------------------------------------------------------------------------------- /web/[Insane] apexsurvive/assets/product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Insane] apexsurvive/assets/product.png -------------------------------------------------------------------------------- /web/[Insane] apexsurvive/bot/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Insane] apexsurvive/bot/app.py -------------------------------------------------------------------------------- /web/[Insane] apexsurvive/email-app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Insane] apexsurvive/email-app/index.js -------------------------------------------------------------------------------- /web/[Insane] apexsurvive/email-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Insane] apexsurvive/email-app/package-lock.json -------------------------------------------------------------------------------- /web/[Insane] apexsurvive/email-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Insane] apexsurvive/email-app/package.json -------------------------------------------------------------------------------- /web/[Insane] apexsurvive/email-app/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Insane] apexsurvive/email-app/routes/index.js -------------------------------------------------------------------------------- /web/[Insane] apexsurvive/email-app/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Insane] apexsurvive/email-app/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /web/[Insane] apexsurvive/email-app/static/images/LaughtPepe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Insane] apexsurvive/email-app/static/images/LaughtPepe.gif -------------------------------------------------------------------------------- /web/[Insane] apexsurvive/email-app/views/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Insane] apexsurvive/email-app/views/home.html -------------------------------------------------------------------------------- /web/[Insane] apexsurvive/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Insane] apexsurvive/entrypoint.sh -------------------------------------------------------------------------------- /web/[Insane] apexsurvive/htb/css_injection_csrf/css-exfiltrator-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Insane] apexsurvive/htb/css_injection_csrf/css-exfiltrator-server.js -------------------------------------------------------------------------------- /web/[Insane] apexsurvive/htb/css_injection_csrf/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Insane] apexsurvive/htb/css_injection_csrf/package-lock.json -------------------------------------------------------------------------------- /web/[Insane] apexsurvive/htb/css_injection_csrf/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Insane] apexsurvive/htb/css_injection_csrf/package.json -------------------------------------------------------------------------------- /web/[Insane] apexsurvive/htb/genPDF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Insane] apexsurvive/htb/genPDF.py -------------------------------------------------------------------------------- /web/[Insane] apexsurvive/htb/payload.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Insane] apexsurvive/htb/payload.pdf -------------------------------------------------------------------------------- /web/[Insane] apexsurvive/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Insane] apexsurvive/htb/solver.py -------------------------------------------------------------------------------- /web/[Insane] apexsurvive/htb/test.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Insane] apexsurvive/htb/test.jpeg -------------------------------------------------------------------------------- /web/[Insane] apexsurvive/official_writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Insane] apexsurvive/official_writeup.md -------------------------------------------------------------------------------- /web/[Medium] LockTalk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Medium] LockTalk/README.md -------------------------------------------------------------------------------- /web/[Medium] LockTalk/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/[Medium] LockTalk/conf/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Medium] LockTalk/conf/haproxy.cfg -------------------------------------------------------------------------------- /web/[Medium] LockTalk/conf/requirements.txt: -------------------------------------------------------------------------------- 1 | uwsgi 2 | Flask 3 | requests 4 | python_jwt==3.3.3 -------------------------------------------------------------------------------- /web/[Medium] LockTalk/conf/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Medium] LockTalk/conf/supervisord.conf -------------------------------------------------------------------------------- /web/[Medium] LockTalk/conf/uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Medium] LockTalk/conf/uwsgi.ini -------------------------------------------------------------------------------- /web/[Medium] LockTalk/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Medium] LockTalk/htb/solver.py -------------------------------------------------------------------------------- /web/[Medium] SerialFlow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Medium] SerialFlow/README.md -------------------------------------------------------------------------------- /web/[Medium] SerialFlow/assets/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Medium] SerialFlow/assets/overview.png -------------------------------------------------------------------------------- /web/[Medium] SerialFlow/assets/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Medium] SerialFlow/assets/purple.png -------------------------------------------------------------------------------- /web/[Medium] SerialFlow/conf/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Medium] SerialFlow/conf/supervisord.conf -------------------------------------------------------------------------------- /web/[Medium] SerialFlow/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Medium] SerialFlow/entrypoint.sh -------------------------------------------------------------------------------- /web/[Medium] SerialFlow/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Medium] SerialFlow/htb/solver.py -------------------------------------------------------------------------------- /web/[Very Easy] Flag Command/assets/dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Very Easy] Flag Command/assets/dev.png -------------------------------------------------------------------------------- /web/[Very Easy] Flag Command/assets/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Very Easy] Flag Command/assets/flag.png -------------------------------------------------------------------------------- /web/[Very Easy] Flag Command/assets/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Very Easy] Flag Command/assets/home.png -------------------------------------------------------------------------------- /web/[Very Easy] Flag Command/assets/res.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Very Easy] Flag Command/assets/res.png -------------------------------------------------------------------------------- /web/[Very Easy] Flag Command/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Very Easy] Flag Command/htb/solver.py -------------------------------------------------------------------------------- /web/[Very Easy] Flag Command/official_writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Very Easy] Flag Command/official_writeup.md -------------------------------------------------------------------------------- /web/[Very Easy] KORP Terminal/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/[Very Easy] KORP Terminal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Very Easy] KORP Terminal/README.md -------------------------------------------------------------------------------- /web/[Very Easy] KORP Terminal/assets/dump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Very Easy] KORP Terminal/assets/dump.png -------------------------------------------------------------------------------- /web/[Very Easy] KORP Terminal/assets/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Very Easy] KORP Terminal/assets/overview.png -------------------------------------------------------------------------------- /web/[Very Easy] KORP Terminal/assets/sqlmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Very Easy] KORP Terminal/assets/sqlmap.png -------------------------------------------------------------------------------- /web/[Very Easy] KORP Terminal/conf/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Very Easy] KORP Terminal/conf/supervisord.conf -------------------------------------------------------------------------------- /web/[Very Easy] KORP Terminal/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Very Easy] KORP Terminal/entrypoint.sh -------------------------------------------------------------------------------- /web/[Very Easy] KORP Terminal/htb/solver.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/[Very Easy] TimeKORP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Very Easy] TimeKORP/README.md -------------------------------------------------------------------------------- /web/[Very Easy] TimeKORP/assets/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Very Easy] TimeKORP/assets/preview.png -------------------------------------------------------------------------------- /web/[Very Easy] TimeKORP/flag: -------------------------------------------------------------------------------- 1 | HTB{t1m3_f0r_th3_ult1m4t3_pwn4g3} -------------------------------------------------------------------------------- /web/[Very Easy] TimeKORP/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/cyber-apocalypse-2024/HEAD/web/[Very Easy] TimeKORP/htb/solver.py --------------------------------------------------------------------------------