动态 SQL:保护密码参数免遭 SQL 注入

发布于 2024-10-16 23:44:19 字数 277 浏览 1 评论 0原文

尽管听起来很可怕,但密码参数的输入必须在以下动态 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 技术交流群。

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

发布评论

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

评论(1

十秒萌定你 2024-10-23 23:44:19

不是直接答案,但您可以参数化 sp_addlogin:

exec sp_AddLogin @user, @password;

或者您可以使用 SMO。

Not a direct answer, but you can parametrize sp_addlogin:

exec sp_AddLogin @user, @password;

Or you can use SMO.

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