Skip to content

Commit

Permalink
Increase the limit for the maximum number of rows in dotnet module.
Browse files Browse the repository at this point in the history
  • Loading branch information
plusvic committed Jun 19, 2024
1 parent 4fc1ff8 commit 608fb3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libyara/modules/dotnet/dotnet.c
Original file line number Diff line number Diff line change
Expand Up @@ -2000,7 +2000,7 @@ void dotnet_parse_tilde_2(
// Make sure that num_rows has a reasonable value. For example
// edc05e49dd3810be67942b983455fd43 sets a large value for number of
// rows for the BIT_MODULE section.
if (num_rows > 10000)
if (num_rows > 15000)
return;

// Those tables which exist, but that we don't care about must be
Expand Down

0 comments on commit 608fb3d

Please sign in to comment.