91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

實現C#安全的SQL查詢防止注入的方法

c#
小樊
125
2024-08-28 10:51:11
欄目: 云計算

在C#中,為了防止SQL注入攻擊,可以使用參數化查詢(Parameterized Query)或存儲過程(Stored Procedure)

  1. 參數化查詢:
using System;
using System.Data.SqlClient;

class Program
{
    static void Main()
    {
        string connectionString = "your_connection_string";
        string userInput = "user_input";

        using (SqlConnection connection = new SqlConnection(connectionString))
        {
            connection.Open();

            using (SqlCommand command = new SqlCommand("SELECT * FROM Users WHERE Username = @Username", connection))
            {
                // 添加參數
                command.Parameters.AddWithValue("@Username", userInput);

                using (SqlDataReader reader = command.ExecuteReader())
                {
                    while (reader.Read())
                    {
                        Console.WriteLine($"User ID: {reader["UserID"]}, Username: {reader["Username"]}");
                    }
                }
            }
        }
    }
}
  1. 存儲過程:

首先,在數據庫中創建一個存儲過程:

CREATE PROCEDURE GetUserByUsername
    @Username NVARCHAR(50)
AS
BEGIN
    SELECT * FROM Users WHERE Username = @Username;
END

然后,在C#代碼中調用該存儲過程:

using System;
using System.Data.SqlClient;

class Program
{
    static void Main()
    {
        string connectionString = "your_connection_string";
        string userInput = "user_input";

        using (SqlConnection connection = new SqlConnection(connectionString))
        {
            connection.Open();

            using (SqlCommand command = new SqlCommand("GetUserByUsername", connection))
            {
                command.CommandType = System.Data.CommandType.StoredProcedure;

                // 添加參數
                command.Parameters.AddWithValue("@Username", userInput);

                using (SqlDataReader reader = command.ExecuteReader())
                {
                    while (reader.Read())
                    {
                        Console.WriteLine($"User ID: {reader["UserID"]}, Username: {reader["Username"]}");
                    }
                }
            }
        }
    }
}

這兩種方法都可以有效地防止SQL注入攻擊。參數化查詢和存儲過程都會將用戶輸入作為參數傳遞,而不是直接拼接到SQL語句中。這樣,攻擊者無法通過輸入惡意內容來改變原始SQL語句的結構。

0
渭南市| 临江市| 耿马| 全南县| 阳城县| 德格县| 枝江市| 孝义市| 应城市| 罗甸县| 建阳市| 南岸区| 石林| 鄂伦春自治旗| 措美县| 泽库县| 合阳县| 江孜县| 红安县| 黎川县| 明水县| 阿鲁科尔沁旗| 渑池县| 延津县| 屏南县| 遂溪县| 中阳县| 措美县| 平潭县| 白河县| 临武县| 灵丘县| 三穗县| 承德市| 静安区| 广汉市| 白沙| 五河县| 西和县| 望江县| 上栗县|