├── README.md ├── crypto ├── brainys-cipher │ ├── README.md │ ├── brainy.txt │ └── rsa-solver.py ├── class-yet-complicated │ ├── README.md │ └── ciphertext.txt ├── deceitful-batman │ ├── README.md │ └── finale.txt ├── keys │ ├── README.md │ ├── fernet-solver.py │ └── keys.txt ├── sick-teacher │ ├── README.md │ └── SickTeacher.txt ├── weak-rsa │ ├── README.md │ ├── flag.enc │ └── key.pub └── you-can-do-it │ ├── README.md │ └── you_can_do_it.txt ├── invite-code ├── README.md ├── htb-invite.png └── invitecode.py ├── stego ├── beatles │ ├── BAND.JPG │ ├── BAND.zip │ ├── README.md │ └── m3ss@g#_f0r_pAuL ├── da-vinci │ ├── Plans.jpg │ ├── README.md │ ├── Thepassword_is_the_small_name_of_the_actor_named_Hanks.jpg │ ├── _monalisa.jpg.extracted │ │ ├── 6DF3B.zip │ │ ├── Mona.jpg │ │ └── famous.zip │ ├── monalisa.jpg │ └── youtube.png ├── digital-cube │ ├── README.md │ ├── digitalcube.txt │ ├── qr-ascii.png │ ├── qr-readable.png │ └── qr.jpg ├── forest │ ├── README.md │ ├── forest.jpg │ └── random-colour-map.jpg ├── hackerman │ ├── README.md │ ├── google.png │ └── hackerman.jpg ├── milkshake │ ├── Milkshake.mp3 │ ├── README.md │ └── spectogram.png ├── pusheen-loves-graphs │ ├── Pusheen │ ├── README.md │ ├── change-node.png │ ├── graph.png │ └── node-updated.png ├── raining-blood │ ├── README.md │ └── RainingBlood.mp3 ├── senseless-behaviour │ ├── README.md │ ├── audacity.png │ ├── meow.png │ ├── meow.wav │ ├── meow_flag.txt │ ├── red-plane.png │ └── wavsteg-output.png ├── unified │ ├── BOD_30079.txt │ └── README.md └── widescreen │ ├── README.md │ ├── blue-plane.png │ ├── colour-inversion-xor.png │ ├── green-plane.png │ ├── random-color-map.png │ ├── red-plane.png │ └── widescreen.png └── web ├── cartographer ├── README.md ├── cartographer-index.png ├── flag.png └── panel.png ├── hdc ├── README.md ├── do-process.png ├── hdc-directory.png ├── hdc-email.png ├── hdc-emails.png ├── hdc-flag.png ├── hdc-index.png └── hdc-website.png └── lernaean ├── README.md ├── lernaean-index.png ├── lernaean.png └── nope.png /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/README.md -------------------------------------------------------------------------------- /crypto/brainys-cipher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/crypto/brainys-cipher/README.md -------------------------------------------------------------------------------- /crypto/brainys-cipher/brainy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/crypto/brainys-cipher/brainy.txt -------------------------------------------------------------------------------- /crypto/brainys-cipher/rsa-solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/crypto/brainys-cipher/rsa-solver.py -------------------------------------------------------------------------------- /crypto/class-yet-complicated/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/crypto/class-yet-complicated/README.md -------------------------------------------------------------------------------- /crypto/class-yet-complicated/ciphertext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/crypto/class-yet-complicated/ciphertext.txt -------------------------------------------------------------------------------- /crypto/deceitful-batman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/crypto/deceitful-batman/README.md -------------------------------------------------------------------------------- /crypto/deceitful-batman/finale.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/crypto/deceitful-batman/finale.txt -------------------------------------------------------------------------------- /crypto/keys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/crypto/keys/README.md -------------------------------------------------------------------------------- /crypto/keys/fernet-solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/crypto/keys/fernet-solver.py -------------------------------------------------------------------------------- /crypto/keys/keys.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/crypto/keys/keys.txt -------------------------------------------------------------------------------- /crypto/sick-teacher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/crypto/sick-teacher/README.md -------------------------------------------------------------------------------- /crypto/sick-teacher/SickTeacher.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/crypto/sick-teacher/SickTeacher.txt -------------------------------------------------------------------------------- /crypto/weak-rsa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/crypto/weak-rsa/README.md -------------------------------------------------------------------------------- /crypto/weak-rsa/flag.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/crypto/weak-rsa/flag.enc -------------------------------------------------------------------------------- /crypto/weak-rsa/key.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/crypto/weak-rsa/key.pub -------------------------------------------------------------------------------- /crypto/you-can-do-it/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/crypto/you-can-do-it/README.md -------------------------------------------------------------------------------- /crypto/you-can-do-it/you_can_do_it.txt: -------------------------------------------------------------------------------- 1 | YHAOANUTDSYOEOIEUTTC! 2 | -------------------------------------------------------------------------------- /invite-code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/invite-code/README.md -------------------------------------------------------------------------------- /invite-code/htb-invite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/invite-code/htb-invite.png -------------------------------------------------------------------------------- /invite-code/invitecode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/invite-code/invitecode.py -------------------------------------------------------------------------------- /stego/beatles/BAND.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/beatles/BAND.JPG -------------------------------------------------------------------------------- /stego/beatles/BAND.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/beatles/BAND.zip -------------------------------------------------------------------------------- /stego/beatles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/beatles/README.md -------------------------------------------------------------------------------- /stego/beatles/m3ss@g#_f0r_pAuL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/beatles/m3ss@g#_f0r_pAuL -------------------------------------------------------------------------------- /stego/da-vinci/Plans.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/da-vinci/Plans.jpg -------------------------------------------------------------------------------- /stego/da-vinci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/da-vinci/README.md -------------------------------------------------------------------------------- /stego/da-vinci/Thepassword_is_the_small_name_of_the_actor_named_Hanks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/da-vinci/Thepassword_is_the_small_name_of_the_actor_named_Hanks.jpg -------------------------------------------------------------------------------- /stego/da-vinci/_monalisa.jpg.extracted/6DF3B.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/da-vinci/_monalisa.jpg.extracted/6DF3B.zip -------------------------------------------------------------------------------- /stego/da-vinci/_monalisa.jpg.extracted/Mona.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/da-vinci/_monalisa.jpg.extracted/Mona.jpg -------------------------------------------------------------------------------- /stego/da-vinci/_monalisa.jpg.extracted/famous.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/da-vinci/_monalisa.jpg.extracted/famous.zip -------------------------------------------------------------------------------- /stego/da-vinci/monalisa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/da-vinci/monalisa.jpg -------------------------------------------------------------------------------- /stego/da-vinci/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/da-vinci/youtube.png -------------------------------------------------------------------------------- /stego/digital-cube/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/digital-cube/README.md -------------------------------------------------------------------------------- /stego/digital-cube/digitalcube.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/digital-cube/digitalcube.txt -------------------------------------------------------------------------------- /stego/digital-cube/qr-ascii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/digital-cube/qr-ascii.png -------------------------------------------------------------------------------- /stego/digital-cube/qr-readable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/digital-cube/qr-readable.png -------------------------------------------------------------------------------- /stego/digital-cube/qr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/digital-cube/qr.jpg -------------------------------------------------------------------------------- /stego/forest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/forest/README.md -------------------------------------------------------------------------------- /stego/forest/forest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/forest/forest.jpg -------------------------------------------------------------------------------- /stego/forest/random-colour-map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/forest/random-colour-map.jpg -------------------------------------------------------------------------------- /stego/hackerman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/hackerman/README.md -------------------------------------------------------------------------------- /stego/hackerman/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/hackerman/google.png -------------------------------------------------------------------------------- /stego/hackerman/hackerman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/hackerman/hackerman.jpg -------------------------------------------------------------------------------- /stego/milkshake/Milkshake.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/milkshake/Milkshake.mp3 -------------------------------------------------------------------------------- /stego/milkshake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/milkshake/README.md -------------------------------------------------------------------------------- /stego/milkshake/spectogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/milkshake/spectogram.png -------------------------------------------------------------------------------- /stego/pusheen-loves-graphs/Pusheen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/pusheen-loves-graphs/Pusheen -------------------------------------------------------------------------------- /stego/pusheen-loves-graphs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/pusheen-loves-graphs/README.md -------------------------------------------------------------------------------- /stego/pusheen-loves-graphs/change-node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/pusheen-loves-graphs/change-node.png -------------------------------------------------------------------------------- /stego/pusheen-loves-graphs/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/pusheen-loves-graphs/graph.png -------------------------------------------------------------------------------- /stego/pusheen-loves-graphs/node-updated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/pusheen-loves-graphs/node-updated.png -------------------------------------------------------------------------------- /stego/raining-blood/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/raining-blood/README.md -------------------------------------------------------------------------------- /stego/raining-blood/RainingBlood.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/raining-blood/RainingBlood.mp3 -------------------------------------------------------------------------------- /stego/senseless-behaviour/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/senseless-behaviour/README.md -------------------------------------------------------------------------------- /stego/senseless-behaviour/audacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/senseless-behaviour/audacity.png -------------------------------------------------------------------------------- /stego/senseless-behaviour/meow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/senseless-behaviour/meow.png -------------------------------------------------------------------------------- /stego/senseless-behaviour/meow.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/senseless-behaviour/meow.wav -------------------------------------------------------------------------------- /stego/senseless-behaviour/meow_flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/senseless-behaviour/meow_flag.txt -------------------------------------------------------------------------------- /stego/senseless-behaviour/red-plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/senseless-behaviour/red-plane.png -------------------------------------------------------------------------------- /stego/senseless-behaviour/wavsteg-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/senseless-behaviour/wavsteg-output.png -------------------------------------------------------------------------------- /stego/unified/BOD_30079.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/unified/BOD_30079.txt -------------------------------------------------------------------------------- /stego/unified/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/unified/README.md -------------------------------------------------------------------------------- /stego/widescreen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/widescreen/README.md -------------------------------------------------------------------------------- /stego/widescreen/blue-plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/widescreen/blue-plane.png -------------------------------------------------------------------------------- /stego/widescreen/colour-inversion-xor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/widescreen/colour-inversion-xor.png -------------------------------------------------------------------------------- /stego/widescreen/green-plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/widescreen/green-plane.png -------------------------------------------------------------------------------- /stego/widescreen/random-color-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/widescreen/random-color-map.png -------------------------------------------------------------------------------- /stego/widescreen/red-plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/widescreen/red-plane.png -------------------------------------------------------------------------------- /stego/widescreen/widescreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/stego/widescreen/widescreen.png -------------------------------------------------------------------------------- /web/cartographer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/web/cartographer/README.md -------------------------------------------------------------------------------- /web/cartographer/cartographer-index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/web/cartographer/cartographer-index.png -------------------------------------------------------------------------------- /web/cartographer/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/web/cartographer/flag.png -------------------------------------------------------------------------------- /web/cartographer/panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/web/cartographer/panel.png -------------------------------------------------------------------------------- /web/hdc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/web/hdc/README.md -------------------------------------------------------------------------------- /web/hdc/do-process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/web/hdc/do-process.png -------------------------------------------------------------------------------- /web/hdc/hdc-directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/web/hdc/hdc-directory.png -------------------------------------------------------------------------------- /web/hdc/hdc-email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/web/hdc/hdc-email.png -------------------------------------------------------------------------------- /web/hdc/hdc-emails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/web/hdc/hdc-emails.png -------------------------------------------------------------------------------- /web/hdc/hdc-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/web/hdc/hdc-flag.png -------------------------------------------------------------------------------- /web/hdc/hdc-index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/web/hdc/hdc-index.png -------------------------------------------------------------------------------- /web/hdc/hdc-website.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/web/hdc/hdc-website.png -------------------------------------------------------------------------------- /web/lernaean/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/web/lernaean/README.md -------------------------------------------------------------------------------- /web/lernaean/lernaean-index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/web/lernaean/lernaean-index.png -------------------------------------------------------------------------------- /web/lernaean/lernaean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/web/lernaean/lernaean.png -------------------------------------------------------------------------------- /web/lernaean/nope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmetalmaster/hackthebox/HEAD/web/lernaean/nope.png --------------------------------------------------------------------------------