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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Show HN: NullPass, a stateless password manager written in JavaScript

6 点作者 adammacleod超过 11 年前

6 条评论

gfxmonk超过 11 年前
Have you seen SuperGenPass? It&#x27;s much the same concept, and has been around for years (including browser extensions, etc).<p><a href="http://supergenpass.com/" rel="nofollow">http:&#x2F;&#x2F;supergenpass.com&#x2F;</a><p>For the justifiably paranoid, a web service is not going to cut it (lack of https is just the start - relying on any web service is a _lot_ of trust to put in such an Important Thing). Even if you are as trustworthy as I&#x27;d hope, it&#x27;s foolish to even allow the possibility of you (or your service) being compromised to affect the safety of my passwords.<p>Personally, I use a command-line implementation of SuperGenPass that a friend of mine wrote (and I host at github:gfxmonk&#x2F;supergenpass). It avoids all sorts of spoofing &#x2F; browser vulnerabilities, and is reasonably convenient with something like Guake.<p>I&#x27;m not trying to diss the concept at all - I love this kind of thing, and honestly can&#x27;t understand why it isn&#x27;t more widely used &#x2F; encouraged. But It&#x27;s worth pointing out what already exists in the space.
评论 #7049055 未加载
评论 #7049028 未加载
kseistrup超过 11 年前
The problems with these master password implementations comes when you want to change the password for one site only. Sure, I can add a token in addition to the domain. But what token did I add to which domain? If I have to remember individual tokens I might as well remember the entire password. A solution could be to generate a “salt” for each domain, but then we&#x27;re no longer stateless…
评论 #7049264 未加载
adammacleod超过 11 年前
Hi all, this is the first side project I&#x27;ve had that I&#x27;ve been happy enough to share with the world at large. I hope someone finds it useful and would be very eager for some feedback :) (Especially negative!)
inetsee超过 11 年前
I&#x27;ve been using PassHash &quot;<a href="http://passhash.connorhd.co.uk/&quot;" rel="nofollow">http:&#x2F;&#x2F;passhash.connorhd.co.uk&#x2F;&quot;</a> for a while now and I really like it. If I understand your application correctly, PassHash does essentially the same thing as NullPass. I run PassHash using a local copy of PassHash so I don&#x27;t have to worry about MITM attacks.
评论 #7049034 未加载
pwg超过 11 年前
Is there a reason why you are using straight sha512 with concatenated elements instead of using a sha512 HMAC with the local password as the key to the HMAC?<p><a href="http://en.wikipedia.org/wiki/Hash-based_message_authentication_code" rel="nofollow">http:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Hash-based_message_authenticati...</a>
评论 #7048207 未加载
kseistrup超过 11 年前
Nice, except it resembles Cryptnos <a href="http://www.cryptnos.com/onlinerevs/prod/" rel="nofollow">http:&#x2F;&#x2F;www.cryptnos.com&#x2F;onlinerevs&#x2F;prod&#x2F;</a> with most options removed.