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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Emoji based authentication for mobile

12 点作者 shifte超过 9 年前

5 条评论

alexbock超过 9 年前
While the article admits that this isn&#x27;t very secure, I think giving any visitor a one in three chance to &quot;authenticate&quot; with any given mobile number is well beyond &quot;not very secure&quot; and into &quot;false sense of security&#x2F;no security at all&quot; territory.<p>The introduction indicates that this is intended to be on par with confirmation emails or six digit SMS pins, but both of those actually prove that you own the indicated resource; asking someone which of three emojis they received does not.
评论 #10680213 未加载
Deregibus超过 9 年前
Even assuming the insecure &quot;choose 1 of 3&quot; was for example, I don&#x27;t really understand how this is better than e.g. a 4-digit numeric code?<p>It seems like this kind of authentication could be provided by the OS. I&#x27;m pretty sure I&#x27;ve used apps that sent a code via SMS to verify identity that detected when the SMS arrived and performed the authentication automatically. Given that you don&#x27;t want to give every app unnecessary access to your text messages&#x2F;email&#x2F;whatever, I would think you could have a fairly secure process like:<p>1. App requests a unique session code from the OS and registers a callback. 2. App sends the session code to the server. 3. Server sends SMS to the phone # containing the app auth code + session code in a standard format. 4. OS detects that SMS is an auth message, matches the session code with the callback, and sends the auth code to the app. 5. App sends the auth code to the server for verification.<p>I haven&#x27;t done any mobile dev so for all I know something like this already exists.
volaski超过 9 年前
Even before getting to security issues, why would anyone prefer typing in emoji instead of numbers? I can imagine people struggling to find some random emoji from the keyboard before the notification banner disappears. (Normally I don&#x27;t switch back to the message ui but try my best to finish typing in the auth codes before the notification banner disappears, and even 6 digit codes are annoying because sometimes it disappears before I type them in. Most people will have probably only typed in one emoji before the notification banner goes away). This guy should build it himself and realize how out of touch this solution of his was instead of telling the users to build it and let him know. Personally if I ever came across any app that implemented this scheme, I would feel offended because it feels like the developer is trolling me.
评论 #10679754 未加载
tedmiston超过 9 年前
Neat idea, but way too insecure for real life.<p>Slack&#x27;s Magic Links are a very user friendly and much more secure approach to a similar problem.<p><a href="http:&#x2F;&#x2F;louiiisechg.tumblr.com&#x2F;post&#x2F;130650909766&#x2F;slack-magic-link" rel="nofollow">http:&#x2F;&#x2F;louiiisechg.tumblr.com&#x2F;post&#x2F;130650909766&#x2F;slack-magic-...</a>
brudgers超过 9 年前
Related use as banking PIN&#x27;s: <a href="http:&#x2F;&#x2F;www.wired.com&#x2F;2015&#x2F;06&#x2F;maybe-emoji-passcodes-arent-good-idea&#x2F;" rel="nofollow">http:&#x2F;&#x2F;www.wired.com&#x2F;2015&#x2F;06&#x2F;maybe-emoji-passcodes-arent-goo...</a>