baby todo or not todo
baby todo or not todo
Platform: HackTheBox | Category: Web | Difficulty: N/A | Author: D3v0o0Nu11 | Date: 2026-02-10
Description
I'm so done with these bloody HR solutions coming from those bloody HR specialists, I don't need anyone monitoring my thoughts, or do I... ?
Solution Approach
Core idea: Identify the weakness from source review or fingerprinting first. Iterate with incremental payloads instead of guessing.
Steps
-
First, open the host given.
-
Try to input
<script>alert('1')</script>to the textbox. -
Hmm let us analyze
index.htmlthen. -
Something caught my attention.
-
Try to run
getstatus('all')at the webapps's console then. -
Hmm.. let us run setInterval(update,3000) then.
-
Nothing happens.
-
Try
setInterval(getTasks('userce6aB01E'), 3000). -
Again nothing happen, i tried to change the parameter of getTasks to
all. -
Looks like we can see the flag there.
-
But since it closed too fast, use Burp Suite to catch request, then send the request to repeater.
-
Got the flag!
Flag
REDACTED
Lessons Learned
- Identify the weakness from source review or fingerprinting first.
- Iterate with incremental payloads instead of guessing.
- Reuse the same pattern in future engagements.