codeql icon indicating copy to clipboard operation
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

Results 853 codeql issues
Sort by recently updated
recently updated
newest added

Bumps [regex](https://github.com/rust-lang/regex) from 1.10.4 to 1.10.5. Changelog Sourced from regex's changelog. 1.10.5 (2024-06-09) This is a new patch release with some minor fixes. Bug fixes: [BUG #1203](rust-lang/regex#1203): Escape invalid UTF-8...

dependencies
QL-for-QL
rust

Adds sources and a few summaries for the `"file"` source threat model.

Go

**Description of the false positive** A simple, valid e-mail address inside an e-mail message triggers https://codeql.github.com/codeql-query-help/go/go-email-injection/ The rule also triggers on valid html, although the [security model](https://pkg.go.dev/html/template#hdr-Security_Model) in `html/template` should...

false-positive

**Description of the issue** We've been using the advanced configuration option for GitHub for awhile now with no issues. With all of the improvements made to the default configuration option,...

question

When a method is extracted multiple times, in different files, we end up with a single method containing multiple method bodies. This can sometimes throw data flow off, so this...

C#

`memset()` is often used for data sanitization in security sensitive software to harden against information leaks. However, compiler dead store elimination passes can remove that hardening. Recently, I had been...

question
C++

As a example: * a/a.h ```cpp #include "b.h" ``` * a/c.h ```cpp hi_c c; ``` * b/b.h ```cpp #include "c.h" ``` * c/c.h ```cpp hello_c c; ``` * test.cpp ```cpp...

question