forked from Ikalus1988/MisakaNet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodeql-config.yml
More file actions
23 lines (20 loc) · 1006 Bytes
/
Copy pathcodeql-config.yml
File metadata and controls
23 lines (20 loc) · 1006 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
name: "MisakaNet CodeQL config"
# Applied via the github-codeql-config-file repository property (default
# setup, supported 2026-08-04+). No codeql.yml workflow needed.
queries:
- uses: security-extended
# py/clear-text-logging-sensitive-data on scripts/check_worker_secrets.py:
# FALSE POSITIVE. The audit tool deliberately reports discovery locations
# (file/line/static pattern description) — never the matched secret text.
# The finder discards the match object via bool(), uses an independent line
# counter, and neutral naming; but CodeQL's interprocedural taint still
# traces read_text() → return → print. Inline lgtm/codeql comments are not
# honored by codeql-action@v4, so the supported suppression is this
# query-filters exclude, scoped narrowly to this one file.
# See docs/reviews/2026-08-30-dual-axis-review.md (audit tool, prints
# metadata only).
query-filters:
- exclude:
id: py/clear-text-logging-sensitive-data
paths:
- scripts/check_worker_secrets.py