Skip to content

Commit

Permalink
modify rule 103
Browse files Browse the repository at this point in the history
  • Loading branch information
Frankccv committed Nov 22, 2023
1 parent fe0cd57 commit dcd8514
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rules/103.corrupted_ngap.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Note:
- the condition (ip.src != ip.dst) is used just to collect the IP addresses to show on MMT-Operator
-->

<property value="THEN" delay_units="ms" delay_min="0" delay_max="0" property_id="103" type_property="ATTACK"
<property value="THEN" delay_units="ms" delay_min="0" delay_max="0" property_id="103" type_property="SECURITY"
description="SCTP Protocol Identifier indicates that its payload is NGAP but the payload is not effectually NGAP">
<event value="COMPUTE" event_id="1"
description="SCTP Protocol Identifier is 60 to indicate its payload is NGAP"
Expand Down
2 changes: 1 addition & 1 deletion rules/108.http2_payload_fuzzing.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ static bool em_check_fuzzing(int payload_length, const char* payload, double pac
//data=(char*)payload_data;
//printf("payload length %d \n",payload_length);
bool result=false;
for (int i = 9; i < payload_length + 9 ; i++) {
for (int i = 0; i < payload_length ; i++) {
//printf(" %02hhX ",payload[i]);
//printf(" %c",payload[i]);
if((payload[i]=='\\')|| payload[i]=='#' || (payload[i]=='%') || (payload[i]=='$')){
Expand Down

0 comments on commit dcd8514

Please sign in to comment.