Add SB Curated (copied from the smartbugs repository).
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
/*
|
||||
* @source: etherscan.io
|
||||
* @author: -
|
||||
* @vulnerable_at_lines: 16
|
||||
*/
|
||||
|
||||
pragma solidity ^0.4.24;
|
||||
|
||||
|
||||
contract B {
|
||||
address public owner = msg.sender;
|
||||
|
||||
function go() public payable {
|
||||
address target = 0xC8A60C51967F4022BF9424C337e9c6F0bD220E1C;
|
||||
// <yes> <report> UNCHECKED_LL_CALLS
|
||||
target.call.value(msg.value)();
|
||||
owner.transfer(address(this).balance);
|
||||
}
|
||||
|
||||
function() public payable {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user