|
| 1 | +.. _codeql-cli-2.20.6: |
| 2 | + |
| 3 | +========================== |
| 4 | +CodeQL 2.20.6 (2025-03-06) |
| 5 | +========================== |
| 6 | + |
| 7 | +.. contents:: Contents |
| 8 | + :depth: 2 |
| 9 | + :local: |
| 10 | + :backlinks: none |
| 11 | + |
| 12 | +This is an overview of changes in the CodeQL CLI and relevant CodeQL query and library packs. For additional updates on changes to the CodeQL code scanning experience, check out the `code scanning section on the GitHub blog <https://github.blog/tag/code-scanning/>`__, `relevant GitHub Changelog updates <https://github.blog/changelog/label/code-scanning/>`__, `changes in the CodeQL extension for Visual Studio Code <https://marketplace.visualstudio.com/items/GitHub.vscode-codeql/changelog>`__, and the `CodeQL Action changelog <https://github.com/github/codeql-action/blob/main/CHANGELOG.md>`__. |
| 13 | + |
| 14 | +Security Coverage |
| 15 | +----------------- |
| 16 | + |
| 17 | +CodeQL 2.20.6 runs a total of 450 security queries when configured with the Default suite (covering 168 CWE). The Extended suite enables an additional 137 queries (covering 35 more CWE). 1 security query has been added with this release. |
| 18 | + |
| 19 | +CodeQL CLI |
| 20 | +---------- |
| 21 | + |
| 22 | +Miscellaneous |
| 23 | +~~~~~~~~~~~~~ |
| 24 | + |
| 25 | +* The CodeQL XML extractor is now able to parse documents in a wider array of character sets. |
| 26 | + |
| 27 | +* The build of Eclipse Temurin OpenJDK that is used to run the CodeQL CLI has been updated to version 21.0.6. |
| 28 | + |
| 29 | +Query Packs |
| 30 | +----------- |
| 31 | + |
| 32 | +Bug Fixes |
| 33 | +~~~~~~~~~ |
| 34 | + |
| 35 | +GitHub Actions |
| 36 | +"""""""""""""" |
| 37 | + |
| 38 | +* The :code:`actions/unversioned-immutable-action` query will no longer report any alerts, since the Immutable Actions feature is not yet available for customer use. The query remains in the default Code Scanning suites for use internal to GitHub. Once the Immutable Actions feature is available, the query will be updated to report alerts again. |
| 39 | + |
| 40 | +Major Analysis Improvements |
| 41 | +~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 42 | + |
| 43 | +Java/Kotlin |
| 44 | +""""""""""" |
| 45 | + |
| 46 | +* Fixed false positive alerts in the java query "Cross-site scripting" (:code:`java/xss`) when :code:`javax.servlet.http.HttpServletResponse` is used with a content type which is not exploitable. |
| 47 | + |
| 48 | +JavaScript/TypeScript |
| 49 | +""""""""""""""""""""" |
| 50 | + |
| 51 | +* Improved precision of data flow through arrays, fixing some spurious flows that would sometimes cause the :code:`length` property of an array to be seen as tainted. |
| 52 | +* Improved call resolution logic to better handle calls resolving "downwards", targeting a method declared in a subclass of the enclosing class. Data flow analysis has also improved to avoid spurious flow between unrelated classes in the class hierarchy. |
| 53 | + |
| 54 | +Minor Analysis Improvements |
| 55 | +~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 56 | + |
| 57 | +C/C++ |
| 58 | +""""" |
| 59 | + |
| 60 | +* Due to changes in libraries the query "Static array access may cause overflow" (:code:`cpp/static-buffer-overflow`) will no longer report cases where multiple fields of a struct or class are written with a single :code:`memset` or similar operation. |
| 61 | +* The query "Call to memory access function may overflow buffer" (:code:`cpp/overflow-buffer`) has been added to the security-extended query suite. The query detects a range of buffer overflow and underflow issues. |
| 62 | + |
| 63 | +C# |
| 64 | +"" |
| 65 | + |
| 66 | +* C#: Improve precision of the query :code:`cs/call-to-object-tostring` for value tuples. |
| 67 | + |
| 68 | +Language Libraries |
| 69 | +------------------ |
| 70 | + |
| 71 | +Major Analysis Improvements |
| 72 | +~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 73 | + |
| 74 | +JavaScript/TypeScript |
| 75 | +""""""""""""""""""""" |
| 76 | + |
| 77 | +* Added support for the :code:`response` threat model kind, which can enabled with `advanced setup <https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning#extending-codeql-coverage-with-threat-models>`__. When enabled, the response data coming back from an outgoing HTTP request is considered a source of taint. |
| 78 | +* Added support for the :code:`useQuery` hook from :code:`@tanstack/react-query`. |
| 79 | + |
| 80 | +Minor Analysis Improvements |
| 81 | +~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 82 | + |
| 83 | +C/C++ |
| 84 | +""""" |
| 85 | + |
| 86 | +* Modified the :code:`getBufferSize` predicate in :code:`commons/Buffer.qll` to be more tolerant in some cases involving member variables in a larger struct or class. |
| 87 | +* Fixed an issue where the :code:`getBufferSize` predicate in :code:`commons/Buffer.qll` was returning results for references inside :code:`offsetof` expressions, which are not accesses to a buffer. |
| 88 | + |
| 89 | +Golang |
| 90 | +"""""" |
| 91 | + |
| 92 | +* The location info for the following classes has been changed slightly to match a location that is in the database: :code:`BasicBlock`, :code:`ControlFlow::EntryNode`, :code:`ControlFlow::ExitNode`, :code:`ControlFlow::ConditionGuardNode`, :code:`IR::ImplicitLiteralElementIndexInstruction`, :code:`IR::EvalImplicitTrueInstruction`, :code:`SsaImplicitDefinition`, :code:`SsaPhiNode`. |
| 93 | +* Added :code:`database` source models for the :code:`github.com/rqlite/gorqlite` package. |
| 94 | +* Added :code:`database` source models for database methods from the :code:`go.mongodb.org/mongo-driver/mongo` package. |
| 95 | + |
| 96 | +Java/Kotlin |
| 97 | +""""""""""" |
| 98 | + |
| 99 | +* Added a path injection sanitizer for the :code:`child` argument of a :code:`java.io.File` constructor if that argument does not contain path traversal sequences. |
| 100 | + |
| 101 | +JavaScript/TypeScript |
| 102 | +""""""""""""""""""""" |
| 103 | + |
| 104 | +* The :code:`response.download()` function in :code:`express` is now recognized as a sink for path traversal attacks. |
| 105 | + |
| 106 | +Deprecated APIs |
| 107 | +~~~~~~~~~~~~~~~ |
| 108 | + |
| 109 | +Golang |
| 110 | +"""""" |
| 111 | + |
| 112 | +* The member predicate :code:`hasLocationInfo` has been deprecated on the following classes: :code:`BasicBlock`, :code:`Callable`, :code:`Content`, :code:`ContentSet`, :code:`ControlFlow::Node`, :code:`DataFlowCallable`, :code:`DataFlow::Node`, :code:`Entity`, :code:`GVN`, :code:`HtmlTemplate::TemplateStmt`, :code:`IR:WriteTarget`, :code:`SourceSinkInterpretationInput::SourceOrSinkElement`, :code:`SourceSinkInterpretationInput::InterpretNode`, :code:`SsaVariable`, :code:`SsaDefinition`, :code:`SsaWithFields`, :code:`StringOps::ConcatenationElement`, :code:`Type`, and :code:`VariableWithFields`. Use :code:`getLocation()` instead. |
| 113 | + |
| 114 | +New Features |
| 115 | +~~~~~~~~~~~~ |
| 116 | + |
| 117 | +Java/Kotlin |
| 118 | +""""""""""" |
| 119 | + |
| 120 | +* The Java extractor and QL libraries now support Java 24. |
0 commit comments