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
@matz @ksss
Even after #3409 there are still integer overflows in mrb_ary_splice, as the following input demonstrates:
mrb_ary_splice
a = [0] * 0x40000001 a[0x40000000,0x40000000] = [1]
This crashes because head + len overflows here:
head + len
mruby/src/array.c
Line 607 in 28cf7a5
and also here:
Line 650 in 28cf7a5
The text was updated successfully, but these errors were encountered:
72bff29
I don't think the fix is quite right, but I couldn't find a way to exploit it. Comments are in the commit.
Sorry, something went wrong.
b0f918d addressed the concern.
Thank you for reporting and fixing!
No branches or pull requests
@matz @ksss
Even after #3409 there are still integer overflows in
mrb_ary_splice
, as the following input demonstrates:This crashes because
head + len
overflows here:mruby/src/array.c
Line 607 in 28cf7a5
and also here:
mruby/src/array.c
Line 650 in 28cf7a5
The text was updated successfully, but these errors were encountered: