ASP.NET MVC:简单的 SQL 注入安全性
我正在开发一个 ASP.NET MVC 3 应用程序,需要一种解决 SQL 注入的方法,一些简单的方法会很有用。我已经关注了微软关于此事的文章,但它似乎与我的代码和结构不匹配。
非常感谢任何帮助
I'm developing an ASP.NET MVC 3 app and need a way around SQL injections, something simple would be useful. I have followed Microsoft's article on the matter but it doesn't seem to match up with my code and structure.
Any help is greatly appreciated
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
防止sql注入:
不要形成任何动态sql。
无论如何,尽量不要
不要只是简单地使用动态 sql 并从中删除引号 - 假设有点危险 。正如某些人所做的那样,这将是唯一的攻击媒介。
To prevent sql injection:
Do not form any dynamic sql.
try not to use any dynamic sql - if you must for some reason then make sure you use parameterized queries.
Don't just simply use dynamic sql and remove quotes from them - its a bit dangerous to assume that would be the only attack vector as some do.