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 audited the source code for this project. I found DIV doesn't limit the zero. For instance, below is an example.
`
case DIV: {
registers[A] = stack[SP];
SP = SP - 1;
I can control the register[A] into zero, which will cause the DIV zero issue.
[mac]% ./mac DIVZero_poc.mac
[1] 34092 floating point exception ./mac DIVZero_poc.mac
`
I have attached my poc. DIVZero_poc.mac.zip
The text was updated successfully, but these errors were encountered:
I audited the source code for this project. I found DIV doesn't limit the zero. For instance, below is an example.
`
case DIV: {
registers[A] = stack[SP];
SP = SP - 1;
I can control the register[A] into zero, which will cause the DIV zero issue.
[mac]% ./mac DIVZero_poc.mac
[1] 34092 floating point exception ./mac DIVZero_poc.mac
`
I have attached my poc.
DIVZero_poc.mac.zip
The text was updated successfully, but these errors were encountered: