C++: shorten VeryLikelyOverrunWrite @name

This commit is contained in:
Paolo Tranquilli
2021-12-14 15:12:32 +00:00
committed by GitHub
parent 106400238a
commit 1e4861a944
2 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,7 @@
+ semmlecode-cpp-queries/Security/CWE/CWE-120/OverrunWrite.ql: /CWE/CWE-120
@name Potentially overrunning write (CWE-120)
+ semmlecode-cpp-queries/Security/CWE/CWE-120/VeryLikelyOverrunWrite.ql: /CWE/CWE-120
@name Likely overrunning write based on non-trivial analysis of value ranges
@name Likely overrunning write
+ semmlecode-cpp-queries/Security/CWE/CWE-120/OverrunWriteFloat.ql: /CWE/CWE-120
@name Potentially overrunning write with float to string conversion (CWE-120)
+ semmlecode-cpp-queries/Best Practices/Likely Errors/OffsetUseBeforeRangeCheck.ql: /CWE/CWE-120

View File

@@ -1,5 +1,5 @@
/**
* @name Likely overrunning write based on non-trivial analysis of value ranges
* @name Likely overrunning write
* @description Buffer write operations that do not control the length
* of data written may overflow
* @kind problem