You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: hacking/devtools/solutions/scoreboard.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,9 +10,12 @@ Gain access to the scoreboard
10
10
## Steps (exact DevTools actions)
11
11
- View Page Source (right-click → View Page Source) and search for keywords like "score", "admin", or "hidden".
12
12
- 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"
14
14
- Console: construct the discovered path (e.g., `/scoreboard`) and navigate `window.location="/scoreboard"` or fetch it via `fetch("/scoreboard")` to view content.
15
15
- If the route is guarded by client checks, inspect the guard logic in Sources and try modifying client state (localStorage/cookie) accordingly.
0 commit comments