codeql
codeql copied to clipboard
CodeQL: the libraries and queries that power security researchers around the world, as well as code scanning in GitHub Advanced Security
I use codeql and vscode, when "import semmle.code.cpp.dataflow.DataFlow". There many error ``` Error in transitively-imported module: D:\codeql\codeql-repo\cpp\ql\lib\semmle\code\cpp\dataflow\internal\DataFlowImpl.qll:98,39-51: Could not resolve type BarrierGuard Error in transitively-imported module: D:\codeql\codeql-repo\cpp\ql\lib\semmle\code\cpp\dataflow\internal\DataFlowImpl.qll:106,39-51: Could not resolve...
This PR mostly exists so I can get a `.sarif` file to play with. The new query works across language implementations, so I had to change QL-for-QL to analyze all...
Fixes #9957 [Evaluation seems OK](https://github.com/github/codeql-dca-main/tree/data/erik-krogh/pr-10017-e7f009__default__CustomSuite/reports)
This commit primarily replaces links in .qhelp files by doing a simple search and replace of '
As an example: ```go urlPath := ctx.Req.URL.Path hash := urlPath[strings.LastIndex(urlPath, "/")+1:] req, _ := http.NewRequest("GET", source+hash, nil) ```
This looked like a minor perf improvement, which I randomly came across. Let's see what dca thinks.
I'm looking for general assistance on how to properly use codeql with barrier guards when the guard condition may not be computed in the guard itself, but instead also data...
(WIP -- there's some weirdness surrounding QLpacks that is causing one of the tests to fail, see below.) Splits the Frankengrammar apart into three smaller (and hopefully nicer) pieces. I...