承接国内外服务器租用托管、定制开发、网站代运营、网站seo优化托管接单、网站代更新,新老站点皆可!!咨询QQ:3787320601

存储过程:存储过程如何防止sql注入

管理员 2023-03-31 09:38:16 互联网圈 64 ℃ 0 评论 2047字 收藏

存储进程如何避免sql注入

存储过程怎么防止sql注入

存储进程避免sql注入的方法:

对特殊字符进行过滤,例如:

-- Function: fn_escapecmdshellstring

-- Description: Returns an escaped version of a given string

-- with carets ('^') added in front of all the special

-- command shell symbols.

-- Parameter: @command_string nvarchar(4000)

--

CREATE FUNCTION dbo.fn_escapecmdshellstring (

@command_string nvarchar(4000)) RETURNS nvarchar(4000) AS

BEGIN

DECLARE @escaped_command_string nvarchar(4000),

@curr_char nvarchar(1),

@curr_char_index int

SELECT @escaped_command_string = N'',

@curr_char = N'',

@curr_char_index = 1

WHILE @curr_char_index <= LEN (@command_string)

BEGIN

SELECT @curr_char = SUBSTRING (@command_string, @curr_char_index, 1)

IF @curr_char IN ('%', '<', '>', '|', '&', '(', ')', '^', '"')

BEGIN

SELECT @escaped_command_string = @escaped_command_string + N'^'

END

SELECT @escaped_command_string = @escaped_command_string + @curr_char

SELECT @curr_char_index = @curr_char_index + 1

END

RETURN @escaped_command_string

END

文章来源:丸子建站

文章标题:存储过程:存储过程如何防止sql注入

https://www.wanzijz.com/view/5872.html

X

截屏,微信识别二维码

微信号:weimawl

(点击微信号复制,添加好友)

打开微信