- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我遇到了一个安全问题。请看下面的伪代码
public static bool TryLogin(string email, string password)
{
if (UserExists(email)) // here is the problem
return false;
var hash = GetRealPasswordHash(email);
var hash2 = GetHash(email, password);
return SlowEquals(hash, hash2);
}
有些人可能已经看到了这个漏洞。攻击者可能会通过网络执行时间攻击 - 检测返回答案的速度,并据此检测数据库中是否有用户!知道这一点后,攻击者现在可以检查他已知存在的用户的各种密码!
如果您没有看到问题或不认为这是一个问题(这是针对哈希,但类比问题在这里),请解释一下:
Comparing the hashes in "length-constant" time ensures that anattacker cannot extract the hash of a password in an on-line systemusing a timing attack, then crack it off-line.
The standard way to check if two sequences of bytes (strings) are thesame is to compare the first byte, then the second, then the third,and so on. As soon as you find a byte that isn't the same for bothstrings, you know they are different and can return a negativeresponse immediately. If you make it through both strings withoutfinding any bytes that differ, you know the strings are the same andcan return a positive result. This means that comparing two stringscan take a different amount of time depending on how much of thestrings match.
For example, a standard comparison of the strings "xyzabc" and"abcxyz" would immediately see that the first character is differentand wouldn't bother to check the rest of the string. On the otherhand, when the strings "aaaaaaaaaaB" and "aaaaaaaaaaZ" are compared,the comparison algorithm scans through the block of "a" before itdetermins the strings are unequal.
It might seem like it would be impossible to run a timing attack overa network. However, it has been done, and has been shown to bepractical.
那检测到用户不存在怎么办?我绝对应该执行更多计算,但这里有什么好的技术?你们在这种情况下使用什么?
如果这有任何意义,我正在使用 C#。
最佳答案
解决方案很简单,无论用户是否存在,您都遵循相同的代码路径。
public static bool TryLogin(string email, string password)
{
bool userExists = UserExists(email);
var hash = GetRealPasswordHash(email);
var hash2 = GetHash(email, password);
return SlowEquals(hash, hash2) && userExists;
}
现在您需要确保 GetRealPasswordHash
对有效电子邮件和无效电子邮件花费相同的时间,并为无效电子邮件返回“假”哈希(“虚拟”用户的密码哈希 Guvante 指的是 in his comment )。
这可确保 GetHash
和 SlowEquals
仍会使用有效数据调用,但由于 userExists
为假,您将忽略它们的结果。
但是我也同意 Guvante 的第二点,任何正常的系统都会在多次尝试输入无效密码后锁定用户帐户。这可以防止针对用户登录的暴力/字典攻击。您只能在一段时间后或用户打电话来验证其身份后才能解锁登录。
关于c# - 尝试登录的安全性(防止时间攻击),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30493150/
我正在尝试构建一个托管在服务器上的 Blazor 应用程序,起点位于一个 razor 页面内。 类似的东西: 我的问题是: 如果 Razor 页面具有授权属性,所有 blazor 代码都不是通过身份
对tomcat中管道和阀门机制不懂的小伙伴,参考本篇文章 领域 目前可知结构,如图所示,下面继续分析 GenericPrincipal类 LoginConfig类 Authenticator接口 在T
我刚刚开始学习 React 中的授权和身份验证,我在使用 JWT 完成我的第一个简单登录系统后编写了这篇文章,因为大多数人都知道您在浏览器中存储了一个 token ,然后将其与保存的进行比较现在,当验
我正在为grails项目寻找安全插件。 Spring安全核心1.2.7.3看起来很棒,但是似乎已经有将近一年没有开发了。有谁知道是这样吗? 还有其他好的插件吗? 我也正在使用mongodb,想知道sp
我有一个 WCF 服务,它使用具有消息安全性和用户名身份验证的 NetTcpBinding。在此之前,我使用 WsHttpBinding 但我切换到 NetTcp,因为我可以使用回调。 我的服务配置如
我正在考虑使用 cakePHP 构建一个 Web 应用程序。我的问题是我必须自己编写多少安全内容来防止(SQL 注入(inject)等)? cakePHP 自己处理什么安全问题,我必须编写什么代码?
任何人都有关于为安全环境强化/配置 TFS 的信息? 最佳答案 TFS 使用 Windows 身份验证,因此它与您的网络一样安全。我建议您还查看有关加强网络安全的资源。 Team Foundation
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我一直想知道 codeigniter 设置有多安全。因为数据库密码等信息存储在主应用程序文件夹的配置文件中,黑客可以检索到这些信息吗?我知道您可以将应用程序文件夹移动到远离 Web 根目录的位置,但如
在客户端使用 PouchDB 访问远程服务器时要遵循的最佳安全实践是什么? https://pouchdb.com/getting-started.html上的例子使用代码与远程服务器同步: var
已结束。此问题正在寻求书籍、工具、软件库等的推荐。它不满足Stack Overflow guidelines 。目前不接受答案。 我们不允许提出寻求书籍、工具、软件库等推荐的问题。您可以编辑问题,以便
我正在开发一个网络应用程序,用户可以在其中上传文件并执行它们。我的意思是,他们可以上传 html 文件,然后通过单击,他们可以在我的 Web 应用程序内的 iframe 中执行该文件并查看渲染的 ht
试图澄清 -AsPlainText ConvertTo-SecureString 中的参数小命令: -AsPlainText Specifies a plain text string to conv
我正在玩 coreos 和 digitalocean,我想开始允许我的容器之间进行内部通信。 我已经为所有主机设置了私有(private)网络,现在我想确保某些容器只打开到 localhost 和内部
我们有两台机器: 服务器 客户 服务器正在运行 Clojure + Ring + ...标准 ClojureScript webstack。 客户端 = 某些运行 Chorme/Firefox/Saf
让我们有一个函数 foo 和一个类 Bar: fun foo(key: String): String? { // returns string or null } class Bar(x: St
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 这个问题似乎不是关于 a specific programming problem, a software
确保只有正确的用户才能在 Sharepoint 2007 中看到 Web 部件的最佳做法是什么? 有人向我建议了安全组和受众。 最佳答案 这取决于您是在谈论 Web 部件的呈现还是从 Web 部件库添
我试图说服一个团队,使用 jQuery JSONP 调用与不受信任的第三方可能是不安全的。我正在使用标准 jQuery 代码: $.ajax({ url:unsecureserver+"?js
我有以下ajax调用,它检查用户是否是付费成员(member),如果是,则相应地运行某些功能。这可行,但我担心安全性。如果有人在控制台中更改此 ajax 代码,强制 #button 成功运行功能而无需
我是一名优秀的程序员,十分优秀!