Overview
| Field | Value |
|---|---|
| URL | http://natas1.natas.labs.overthewire.org |
| Username | natas1 |
| Password | 0nzCigAq7t2iALyvU9xcHlYN4MlkIwlq |
Hints
Hint 1 — What is actually being blocked?
Hint 1 — What is actually being blocked?
Only the right-click context menu is blocked — and only by JavaScript running inside the browser. JavaScript can block the context menu event, but it cannot block your browser’s own built-in features. What other methods does your browser offer to view source?
Hint 2 — Browser keyboard shortcuts
Hint 2 — Browser keyboard shortcuts
Most browsers have a keyboard shortcut to view the page source that has nothing to do with right-clicking. Try
Ctrl+U. You can also use the browser address bar directly by typing view-source: before the URL.Solution
Full walkthrough
Full walkthrough
Bypass the right-click block
Press
Ctrl+U to open the page source directly — the JavaScript block on right-click doesn’t affect this shortcut. Alternatively, type view-source:http://natas1.natas.labs.overthewire.org in the address bar.Client-side restrictions (JavaScript handlers, CSS tricks) are never a real security boundary. They only affect users who run your JavaScript. Any HTTP client, curl, or browser shortcut bypasses them entirely.