├── README.md ├── assets ├── banner.png ├── htb.png ├── logo.png └── logo_htb.png ├── coding ├── [Easy] minimax │ ├── README.md │ └── solutions │ │ └── sol.py ├── [Easy] replacement │ ├── README.md │ ├── notes.md │ └── solutions │ │ └── solve.py ├── [Very Easy] addition │ ├── README.md │ └── solutions │ │ └── solve.py ├── [Very Easy] oddly_even │ ├── README.md │ └── solutions │ │ └── solve.py └── [Very Easy] reversal │ ├── README.md │ ├── notes.md │ └── solutions │ └── solve.py ├── crypto ├── [Easy] binary basis │ ├── Makefile │ ├── README.md │ └── htb │ │ ├── output.txt │ │ └── solver.py ├── [Easy] hybrid unifier │ ├── Makefile │ ├── README.md │ └── htb │ │ └── solver.py ├── [Very Easy] brevi moduli │ ├── Makefile │ ├── README.md │ └── htb │ │ └── solver.py ├── [Very Easy] sekur julius │ ├── Makefile │ ├── README.md │ └── htb │ │ ├── output.txt │ │ └── solver.py └── [Very Easy] sugar free candies │ ├── Makefile │ ├── README.md │ ├── assets │ └── images │ │ ├── banner.png │ │ └── htb.png │ └── htb │ ├── output.txt │ └── solver.py ├── forensics ├── [Easy] Foggy Intrusion │ └── writeup │ │ ├── FoggyIntrusion.md │ │ └── assets │ │ ├── 190ef889-6f77-4b34-9a14-a33e0e43ed6d.png │ │ ├── b1786566-3cd6-43b0-ab0f-2e46060f59d1.png │ │ ├── b957e250-d870-45e9-9ddd-a23c3e59dc3d.png │ │ ├── banner.png │ │ ├── bb0c99b7-ca29-4152-9019-dcdf5e32fe8a.png │ │ ├── cc9c2287-23f8-4686-80da-6b2eb3ce26c5.png │ │ ├── cfd963ee-5771-44cf-a268-07567849b207.png │ │ ├── f714c2e3-697a-4047-9b54-b451b729b944.png │ │ └── htb.png ├── [Easy] Ghostly Persistence │ └── writeup │ │ ├── GhostlyPersistence.md │ │ └── assets │ │ ├── 1dbbc924-a10c-48e0-9dc7-81caabab0cfc.png │ │ ├── 370adade-3968-49b1-bf60-b2e8ba496e87.png │ │ ├── 6a4877cb-bfea-434b-9c46-80f3d22a148e.png │ │ ├── 6ddcf384-8eb1-4246-ba81-d1213f560504.png │ │ ├── 8579e260-138c-4304-973f-783efdaefb8e.png │ │ ├── 8a8458f9-9413-44c1-95b8-f779ed0a3834.png │ │ ├── b2cd3166-45f1-4cc1-90a0-813c89f414d8.png │ │ ├── banner.png │ │ ├── bb18b989-f630-4a25-9331-50a50e2d9eb0.png │ │ ├── bf129833-bb6b-4ee9-abe4-7655d769fa70.png │ │ ├── e3dbc8fc-6f5e-4c24-89c8-f07ce25beb0d.png │ │ └── htb.png ├── [Very Easy] Forbidden Manuscript │ ├── Readme.md │ ├── assets │ │ ├── banner.png │ │ ├── htb.png │ │ ├── writeup1.png │ │ ├── writeup2.png │ │ ├── writeup3.png │ │ ├── writeup4.png │ │ └── writeup5.png │ └── dev │ │ ├── command.md │ │ └── shadowbrook-library │ │ ├── .7z │ │ ├── docker-compose.yml │ │ ├── package-lock.json │ │ └── package.json ├── [Very Easy] Sp00ky Theme │ ├── Readme.md │ └── assets │ │ ├── banner.png │ │ └── htb.png └── [Very Easy] The Shortcut Haunting │ ├── README.md │ └── assets │ ├── banner.png │ ├── flag.png │ ├── htb.png │ └── strings.png ├── pwn ├── [Easy] El Mundo │ ├── README.md │ ├── assets │ │ ├── banner.png │ │ └── htb.png │ └── htb │ │ └── solver.py ├── [Easy] El Pipo │ ├── README.md │ └── assets │ │ ├── banner.png │ │ ├── htb.png │ │ └── poc.gif ├── [Very Easy] El Teteo │ ├── README.md │ ├── assets │ │ ├── banner.png │ │ ├── htb.png │ │ └── interface.png │ └── htb │ │ └── solver.py ├── [Very Easy] Mathematricks │ ├── README.md │ ├── assets │ │ ├── Screenshot from 2024-09-06 20-45-21.png │ │ ├── banner.png │ │ ├── htb.png │ │ ├── int.png │ │ ├── inter.png │ │ ├── inter1.png │ │ └── poc.png │ └── htb │ │ └── solver.py └── [Very Easy] Que onda │ ├── README.md │ ├── assets │ ├── banner.png │ ├── htb.png │ ├── interface.png │ └── poc.png │ └── htb │ └── solver.py ├── rev ├── [Easy] LinkHands │ └── README.md ├── [Easy] Terrorfryer │ ├── README.md │ └── htb │ │ └── solve.py ├── [Very Easy] CryptOfTheUndead │ └── README.md ├── [Very Easy] Graverobber │ ├── README.md │ └── htb │ │ └── solve.py └── [Very Easy] SpookyPass │ └── README.md └── web ├── [Easy] Waywitch ├── README.md ├── assets │ ├── banner.png │ ├── flag.png │ ├── home.png │ ├── htb.png │ ├── sign.png │ └── submitted.png └── entrypoint.sh ├── [Very Easy] Phantom Script ├── README.md └── assets │ ├── banner.png │ ├── flag.png │ ├── home.png │ ├── htb.png │ └── search.png ├── [Very Easy] Unholy Union ├── README.md ├── assets │ ├── banner.png │ ├── column.png │ ├── error.png │ ├── flag.png │ ├── home.png │ ├── htb.png │ ├── null.png │ ├── schema.png │ ├── search.png │ └── table.png └── entrypoint.sh └── [Very Easy] Void Whispers ├── README.md ├── assets ├── banner.png ├── binary.png ├── flag.png ├── home.png ├── htb.png └── save.png └── htb └── solver.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/README.md -------------------------------------------------------------------------------- /assets/banner.png: -------------------------------------------------------------------------------- 1 | htb.png -------------------------------------------------------------------------------- /assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/assets/htb.png -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/logo_htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/assets/logo_htb.png -------------------------------------------------------------------------------- /coding/[Easy] minimax/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/coding/[Easy] minimax/README.md -------------------------------------------------------------------------------- /coding/[Easy] minimax/solutions/sol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/coding/[Easy] minimax/solutions/sol.py -------------------------------------------------------------------------------- /coding/[Easy] replacement/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/coding/[Easy] replacement/README.md -------------------------------------------------------------------------------- /coding/[Easy] replacement/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/coding/[Easy] replacement/notes.md -------------------------------------------------------------------------------- /coding/[Easy] replacement/solutions/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/coding/[Easy] replacement/solutions/solve.py -------------------------------------------------------------------------------- /coding/[Very Easy] addition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/coding/[Very Easy] addition/README.md -------------------------------------------------------------------------------- /coding/[Very Easy] addition/solutions/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/coding/[Very Easy] addition/solutions/solve.py -------------------------------------------------------------------------------- /coding/[Very Easy] oddly_even/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/coding/[Very Easy] oddly_even/README.md -------------------------------------------------------------------------------- /coding/[Very Easy] oddly_even/solutions/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/coding/[Very Easy] oddly_even/solutions/solve.py -------------------------------------------------------------------------------- /coding/[Very Easy] reversal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/coding/[Very Easy] reversal/README.md -------------------------------------------------------------------------------- /coding/[Very Easy] reversal/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/coding/[Very Easy] reversal/notes.md -------------------------------------------------------------------------------- /coding/[Very Easy] reversal/solutions/solve.py: -------------------------------------------------------------------------------- 1 | s = input() 2 | 3 | print(s[::-1]) 4 | -------------------------------------------------------------------------------- /crypto/[Easy] binary basis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/crypto/[Easy] binary basis/Makefile -------------------------------------------------------------------------------- /crypto/[Easy] binary basis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/crypto/[Easy] binary basis/README.md -------------------------------------------------------------------------------- /crypto/[Easy] binary basis/htb/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/crypto/[Easy] binary basis/htb/output.txt -------------------------------------------------------------------------------- /crypto/[Easy] binary basis/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/crypto/[Easy] binary basis/htb/solver.py -------------------------------------------------------------------------------- /crypto/[Easy] hybrid unifier/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/crypto/[Easy] hybrid unifier/Makefile -------------------------------------------------------------------------------- /crypto/[Easy] hybrid unifier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/crypto/[Easy] hybrid unifier/README.md -------------------------------------------------------------------------------- /crypto/[Easy] hybrid unifier/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/crypto/[Easy] hybrid unifier/htb/solver.py -------------------------------------------------------------------------------- /crypto/[Very Easy] brevi moduli/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/crypto/[Very Easy] brevi moduli/Makefile -------------------------------------------------------------------------------- /crypto/[Very Easy] brevi moduli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/crypto/[Very Easy] brevi moduli/README.md -------------------------------------------------------------------------------- /crypto/[Very Easy] brevi moduli/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/crypto/[Very Easy] brevi moduli/htb/solver.py -------------------------------------------------------------------------------- /crypto/[Very Easy] sekur julius/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/crypto/[Very Easy] sekur julius/Makefile -------------------------------------------------------------------------------- /crypto/[Very Easy] sekur julius/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/crypto/[Very Easy] sekur julius/README.md -------------------------------------------------------------------------------- /crypto/[Very Easy] sekur julius/htb/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/crypto/[Very Easy] sekur julius/htb/output.txt -------------------------------------------------------------------------------- /crypto/[Very Easy] sekur julius/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/crypto/[Very Easy] sekur julius/htb/solver.py -------------------------------------------------------------------------------- /crypto/[Very Easy] sugar free candies/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/crypto/[Very Easy] sugar free candies/Makefile -------------------------------------------------------------------------------- /crypto/[Very Easy] sugar free candies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/crypto/[Very Easy] sugar free candies/README.md -------------------------------------------------------------------------------- /crypto/[Very Easy] sugar free candies/assets/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/crypto/[Very Easy] sugar free candies/assets/images/banner.png -------------------------------------------------------------------------------- /crypto/[Very Easy] sugar free candies/assets/images/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/crypto/[Very Easy] sugar free candies/assets/images/htb.png -------------------------------------------------------------------------------- /crypto/[Very Easy] sugar free candies/htb/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/crypto/[Very Easy] sugar free candies/htb/output.txt -------------------------------------------------------------------------------- /crypto/[Very Easy] sugar free candies/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/crypto/[Very Easy] sugar free candies/htb/solver.py -------------------------------------------------------------------------------- /forensics/[Easy] Foggy Intrusion/writeup/FoggyIntrusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Easy] Foggy Intrusion/writeup/FoggyIntrusion.md -------------------------------------------------------------------------------- /forensics/[Easy] Foggy Intrusion/writeup/assets/190ef889-6f77-4b34-9a14-a33e0e43ed6d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Easy] Foggy Intrusion/writeup/assets/190ef889-6f77-4b34-9a14-a33e0e43ed6d.png -------------------------------------------------------------------------------- /forensics/[Easy] Foggy Intrusion/writeup/assets/b1786566-3cd6-43b0-ab0f-2e46060f59d1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Easy] Foggy Intrusion/writeup/assets/b1786566-3cd6-43b0-ab0f-2e46060f59d1.png -------------------------------------------------------------------------------- /forensics/[Easy] Foggy Intrusion/writeup/assets/b957e250-d870-45e9-9ddd-a23c3e59dc3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Easy] Foggy Intrusion/writeup/assets/b957e250-d870-45e9-9ddd-a23c3e59dc3d.png -------------------------------------------------------------------------------- /forensics/[Easy] Foggy Intrusion/writeup/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Easy] Foggy Intrusion/writeup/assets/banner.png -------------------------------------------------------------------------------- /forensics/[Easy] Foggy Intrusion/writeup/assets/bb0c99b7-ca29-4152-9019-dcdf5e32fe8a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Easy] Foggy Intrusion/writeup/assets/bb0c99b7-ca29-4152-9019-dcdf5e32fe8a.png -------------------------------------------------------------------------------- /forensics/[Easy] Foggy Intrusion/writeup/assets/cc9c2287-23f8-4686-80da-6b2eb3ce26c5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Easy] Foggy Intrusion/writeup/assets/cc9c2287-23f8-4686-80da-6b2eb3ce26c5.png -------------------------------------------------------------------------------- /forensics/[Easy] Foggy Intrusion/writeup/assets/cfd963ee-5771-44cf-a268-07567849b207.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Easy] Foggy Intrusion/writeup/assets/cfd963ee-5771-44cf-a268-07567849b207.png -------------------------------------------------------------------------------- /forensics/[Easy] Foggy Intrusion/writeup/assets/f714c2e3-697a-4047-9b54-b451b729b944.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Easy] Foggy Intrusion/writeup/assets/f714c2e3-697a-4047-9b54-b451b729b944.png -------------------------------------------------------------------------------- /forensics/[Easy] Foggy Intrusion/writeup/assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Easy] Foggy Intrusion/writeup/assets/htb.png -------------------------------------------------------------------------------- /forensics/[Easy] Ghostly Persistence/writeup/GhostlyPersistence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Easy] Ghostly Persistence/writeup/GhostlyPersistence.md -------------------------------------------------------------------------------- /forensics/[Easy] Ghostly Persistence/writeup/assets/1dbbc924-a10c-48e0-9dc7-81caabab0cfc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Easy] Ghostly Persistence/writeup/assets/1dbbc924-a10c-48e0-9dc7-81caabab0cfc.png -------------------------------------------------------------------------------- /forensics/[Easy] Ghostly Persistence/writeup/assets/370adade-3968-49b1-bf60-b2e8ba496e87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Easy] Ghostly Persistence/writeup/assets/370adade-3968-49b1-bf60-b2e8ba496e87.png -------------------------------------------------------------------------------- /forensics/[Easy] Ghostly Persistence/writeup/assets/6a4877cb-bfea-434b-9c46-80f3d22a148e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Easy] Ghostly Persistence/writeup/assets/6a4877cb-bfea-434b-9c46-80f3d22a148e.png -------------------------------------------------------------------------------- /forensics/[Easy] Ghostly Persistence/writeup/assets/6ddcf384-8eb1-4246-ba81-d1213f560504.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Easy] Ghostly Persistence/writeup/assets/6ddcf384-8eb1-4246-ba81-d1213f560504.png -------------------------------------------------------------------------------- /forensics/[Easy] Ghostly Persistence/writeup/assets/8579e260-138c-4304-973f-783efdaefb8e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Easy] Ghostly Persistence/writeup/assets/8579e260-138c-4304-973f-783efdaefb8e.png -------------------------------------------------------------------------------- /forensics/[Easy] Ghostly Persistence/writeup/assets/8a8458f9-9413-44c1-95b8-f779ed0a3834.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Easy] Ghostly Persistence/writeup/assets/8a8458f9-9413-44c1-95b8-f779ed0a3834.png -------------------------------------------------------------------------------- /forensics/[Easy] Ghostly Persistence/writeup/assets/b2cd3166-45f1-4cc1-90a0-813c89f414d8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Easy] Ghostly Persistence/writeup/assets/b2cd3166-45f1-4cc1-90a0-813c89f414d8.png -------------------------------------------------------------------------------- /forensics/[Easy] Ghostly Persistence/writeup/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Easy] Ghostly Persistence/writeup/assets/banner.png -------------------------------------------------------------------------------- /forensics/[Easy] Ghostly Persistence/writeup/assets/bb18b989-f630-4a25-9331-50a50e2d9eb0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Easy] Ghostly Persistence/writeup/assets/bb18b989-f630-4a25-9331-50a50e2d9eb0.png -------------------------------------------------------------------------------- /forensics/[Easy] Ghostly Persistence/writeup/assets/bf129833-bb6b-4ee9-abe4-7655d769fa70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Easy] Ghostly Persistence/writeup/assets/bf129833-bb6b-4ee9-abe4-7655d769fa70.png -------------------------------------------------------------------------------- /forensics/[Easy] Ghostly Persistence/writeup/assets/e3dbc8fc-6f5e-4c24-89c8-f07ce25beb0d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Easy] Ghostly Persistence/writeup/assets/e3dbc8fc-6f5e-4c24-89c8-f07ce25beb0d.png -------------------------------------------------------------------------------- /forensics/[Easy] Ghostly Persistence/writeup/assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Easy] Ghostly Persistence/writeup/assets/htb.png -------------------------------------------------------------------------------- /forensics/[Very Easy] Forbidden Manuscript/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Very Easy] Forbidden Manuscript/Readme.md -------------------------------------------------------------------------------- /forensics/[Very Easy] Forbidden Manuscript/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Very Easy] Forbidden Manuscript/assets/banner.png -------------------------------------------------------------------------------- /forensics/[Very Easy] Forbidden Manuscript/assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Very Easy] Forbidden Manuscript/assets/htb.png -------------------------------------------------------------------------------- /forensics/[Very Easy] Forbidden Manuscript/assets/writeup1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Very Easy] Forbidden Manuscript/assets/writeup1.png -------------------------------------------------------------------------------- /forensics/[Very Easy] Forbidden Manuscript/assets/writeup2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Very Easy] Forbidden Manuscript/assets/writeup2.png -------------------------------------------------------------------------------- /forensics/[Very Easy] Forbidden Manuscript/assets/writeup3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Very Easy] Forbidden Manuscript/assets/writeup3.png -------------------------------------------------------------------------------- /forensics/[Very Easy] Forbidden Manuscript/assets/writeup4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Very Easy] Forbidden Manuscript/assets/writeup4.png -------------------------------------------------------------------------------- /forensics/[Very Easy] Forbidden Manuscript/assets/writeup5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Very Easy] Forbidden Manuscript/assets/writeup5.png -------------------------------------------------------------------------------- /forensics/[Very Easy] Forbidden Manuscript/dev/command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Very Easy] Forbidden Manuscript/dev/command.md -------------------------------------------------------------------------------- /forensics/[Very Easy] Forbidden Manuscript/dev/shadowbrook-library/.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Very Easy] Forbidden Manuscript/dev/shadowbrook-library/.7z -------------------------------------------------------------------------------- /forensics/[Very Easy] Forbidden Manuscript/dev/shadowbrook-library/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Very Easy] Forbidden Manuscript/dev/shadowbrook-library/docker-compose.yml -------------------------------------------------------------------------------- /forensics/[Very Easy] Forbidden Manuscript/dev/shadowbrook-library/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Very Easy] Forbidden Manuscript/dev/shadowbrook-library/package-lock.json -------------------------------------------------------------------------------- /forensics/[Very Easy] Forbidden Manuscript/dev/shadowbrook-library/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Very Easy] Forbidden Manuscript/dev/shadowbrook-library/package.json -------------------------------------------------------------------------------- /forensics/[Very Easy] Sp00ky Theme/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Very Easy] Sp00ky Theme/Readme.md -------------------------------------------------------------------------------- /forensics/[Very Easy] Sp00ky Theme/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Very Easy] Sp00ky Theme/assets/banner.png -------------------------------------------------------------------------------- /forensics/[Very Easy] Sp00ky Theme/assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Very Easy] Sp00ky Theme/assets/htb.png -------------------------------------------------------------------------------- /forensics/[Very Easy] The Shortcut Haunting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Very Easy] The Shortcut Haunting/README.md -------------------------------------------------------------------------------- /forensics/[Very Easy] The Shortcut Haunting/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Very Easy] The Shortcut Haunting/assets/banner.png -------------------------------------------------------------------------------- /forensics/[Very Easy] The Shortcut Haunting/assets/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Very Easy] The Shortcut Haunting/assets/flag.png -------------------------------------------------------------------------------- /forensics/[Very Easy] The Shortcut Haunting/assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Very Easy] The Shortcut Haunting/assets/htb.png -------------------------------------------------------------------------------- /forensics/[Very Easy] The Shortcut Haunting/assets/strings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/forensics/[Very Easy] The Shortcut Haunting/assets/strings.png -------------------------------------------------------------------------------- /pwn/[Easy] El Mundo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/pwn/[Easy] El Mundo/README.md -------------------------------------------------------------------------------- /pwn/[Easy] El Mundo/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/pwn/[Easy] El Mundo/assets/banner.png -------------------------------------------------------------------------------- /pwn/[Easy] El Mundo/assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/pwn/[Easy] El Mundo/assets/htb.png -------------------------------------------------------------------------------- /pwn/[Easy] El Mundo/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/pwn/[Easy] El Mundo/htb/solver.py -------------------------------------------------------------------------------- /pwn/[Easy] El Pipo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/pwn/[Easy] El Pipo/README.md -------------------------------------------------------------------------------- /pwn/[Easy] El Pipo/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/pwn/[Easy] El Pipo/assets/banner.png -------------------------------------------------------------------------------- /pwn/[Easy] El Pipo/assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/pwn/[Easy] El Pipo/assets/htb.png -------------------------------------------------------------------------------- /pwn/[Easy] El Pipo/assets/poc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/pwn/[Easy] El Pipo/assets/poc.gif -------------------------------------------------------------------------------- /pwn/[Very Easy] El Teteo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/pwn/[Very Easy] El Teteo/README.md -------------------------------------------------------------------------------- /pwn/[Very Easy] El Teteo/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/pwn/[Very Easy] El Teteo/assets/banner.png -------------------------------------------------------------------------------- /pwn/[Very Easy] El Teteo/assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/pwn/[Very Easy] El Teteo/assets/htb.png -------------------------------------------------------------------------------- /pwn/[Very Easy] El Teteo/assets/interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/pwn/[Very Easy] El Teteo/assets/interface.png -------------------------------------------------------------------------------- /pwn/[Very Easy] El Teteo/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/pwn/[Very Easy] El Teteo/htb/solver.py -------------------------------------------------------------------------------- /pwn/[Very Easy] Mathematricks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/pwn/[Very Easy] Mathematricks/README.md -------------------------------------------------------------------------------- /pwn/[Very Easy] Mathematricks/assets/Screenshot from 2024-09-06 20-45-21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/pwn/[Very Easy] Mathematricks/assets/Screenshot from 2024-09-06 20-45-21.png -------------------------------------------------------------------------------- /pwn/[Very Easy] Mathematricks/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/pwn/[Very Easy] Mathematricks/assets/banner.png -------------------------------------------------------------------------------- /pwn/[Very Easy] Mathematricks/assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/pwn/[Very Easy] Mathematricks/assets/htb.png -------------------------------------------------------------------------------- /pwn/[Very Easy] Mathematricks/assets/int.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/pwn/[Very Easy] Mathematricks/assets/int.png -------------------------------------------------------------------------------- /pwn/[Very Easy] Mathematricks/assets/inter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/pwn/[Very Easy] Mathematricks/assets/inter.png -------------------------------------------------------------------------------- /pwn/[Very Easy] Mathematricks/assets/inter1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/pwn/[Very Easy] Mathematricks/assets/inter1.png -------------------------------------------------------------------------------- /pwn/[Very Easy] Mathematricks/assets/poc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/pwn/[Very Easy] Mathematricks/assets/poc.png -------------------------------------------------------------------------------- /pwn/[Very Easy] Mathematricks/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/pwn/[Very Easy] Mathematricks/htb/solver.py -------------------------------------------------------------------------------- /pwn/[Very Easy] Que onda/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/pwn/[Very Easy] Que onda/README.md -------------------------------------------------------------------------------- /pwn/[Very Easy] Que onda/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/pwn/[Very Easy] Que onda/assets/banner.png -------------------------------------------------------------------------------- /pwn/[Very Easy] Que onda/assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/pwn/[Very Easy] Que onda/assets/htb.png -------------------------------------------------------------------------------- /pwn/[Very Easy] Que onda/assets/interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/pwn/[Very Easy] Que onda/assets/interface.png -------------------------------------------------------------------------------- /pwn/[Very Easy] Que onda/assets/poc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/pwn/[Very Easy] Que onda/assets/poc.png -------------------------------------------------------------------------------- /pwn/[Very Easy] Que onda/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/pwn/[Very Easy] Que onda/htb/solver.py -------------------------------------------------------------------------------- /rev/[Easy] LinkHands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/rev/[Easy] LinkHands/README.md -------------------------------------------------------------------------------- /rev/[Easy] Terrorfryer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/rev/[Easy] Terrorfryer/README.md -------------------------------------------------------------------------------- /rev/[Easy] Terrorfryer/htb/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/rev/[Easy] Terrorfryer/htb/solve.py -------------------------------------------------------------------------------- /rev/[Very Easy] CryptOfTheUndead/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/rev/[Very Easy] CryptOfTheUndead/README.md -------------------------------------------------------------------------------- /rev/[Very Easy] Graverobber/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/rev/[Very Easy] Graverobber/README.md -------------------------------------------------------------------------------- /rev/[Very Easy] Graverobber/htb/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/rev/[Very Easy] Graverobber/htb/solve.py -------------------------------------------------------------------------------- /rev/[Very Easy] SpookyPass/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/rev/[Very Easy] SpookyPass/README.md -------------------------------------------------------------------------------- /web/[Easy] Waywitch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/web/[Easy] Waywitch/README.md -------------------------------------------------------------------------------- /web/[Easy] Waywitch/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/web/[Easy] Waywitch/assets/banner.png -------------------------------------------------------------------------------- /web/[Easy] Waywitch/assets/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/web/[Easy] Waywitch/assets/flag.png -------------------------------------------------------------------------------- /web/[Easy] Waywitch/assets/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/web/[Easy] Waywitch/assets/home.png -------------------------------------------------------------------------------- /web/[Easy] Waywitch/assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/web/[Easy] Waywitch/assets/htb.png -------------------------------------------------------------------------------- /web/[Easy] Waywitch/assets/sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/web/[Easy] Waywitch/assets/sign.png -------------------------------------------------------------------------------- /web/[Easy] Waywitch/assets/submitted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/web/[Easy] Waywitch/assets/submitted.png -------------------------------------------------------------------------------- /web/[Easy] Waywitch/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/web/[Easy] Waywitch/entrypoint.sh -------------------------------------------------------------------------------- /web/[Very Easy] Phantom Script/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/web/[Very Easy] Phantom Script/README.md -------------------------------------------------------------------------------- /web/[Very Easy] Phantom Script/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/web/[Very Easy] Phantom Script/assets/banner.png -------------------------------------------------------------------------------- /web/[Very Easy] Phantom Script/assets/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/web/[Very Easy] Phantom Script/assets/flag.png -------------------------------------------------------------------------------- /web/[Very Easy] Phantom Script/assets/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/web/[Very Easy] Phantom Script/assets/home.png -------------------------------------------------------------------------------- /web/[Very Easy] Phantom Script/assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/web/[Very Easy] Phantom Script/assets/htb.png -------------------------------------------------------------------------------- /web/[Very Easy] Phantom Script/assets/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/web/[Very Easy] Phantom Script/assets/search.png -------------------------------------------------------------------------------- /web/[Very Easy] Unholy Union/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/web/[Very Easy] Unholy Union/README.md -------------------------------------------------------------------------------- /web/[Very Easy] Unholy Union/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/web/[Very Easy] Unholy Union/assets/banner.png -------------------------------------------------------------------------------- /web/[Very Easy] Unholy Union/assets/column.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/web/[Very Easy] Unholy Union/assets/column.png -------------------------------------------------------------------------------- /web/[Very Easy] Unholy Union/assets/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/web/[Very Easy] Unholy Union/assets/error.png -------------------------------------------------------------------------------- /web/[Very Easy] Unholy Union/assets/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/web/[Very Easy] Unholy Union/assets/flag.png -------------------------------------------------------------------------------- /web/[Very Easy] Unholy Union/assets/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/web/[Very Easy] Unholy Union/assets/home.png -------------------------------------------------------------------------------- /web/[Very Easy] Unholy Union/assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/web/[Very Easy] Unholy Union/assets/htb.png -------------------------------------------------------------------------------- /web/[Very Easy] Unholy Union/assets/null.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/web/[Very Easy] Unholy Union/assets/null.png -------------------------------------------------------------------------------- /web/[Very Easy] Unholy Union/assets/schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/web/[Very Easy] Unholy Union/assets/schema.png -------------------------------------------------------------------------------- /web/[Very Easy] Unholy Union/assets/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/web/[Very Easy] Unholy Union/assets/search.png -------------------------------------------------------------------------------- /web/[Very Easy] Unholy Union/assets/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/web/[Very Easy] Unholy Union/assets/table.png -------------------------------------------------------------------------------- /web/[Very Easy] Unholy Union/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/web/[Very Easy] Unholy Union/entrypoint.sh -------------------------------------------------------------------------------- /web/[Very Easy] Void Whispers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/web/[Very Easy] Void Whispers/README.md -------------------------------------------------------------------------------- /web/[Very Easy] Void Whispers/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/web/[Very Easy] Void Whispers/assets/banner.png -------------------------------------------------------------------------------- /web/[Very Easy] Void Whispers/assets/binary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/web/[Very Easy] Void Whispers/assets/binary.png -------------------------------------------------------------------------------- /web/[Very Easy] Void Whispers/assets/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/web/[Very Easy] Void Whispers/assets/flag.png -------------------------------------------------------------------------------- /web/[Very Easy] Void Whispers/assets/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/web/[Very Easy] Void Whispers/assets/home.png -------------------------------------------------------------------------------- /web/[Very Easy] Void Whispers/assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/web/[Very Easy] Void Whispers/assets/htb.png -------------------------------------------------------------------------------- /web/[Very Easy] Void Whispers/assets/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/web/[Very Easy] Void Whispers/assets/save.png -------------------------------------------------------------------------------- /web/[Very Easy] Void Whispers/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/hacktheboo-2024/HEAD/web/[Very Easy] Void Whispers/htb/solver.py --------------------------------------------------------------------------------