SQL服务器

时间:2015-11-25 08:40:03

标签: sql-server sql-injection

我的数据库中有一个名为notifications的表,只要通知从我的应用程序中的其他用户到达,数据就会插入到此表中。表的架构如下所示:

CREATE TABLE [dbo].[notifications](
    [id] [int] IDENTITY(1,1) NOT NULL,
    [sender] [char](17) NULL,
    [reciever] [char](17) NULL,
    [letter_code] [char](15) NULL,
    [txt] [nvarchar](max) NULL,
    [dateandtime] [datetime2](7) NULL,
    [letter_kind] [nvarchar](50) NULL,
    [seen] [bit] NULL,
 CONSTRAINT [PK_notifications] PRIMARY KEY CLUSTERED 
(
    [id] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]

插入的行必须是这样的:

id    || sender   ||    reciever || letter_code || txt     ||  dateandtime          || letter_kind ||   seen
============================================================================================================
1     ||   2      ||    2        ||    1734     || message ||   2015-10-12 09:59:01 ||   PS        || flase

今天我正在检查数据库的表格,我注意到发生了一些奇怪的事情。一些奇怪的数据被插入到notification表中:

enter image description here

正如您所看到的,txt列包含一个非常奇怪的值:

1<div style="display:none">looking to cheat <a href="http://blog.perecruit.com/template/page/reason-women-cheat.aspx">go</a> how many men have affairs</div>

其他列包含1! 任何的想法?

PS:我确信只有一个地方会写这个表的数据:

context.InsTotNotification(WebContext.Current.User.UserCode, CheckedUsersForSend.ElementAt(j), LetCods.ElementAt(i),
                                        string.Format("letter kind {0} letter code {1} datetime.",
                                        LetterKind, Convert.ToString(Convert.ToDouble(LetCods.ElementAt(i).Substring(4, 11)), CultureInfo.InvariantCulture)), DateTime.Now, LetterKind);

更新:没有允许用户输入数据的表单,数据将使用后端而非用户编写。

更新2 :我正在使用EntityFramework Database First,InsTotNotification是我上下文中的存储过程:

    [Invoke]
    public string InsTotNotification(string sender, string reciever,string letter_code,string Txt,DateTime dateandtime,string Letter_kind)
    {
        var MQuery = ObjectContext.InsTo_Notification(sender, reciever, letter_code, Txt, dateandtime, Letter_kind).FirstOrDefault();
        return "Ok";
    }

这是sp:

SET ANSI_NULLS OFF
GO
SET QUOTED_IDENTIFIER OFF
GO

ALTER PROCEDURE [dbo].[InsTo_Notification]
@Sender char(17), 
@Reciever char(17), 
@Letter_code char(15), 
@Txt nvarchar(MAX), 
@DateandTime datetime2, 
@Letter_kind nvarchar(50)
AS

BEGIN TRANSACTION InsertNotifications
Declare @T1 int
INSERT notifications (sender, reciever, letter_code, txt, dateandtime, letter_kind) 
       values (@Sender, @Reciever, @Letter_code, @Txt, @DateandTime,@Letter_kind)
SELECT @T1=@@ERROR
--------------------------
if (@T1=0)
BEGIN
COMMIT TRANSACTION InsertNotifications
SELECT @Letter_code as LetterNo
END
ELSE
BEGIN
  ROLLBACK TRANSACTION InsertNotifications
  SELECT 'NO' as 'It has Problem'
 END

更新3 :表格中还有这些类型的行:

enter image description here

请注意,所选行中的文字نامه PS به شماره 11968 به شما ارجاع داده شدtxt字段的实际值。

1 个答案:

答案 0 :(得分:1)

绝对是SQL注入...... 这是来自Web应用程序还是可以通过Web发布的东西,对吧? 存储过程在没有正确验证的情况下接受任何char输入 尝试检查参数是否包含&#34;&lt;&#34;,&#34;&gt;&#34;,保留SQL Server术语/语句或其他不需要的字符。