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 ASC

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 ASC

Retired 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 ASC

HTB 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 ASC

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 ASC

Retired 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 ASC

HTB 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 ASC

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

Retired 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