zoukankan      html  css  js  c++  java
  • fortinet sql注入 语义分析检测

    Syntax-based SQL Injection Detection

    Using regular expression based signatures to detect SQL injection attacks is core to a WAF solution however it does not go without issues. Due to the nature of the SQL language being similar to the English grammar false positives can occur together with false negatives as evasion techniques evolve. For example, one regex rule can not completely cover all the variables of a SQL injection type, such as:

    SELECT * FROM users WHERE id = 1 OR 1=1

    SELECT * FROM users WHERE id = 1 OR abc=abc

    SELECT * FROM users WHERE id = 1 OR 3<5

    SELECT * FROM users WHERE id = 1 OR UTC_DATE()=UTC_DATE()

    It is a continuous and tedious process to maintain and update the signatures to address new evasion techniques and to tune false positives.

    FortiWeb's Syntax-based SQL Injection Detection detects a SQL injection attack by analyzing the lexeme and syntax of SQL language rather than using a pattern matching mechanism. It first turns the input statement into a sequence of tokens, and then turns the sequence of tokens into an abstract syntax tree (AST), which is a tree representation of the abstract syntactic structure of the input statement. The parser will check whether this is a valid SQL grammar, and compare the produced AST with AST of built-in standard SQL statements to check whether they have the same AST structure. If it is not then FortiWeb recognizes it as a SQL injection attempt and then triggers the violation action.

    How Syntax-based SQL Injection Detection works

    When clients access web applications they input values in fields rather than the entire SQL statement. The application inserts the values into a SQL statement and sends the query to the database.

    For example, you may be asked to enter the employee ID on the web page when you want to check someone's profile. The employee ID is the condition value for the query, and it is sent to the web server by a request:

    GET /employee_profile.asp?employee_id=20001 HTTP/1.1

    Then the received value 2001 will be combined with a SQL template to generate a SQL statement for the query:

    select * from employee where employee_no = 2001

    However, if a client inputs the condition value with a snippet such as 1 or 1 = 1, it might be a SQL injection attempt.

    When Syntax-based SQL Injection Detection is enabled, the snippets in requests will be processed by SQL template combination, grammar parsing and AST comparison to validate whether it is a SQL injection. For example, the snippet 1 or 1 = 1 will be extracted from request

    GET /employee_profile.asp?employee_id=1 or 1 = 1 HTTP/1.1

    and combined with a FortiWeb built-in template

    select * from t where v = [injection point]

    to generate the SQL statement

    select * from t where v = 1 or 1 = 1

    FortiWeb runs the process to build AST for the target SQL statement and compare it with the FortiWeb built-in standard AST to see if they have the same structure. Different but equivalent SQL statements yield the same AST structure, and nonequivalent SQL statements have different AST structures. For example, here are a built-in standard statement and two target statements:

    • Built-in standard statement: select * from t where v = 1
    • Target statement 1: select * from t where v = WAF products
    • Target statement 2: select * from t where v = 1 or 1 = 1

    The first target statement is equivalent to the built-in standard statement, they have the same AST structure as following:

    The second target statement is nonequivalent to the built-in standard statement, they are different AST structures as following and so that a SQL injection is detected:

    Built-in SQL statement templates

    To address all possible injection points FortiWeb needs to first understand the probable context of SQL statements. The common three options are:

    select * from employee where employee_no = "2001"

    select * from employee where employee_no = '2001'

    select * from employee where employee_no = 2001

    To cover all cases that an attacker might try, Syntax-based SQL Injection Detection employs the following three templates:

    • Double Quote Based SQL Injection: select * from t where v = "[injection point]"
    • Single Quote Based SQL Injection: select * from t where v = '[injection point]'
    • As-Is Based SQL Injection: select * from t where v = [injection point]

    By default, FortiWeb enables all three templates. While you can disable each one, it is not recommended to do so unless you're absolutely certain that this query type is not supported by the database.

    SQL injection types

    Once a snippet is identified as a SQL injection, FortiWeb will recognize the SQL injection type further as one of followings:

    SQL Injection typesSnippet examples
    Stacked queries SQL injection

    1; delete from users

    Embedded queries

    1 union select username, password from users

    1 /*! ; drop table admin */

    Condition based boolean injection

    1 /**/OR/**/1/**/=/**/1

    1 OR ’abc’=’abc’

    case 1 when 2 then 2 end

    1 || user_id is not null

    Arithmetic operation based boolean injection

    a'+'b

    A' DIV 'B

    A' & 'B

    Line comments

    1”--

    1 #abc

    SQL function based boolean injection

    ascii(substring(length(version()),1,1))

    Enable Syntax Based SQL Injection detection

    1.  Go to Web Protection > Known Attacks > Signatures, select existing signature policy or create a new one.

    2.  Click the status button for SQL Injection (Syntax Based Detection) to enable it, and double-click to set the ActionBlock PeriodSeverity and Trigger Action for the policy:

  • 相关阅读:
    GHOJ 683 小球
    GHOJ 682 图的m着色问题
    GHOJ 681 最佳调度问题
    YBT 最长公共子上升序列
    YBT 数的划分
    Educational Codeforces Round 68 (Rated for Div. 2) C
    马里奥项目中对象直接通讯小结
    Educational Codeforces Round 67 (Rated for Div. 2) C
    19新疆省赛总结
    Codeforces Round #560 div3 (C,D)
  • 原文地址:https://www.cnblogs.com/bonelee/p/12100533.html
Copyright © 2011-2022 走看看