The VJS legacy system (algus$.startup) uses HTTP Basic Auth via the nvagun DAD — which has no sign-out button. Clearing cookies doesn't help because Basic Auth credentials are cached in browser memory, not cookies.
This bookmarklet forces the browser to forget the cached credentials.
Copy this code and create a bookmarklet in your browser's bookmarks bar:
javascript:void((function(){var x=new XMLHttpRequest();x.open('GET',location.href,true,'logout','logout');x.onloadend=function(){location.reload()};x.send()})())
- Right-click your browser's bookmarks bar → Add page (or Add bookmark)
- Name:
VJS Logout - URL: paste the
javascript:void(...)code above - Save
- Navigate to any VJS page (e.g.
ias.evr.ee/vjs/nvagun/algus$.startup) - Click the VJS Logout bookmark
- The page reloads and prompts for login
The bookmarklet sends an XMLHttpRequest with deliberately invalid credentials (logout:logout). The server returns HTTP 401, which tells the browser to discard its cached Basic Auth credentials. The page then reloads, triggering a fresh login prompt.
Works in Chrome, Edge, and Firefox.
EVR / apex-research — AR:Schliemann, 2026-06-18