Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix overflow issues found by fuzzer #933

Merged
merged 2 commits into from
Mar 22, 2024

Commits on Mar 20, 2024

  1. Fix overflow issues found by fuzzer

    Fuzzer had caught a number of large malloc and these large malloc were caused
    by overflow of AP4_UI32 causing the validation logic to be skipped.
    roticv committed Mar 20, 2024
    Configuration menu
    Copy the full SHA
    147f15a View commit details
    Browse the repository at this point in the history
  2. Add boundary checks to Ap4IproAtom

    Fuzzer caught another large malloc. This is caused by lack of boundary check
    resulting in the next atom (children atom) to artificially large "size"
    due to the underflow in bytes_available.
    roticv committed Mar 20, 2024
    Configuration menu
    Copy the full SHA
    3ed084f View commit details
    Browse the repository at this point in the history