mirror of https://github.com/crytic/slither
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
885 B
41 lines
885 B
contract Test{
|
|
|
|
address payable destination;
|
|
|
|
mapping (address => uint) balances;
|
|
|
|
constructor() public{
|
|
balances[msg.sender] = 0;
|
|
}
|
|
|
|
function direct() public{
|
|
msg.sender.send(address(this).balance);
|
|
}
|
|
|
|
function init() public{
|
|
destination = msg.sender;
|
|
}
|
|
|
|
function indirect() public{
|
|
destination.send(address(this).balance);
|
|
}
|
|
|
|
// these are legitimate calls
|
|
// and should not be detected
|
|
function repay() payable public{
|
|
msg.sender.transfer(msg.value);
|
|
}
|
|
|
|
function withdraw() public{
|
|
uint val = balances[msg.sender];
|
|
msg.sender.send(val);
|
|
}
|
|
|
|
function buy() payable public{
|
|
uint value_send = msg.value;
|
|
uint value_spent = 0 ; // simulate a buy of tokens
|
|
uint remaining = value_send - value_spent;
|
|
msg.sender.send(remaining);
|
|
}
|
|
|
|
}
|
|
|