We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The binary plist tries to allocate a slice of arbitrary size and if it fails it tries to recover. But that doesn't actually work.
Setting 4<<20 (4 * 1024 * 1024) as an arbitrary limit until the binary parser is updated with better logic.
The text was updated successfully, but these errors were encountered:
Set size limit when allocating binary offsets.
2f574f4
Fixes tests and potential real life panics, but is not ideal. This is a temporary solution. For #28
Set size limit when allocating binary offsets. (#29)
526b8c3
Can't parse Apple MDM signup plists because of this issue. Getting plist: offset size larger than expected 4194304
plist: offset size larger than expected 4194304
Sorry, something went wrong.
No branches or pull requests
The binary plist tries to allocate a slice of arbitrary size and if it fails it tries to recover. But that doesn't actually work.
Setting 4<<20 (4 * 1024 * 1024) as an arbitrary limit until the binary parser is updated with better logic.
The text was updated successfully, but these errors were encountered: