Add SB Curated (copied from the smartbugs repository).
This commit is contained in:
16
dataset/arithmetic/overflow_simple_add.sol
Normal file
16
dataset/arithmetic/overflow_simple_add.sol
Normal file
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
* @source: https://smartcontractsecurity.github.io/SWC-registry/docs/SWC-101#overflow-simple-addsol
|
||||
* @author: -
|
||||
* @vulnerable_at_lines: 14
|
||||
*/
|
||||
|
||||
pragma solidity 0.4.25;
|
||||
|
||||
contract Overflow_Add {
|
||||
uint public balance = 1;
|
||||
|
||||
function add(uint256 deposit) public {
|
||||
// <yes> <report> ARITHMETIC
|
||||
balance += deposit;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user