You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have identified a potential divide by zero vulnerability in the Darknet project and would like to report it to the maintainers. This vulnerability has the potential to cause unexpected application behavior, crashes.Can you please help me check it? Thank you for your effort and patience!
Below is the execution sequence of the program that may produce divide by zero vulnerability .
darknet/src/detection_layer.c forward_detection_layer function:On line 73, the count variable is defined to be 0. On line 215, count is used as the divisor. Obviously count can be 0 if l.batch is 0, or the continue statement on line 94 is always executed in the loop
The text was updated successfully, but these errors were encountered:
I have identified a potential divide by zero vulnerability in the Darknet project and would like to report it to the maintainers. This vulnerability has the potential to cause unexpected application behavior, crashes.Can you please help me check it? Thank you for your effort and patience!
Below is the execution sequence of the program that may produce divide by zero vulnerability .
The text was updated successfully, but these errors were encountered: