漏洞标题
Vyper数组负索引漏洞
漏洞描述信息
Vyper是针对以太坊虚拟机(EVM)开发的一种Python风格的智能合约语言。数组可以使用有符号整数作为键,但它们仅限于无符号整数定义。
类型检查器在检测到将`int`用作数组索引的用法时,并不会抛出异常。类型检查器允许使用有符号整数作为数组的索引。
这种漏洞以不同的形式存在于所有版本中,包括`0.3.10`。对于`int`,使用的是2的补码表示。由于数组被声明为非常大,边界检查会通过。负值将简单地表示为非常大的数字。
截至发表时,尚未存在固定的版本来修复这个问题。
CVSS信息
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
漏洞类别
整数溢出或超界折返
漏洞标题
Vyper array negative index vulnerability
漏洞描述信息
Vyper is a Pythonic Smart Contract Language for the Ethereum Virtual Machine. Arrays can be keyed by a signed integer, while they are defined for unsigned integers only. The typechecker doesn't throw when spotting the usage of an `int` as an index for an array. The typechecker allows the usage of signed integers to be used as indexes to arrays. The vulnerability is present in different forms in all versions, including `0.3.10`. For ints, the 2's complement representation is used. Because the array was declared very large, the bounds checking will pass Negative values will simply be represented as very large numbers. As of time of publication, a fixed version does not exist.
There are three potential vulnerability classes: unpredictable behavior, accessing inaccessible elements and denial of service. Class 1: If it is possible to index an array with a negative integer without reverting, this is most likely not anticipated by the developer and such accesses can cause unpredictable behavior for the contract. Class 2: If a contract has an invariant in the form `assert index < x`, the developer will suppose that no elements on indexes `y | y >= x` are accessible. However, by using negative indexes, this can be bypassed. Class 3: If the index is dependent on the state of the contract, this poses a risk of denial of service. If the state of the contract can be manipulated in such way that the index will be forced to be negative, the array access can always revert (because most likely the array won't be declared extremely large). However, all these the scenarios are highly unlikely. Most likely behavior is a revert on the bounds check.
CVSS信息
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
漏洞类别
对数组索引的验证不恰当
漏洞标题
Vyper 输入验证错误漏洞
漏洞描述信息
Vyper是EVM 的 Pythonic 智能合约语言。 Vyper 0.3.10及之前版本存在输入验证错误漏洞,该漏洞源于类型检查器允许使用有符号整数作为数组的索引,可能导致拒绝服务。
CVSS信息
N/A
漏洞类别
输入验证错误