Skip to content

Commit 6d3eef8

Browse files
committed
[fix]regenerate doc/QUERIES.md for new protocol handler queries
1 parent 4f7ae91 commit 6d3eef8

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

doc/QUERIES.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
|[Invalid string size passed to string manipulation function](../cpp/src/docs/security/CStrnFinder/CStrnFinder.md)|Finds calls to functions that take as input a string and its size as separate arguments (e.g., `strncmp`, `strncat`, ...) and the size argument is wrong|error|low|
3232
|[Iterator invalidation](../cpp/src/docs/security/IteratorInvalidation/IteratorInvalidation.md)|Modifying a container while iterating over it can invalidate iterators, leading to undefined behavior.|warning|medium|
3333
|[Missing null terminator](../cpp/src/docs/security/NoNullTerminator/NoNullTerminator.md)|This query finds incorrectly initialized strings that are passed to functions expecting null-byte-terminated strings|error|high|
34+
|[Potentially unguarded protocol handler invocation](../cpp/src/docs/security/PotentiallyUnguardedProtocolHandler/PotentiallyUnguardedProtocolHandler.md)|Detects calls to URL protocol handlers with untrusted input that may not be properly validated for dangerous protocols|warning|medium|
3435

3536
### Go
3637

@@ -54,5 +55,6 @@
5455

5556
| Name | Description | Severity | Precision |
5657
| --- | ----------- | :----: | :--------: |
58+
|[Potentially unguarded protocol handler invocation](../java/src/docs/security/PotentiallyUnguardedProtocolHandler/PotentiallyUnguardedProtocolHandler.md)|Detects calls to URL protocol handlers with untrusted input that may not be properly validated for dangerous protocols|warning|medium|
5759
|[Recursive functions](../java/src/docs/security/Recursion/Recursion.md)|Detects possibly unbounded recursive calls|warning|low|
5860

0 commit comments

Comments
 (0)