Skip to content

Commit a1c3572

Browse files
Update scoreboard.md
1 parent 32c3ace commit a1c3572

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

hacking/devtools/solutions/scoreboard.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,12 @@ Gain access to the scoreboard
1010
## Steps (exact DevTools actions)
1111
- View Page Source (right-click → View Page Source) and search for keywords like "score", "admin", or "hidden".
1212
- Elements: inspect the DOM for hidden links or HTML comments that contain route hints.
13-
- Sources: open bundled JS files and search (Ctrl+F) for strings like "/scoreboard", "/admin" or "flag".
13+
- Sources: open bundled JS files and search (Ctrl+F) for strings like "scoreboard"
1414
- Console: construct the discovered path (e.g., `/scoreboard`) and navigate `window.location="/scoreboard"` or fetch it via `fetch("/scoreboard")` to view content.
1515
- If the route is guarded by client checks, inspect the guard logic in Sources and try modifying client state (localStorage/cookie) accordingly.
1616

17+
## final Solution
18+
http://localhost:3000/#/score-board
19+
1720

1821

0 commit comments

Comments
 (0)