TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Thoughts on isolating an “allegedly” offline site?

5 点作者 matusfaro将近 2 年前
Hi,<p>I find myself wanting to quickly parse&#x2F;decode&#x2F;unescape sensitive data via randomly found sites but cannot. I wonder if there is an existing solution to making sure a random base64 encoder site will not phone home with my data.<p>Specific use cases:<p>- Parse a JWT using jwt.io<p>- Encode&#x2F;unescape&#x2F;parse data from a specific format (base64, protobuf, ...)<p>- Hashing a password<p>- Generating Bitcoin wallet using bitaddress.org<p>The solutions I end up doing:<p>- Finding a way to do it offline (in a terminal) or using&#x2F;writing a script I can safely audit.<p>- Load up a VM, load the site, cut it from network, make use of the site and throw away the VM.<p>I am debating on creating a Browser extension to solve this problem, but wanted to get ideas from you to see if I am missing something that already exists.<p>The extension would have an isolate functionality that would:<p>- Cut off network access for a tab<p>- Cut off access to other tabs (Not sure how to do this, temporary containers in Firefox?)<p>- Listen for tab close event and clear all browser data for that site (cookies, storage, workers, history etc...)<p>What do you think?

1 comment

gorenb超过 1 年前
You could just temporarily turn off the internet. For things like this, you should be using a laptop&#x2F;desktop instead of a server anyways.
评论 #37469491 未加载