Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | |||
| 5 | 6 | 7 | 8 | 9 | 10 | 11 |
| 12 | 13 | 14 | 15 | 16 | 17 | 18 |
| 19 | 20 | 21 | 22 | 23 | 24 | 25 |
| 26 | 27 | 28 | 29 | 30 |
Tags
- ethernaut
- Block
- tx.origin
- transaction
- ethereum
- solidity
- hard fork
- Smart contract
- approve
- secureum
- writeup
- Oracle Cloud
- openzepplin
- audit
- NaughtCoin
- web assembly
- Coin
- soft fork
- Assembly
- libray
- Wargame
- Ethererum
- syntax
- TransferFrom
- web3
- coin flip
- byte code
- chain reorganization
- EVM
- ethereum virtual machine
Archives
- Today
- Total
목록View (1)
c0mpos3r
1. 문제 분석Contracts can manipulate data seen by other contracts in any way they want.It's unsafe to change the state based on external and untrusted contracts logic. 계약은 원하는 방식으로 다른 계약으로 보이는 데이터를 조작 할 수 있습니다.외부 및 신뢰할 수없는 계약 논리에 따라 상태를 변경하는 것은 안전하지 않습니다.1-1. code// SPDX-License-Identifier: MITpragma solidity ^0.8.0;interface Buyer { function price() external view returns (uint256);}contract Shop..
Web3/Hacking
2025. 8. 20. 01:24