动态 SQL:保护密码参数免遭 SQL 注入
尽管听起来很可怕,但密码参数的输入必须在以下动态 SQL 中得到保护:CREATE LOGIN NewLogin WITH PASSWORD='MyStrongPassword'
。不能使用@参数: 就像这样 PASSWORD=@pwd
(“@pwd”错误附近的语法不正确)。对于表名或用户名等其他参数,它或多或少很简单:允许字母、数字和下划线,使用简单的正则表达式进行验证并引用它。对于密码,您必须允许使用强字符。 那么是否应该清除密码中的某些字符,例如逗号、空格等,还是有更好的方法?
As scary as it sounds, an input for a password parameter has to be secured in the following dynamic SQL: CREATE LOGIN NewLogin WITH PASSWORD='MyStrongPassword'
. A @parameter cannot be used:
like this PASSWORD=@pwd
(Incorrect syntax near '@pwd' error). With other parameters like table name or user name, it is more or less simple: allow letters, digits and underscores, validate using a simple regex and quotename it. With passwords you have to allow usage of strong chars.
So should the password be cleared from certain characters like comma, space, etc or is there a better way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不是直接答案,但您可以参数化 sp_addlogin:
或者您可以使用 SMO。
Not a direct answer, but you can parametrize sp_addlogin:
Or you can use SMO.