Merge in SNORT/snort3 from ~SUMIKUM7/snort3:coverity_CSCwo16686_snort to master
Squashed commit of the following:
commit
92afd8abbce3613447019c469eb0f7f02eb7ffc3
Author: Sumit Kumar <sumikum7@cisco.com>
Date: Mon Mar 24 15:16:03 2025 +0530
dce_rpc: ignoring false positives and fixing spell checks
dce2_move(frag_ptr, frag_len, sizeof(DceRpcCoContElem));
/* Don't really care about the transfer syntaxes */
+ // Down casting from uint8_t const * to "DceRpcCoContElem" is checked with frag_len
+ // coverity[tainted_scalar]
for (j = 0; j < num_tsyns; j++)
{
if (frag_len < sizeof(DceRpcCoSynId))
{
case DCERPC_PDU_TYPE__REQUEST:
dce2_udp_stats.cl_request++;
+ // Down casting from uint8_t const * to "DceRpcClHdr" is checked with data_len
+ // coverity[tainted_scalar]
DCE2_ClRequest(sd, at, cl_hdr, data_ptr, data_len);
break;