Skip to main content

13 docs tagged with "math"

View all tags

Attacker Balance Gain

Detects scenarios where an attacker can increase their balance by exploiting faulty accounting or unchecked value assignments.

Ether/Token Leaking

Detects unintentional loss of ether or tokens from a contract due to logic mistakes.

Integer Overflow

Detects arithmetic that exceeds the maximum value of an unsigned integer and wraps around.

Integer Underflow

Detects subtraction that goes below zero and wraps to a large value.

Rounding Errors

Detects loss of precision when performing integer division or modulus operations in Solidity.

Token Loss

Detects operations that accidentally burn or lock tokens beyond recovery.

Unchecked Math

Detects use of the `unchecked` keyword that disables overflow and underflow protections.