使用 C# Driver for MongoDB 避免代码注入

发布于 2024-11-05 15:56:35 字数 349 浏览 5 评论 0原文

我有以下代码来检查集合中是否已存在用户输入的电子邮件:

MongoDatabase authdb = DatabaseManager.GetDatabase("authdb");
var userDocuments = authdb.GetCollection<UserDocument>(UserDocument.CollectionName);
var doc = userDocuments.FindOne(new QueryDocument("email", email));

我认为使用用户提供的值(电子邮件)为各种注入提供了机会,有点像 SQL 注入。这是一个真正的问题吗?如何解决这个问题?

I have the following code that checks if a user-entered email already exists in the collection:

MongoDatabase authdb = DatabaseManager.GetDatabase("authdb");
var userDocuments = authdb.GetCollection<UserDocument>(UserDocument.CollectionName);
var doc = userDocuments.FindOne(new QueryDocument("email", email));

I'm a little that using a value (email) supplied by user is opening an opportunity for sorts of injections, kind of like SQL injection. Is it a real problem and how to approach it then?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

落日海湾 2024-11-12 15:56:35

正如文档所述,您需要注意的最大区域是 db.eval()。驱动程序的 .eval() 方法将被转换为等效的 javascript .eval 函数。在 javascript 中使用 .eval 时要格外小心,因为它会解析并执行传递给 eval 方法的字符串表示的代码。

As the documentation states, the biggest area you need to watch out for is db.eval(). The .eval() method for the driver is going to be translated to equivalent javascript .eval function. You want to be extra careful when using .eval in javascript because it parses and executes that code represented by the string passed into the eval method.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文