MOCs
Active Boxes/Challenges/Sherlocks
Active HTB boxes/challenges/sherlocks will not be published but will be shown on this list as they’re retired they will become index able pages.
CTF Challenges
HTB Boxes
Incomplete Boxes
Dataview
Dataview only works in my obsidian due to plugins it automatically will query for pages fitting the requirements below
TABLE title as Filename, Difficulty, file.ctime as Created
FROM #htb/incomplete and !#htb/shelved
WHERE file.name != "htb-js" and file.name != "htb-sherlock-js"
SORT file.ctime ASCCompleted Boxes
- Codify -active
- Perfection -active
- Meow -active
- Fawn -active
- Dancing -active
- FormulaX -active
- Bizness -active
- Monitored -active
- Analytics -active
- Devvortex -active
- Wifinetic Two -active
- Surveillance -active
TABLE title as Filename, Difficulty, file.ctime as Created, Completed
FROM #htb/complete and !#htb/shelved
WHERE file.name != "htb-js" and publish != true
SORT file.ctime ASCRetired Completed Boxes
TABLE title as Filename, Difficulty, file.ctime as Created, Completed
FROM #htb/complete and !#htb/shelved
WHERE file.name != "htb-js" AND publish = true
SORT file.ctime ASCHTB Sherlock Challenges
Incomplete Sherlocks
TABLE title as Filename, Difficulty, file.ctime as Created
FROM #htb/sherlock/incomplete and !#htb/sherlock/shelved
WHERE file.name != "htb-sherlock-js" and file.name != "htb-sherlock-js"
SORT file.ctime ASCCompleted Sherlocks
TABLE title as Filename, Difficulty, file.ctime as Created, Completed
FROM #htb/sherlock/complete and !#htb/sherlock/shelved
WHERE file.name != "htb-sherlock-js" and publish != true
SORT file.ctime ASCRetired Completed Sherlocks
TABLE title as Filename, Difficulty, file.ctime as Created, Completed
FROM #htb/sherlock/complete and !#htb/sherlock/shelved
WHERE file.name != "htb-sherlock-js" AND publish = true
SORT file.ctime ASCHTB Challenges
Incomplete Challenges
TABLE title as Filename, Difficulty, Category, file.ctime as Created
FROM #htb/challenge/incomplete and !#htb/challenge/shelved
WHERE file.name != "htb-js" and file.name != "htb-challenges-js"
SORT file.ctime ASCCompleted Challenges
TABLE title as Filename, Difficulty, Category, file.ctime as Created, Completed
FROM #htb/challenge/complete and !#htb/challenge/shelved
WHERE file.name != "htb-challenges-js" and publish != true
SORT file.ctime ASCRetired Completed Challenges
TABLE title as Filename, Difficulty, Category, file.ctime as Created, Completed
FROM #htb/challenge/complete and !#htb/challenge/shelved
WHERE file.name != "htb-challenges-js" AND publish = true
SORT file.ctime ASC