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
getnum in app/modules/struct.c potentially has an integer overflow if fmt is set too large. It might be triggered by running such lua statement: EVAL "struct.pack('>I2147483648', '10')" 0 It can be easily avoid by adding a bound check in getnum, and I'd like to open a PR for that if necessary.
The text was updated successfully, but these errors were encountered:
getnum
inapp/modules/struct.c
potentially has an integer overflow iffmt
is set too large. It might be triggered by running such lua statement:EVAL "struct.pack('>I2147483648', '10')" 0
It can be easily avoid by adding a bound check ingetnum
, and I'd like to open a PR for that if necessary.The text was updated successfully, but these errors were encountered: