summaryrefslogtreecommitdiffstats
path: root/.github/codeql-custom.qls
blob: d35fbe3114b93f87481ad1b7ca470cc0b2c5b5b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
---
# vi: ts=2 sw=2 et syntax=yaml:
# SPDX-License-Identifier: LGPL-2.1-or-later
#
# Note: it is not recommended to directly reference the respective queries from
#       the github/codeql repository, so we have to "dance" around it using
#       a custom QL suite
# See:
#   - https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#running-additional-queries
#   - https://github.com/github/codeql-action/issues/430#issuecomment-806092120
#   - https://codeql.github.com/docs/codeql-cli/creating-codeql-query-suites/

# Note: the codeql/<lang>-queries pack name can be found in the CodeQL repo[0]
#       in <lang>/ql/src/qlpack.yml. The respective codeql-suites are then
#       under <lang>/ql/src/codeql-suites/.
#
# [0] https://github.com/github/codeql
- import: codeql-suites/cpp-lgtm.qls
  from: codeql/cpp-queries
- import: codeql-suites/python-lgtm.qls
  from: codeql/python-queries
- include:
    id:
      - cpp/bad-strncpy-size
      - cpp/declaration-hides-variable
      - cpp/include-non-header
      - cpp/inconsistent-null-check
      - cpp/mistyped-function-arguments
      - cpp/nested-loops-with-same-variable
      - cpp/sizeof-side-effect
      - cpp/suspicious-pointer-scaling
      - cpp/suspicious-pointer-scaling-void
      - cpp/suspicious-sizeof
      - cpp/unsafe-strcat
      - cpp/unsafe-strncat
      - cpp/unsigned-difference-expression-compared-zero
      - cpp/unused-local-variable
    tags:
      - "security"
      - "correctness"
    severity: "error"
- exclude:
    id:
      - cpp/fixme-comment