mirror of
https://github.com/github/codeql.git
synced 2026-03-28 10:18:17 +01:00
1.3 KiB
1.3 KiB
Improvements to C# analysis
The following changes in version 1.24 affect C# analysis in all applications.
New queries
| Query | Tags | Purpose |
|---|---|---|
Insecure configuration for ASP.NET requestValidationMode (cs/insecure-request-validation-mode) |
security, external/cwe/cwe-016 | Finds where this attribute has been set to a value less than 4.5, which turns off some validation features and makes the application less secure. |
Page request validation is disabled (cs/web/request-validation-disabled) |
security, frameworks/asp.net, external/cwe/cwe-016 | Finds where ASP.NET page request validation has been disabled, which could makes the application less secure. |
Changes to existing queries
| Query | Expected impact | Change |
|---|
Removal of old queries
Changes to code extraction
Changes to libraries
- The taint tracking library now tracks flow through (implicit or explicit) conversion operator calls.