반응형
문제
- ownership
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
import 'openzeppelin-contracts-06/math/SafeMath.sol';
contract Fallout {
using SafeMath for uint256;
mapping (address => uint) allocations;
address payable public owner;
/* constructor */
function Fal1out() public payable {
owner = msg.sender;
allocations[owner] = msg.value;
}
modifier onlyOwner {
require(
msg.sender == owner,
"caller is not the owner"
);
_;
}
function allocate() public payable {
allocations[msg.sender] = allocations[msg.sender].add(msg.value);
}
function sendAllocation(address payable allocator) public {
require(allocations[allocator] > 0);
allocator.transfer(allocations[allocator]);
}
function collectAllocations() public onlyOwner {
msg.sender.transfer(address(this).balance);
}
function allocatorBalance(address allocator) public view returns (uint) {
return allocations[allocator];
}
}
문제풀이
Fal1out 함수 실행을 통해 owner 권한을 가질 수 있다.
remix에서 배포된 주소에 접근해 함수를 실행하면 된다.
함수 실행 후 owner 확인해보면 바뀐 것을 볼 수 있다.
반응형
'blockchain' 카테고리의 다른 글
[ethernaut] Telephone (0) | 2024.09.01 |
---|---|
[ethernaut] Coin Flip (0) | 2024.09.01 |
[ethernaut] Fallback (0) | 2023.04.02 |
[ethernaut] Hello Ethernaut (0) | 2023.04.02 |
remix - Deploy & At Address (0) | 2023.03.18 |