Add SB Curated (copied from the smartbugs repository).
This commit is contained in:
@@ -0,0 +1,77 @@
|
||||
/*
|
||||
* @source: etherscan.io
|
||||
* @author: -
|
||||
* @vulnerable_at_lines: 41
|
||||
*/
|
||||
|
||||
pragma solidity ^0.4.19;
|
||||
|
||||
contract ETH_VAULT
|
||||
{
|
||||
mapping (address => uint) public balances;
|
||||
|
||||
uint public MinDeposit = 1 ether;
|
||||
|
||||
Log TransferLog;
|
||||
|
||||
function ETH_VAULT(address _log)
|
||||
public
|
||||
{
|
||||
TransferLog = Log(_log);
|
||||
}
|
||||
|
||||
function Deposit()
|
||||
public
|
||||
payable
|
||||
{
|
||||
if(msg.value > MinDeposit)
|
||||
{
|
||||
balances[msg.sender]+=msg.value;
|
||||
TransferLog.AddMessage(msg.sender,msg.value,"Deposit");
|
||||
}
|
||||
}
|
||||
|
||||
function CashOut(uint _am)
|
||||
public
|
||||
payable
|
||||
{
|
||||
if(_am<=balances[msg.sender])
|
||||
{
|
||||
// <yes> <report> REENTRANCY
|
||||
if(msg.sender.call.value(_am)())
|
||||
{
|
||||
balances[msg.sender]-=_am;
|
||||
TransferLog.AddMessage(msg.sender,_am,"CashOut");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function() public payable{}
|
||||
|
||||
}
|
||||
|
||||
contract Log
|
||||
{
|
||||
|
||||
struct Message
|
||||
{
|
||||
address Sender;
|
||||
string Data;
|
||||
uint Val;
|
||||
uint Time;
|
||||
}
|
||||
|
||||
Message[] public History;
|
||||
|
||||
Message LastMsg;
|
||||
|
||||
function AddMessage(address _adr,uint _val,string _data)
|
||||
public
|
||||
{
|
||||
LastMsg.Sender = _adr;
|
||||
LastMsg.Time = now;
|
||||
LastMsg.Val = _val;
|
||||
LastMsg.Data = _data;
|
||||
History.push(LastMsg);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user