일반적인 스마트 계약 취약점
재진입, 정수 오버플로 및 언더플로, 접근 제어 문제 등 스마트 계약에서 흔히 발생하는 보안 결함을 살펴보세요.
일반적인 스마트 계약 취약점은(는) CoddyKit의 무료 Web3 & DApp Development Fundamentals 강의입니다. 이것은 3개 중 1번째 강의입니다. 아래에서 전체 강의를 무료로 읽을 수 있으며, 내장 코드 에디터와 24/7 AI 튜터와 함께 브라우저에서 직접 실습할 수 있습니다. 이 강의는 Web3 & DApp Development Fundamentals 학습 경로의 일부이며, 진행 상황이 웹과 CoddyKit 앱에 동기화됩니다. Web3 & DApp Development Fundamentals 강의에는 총 3개의 강의가 포함되어 있습니다.
이 강의의 일부는 아직 번역되지 않았으며 영어로 표시됩니다.
Why Security Matters
Smart contracts manage valuable assets and execute irreversible actions on the blockchain. A single vulnerability can lead to significant financial losses or unauthorized contract manipulation.
Unlike traditional software, deployed smart contracts are often immutable. This means that once a contract is live, fixing bugs or vulnerabilities can be extremely challenging, sometimes requiring complex upgrade mechanisms or even redeployment.
Reentrancy Explained
Reentrancy is a critical vulnerability where an external call from your contract to another contract or an external address can 're-enter' the calling contract before its original function call has completed its execution.
This allows an attacker to repeatedly execute certain parts of a function, often leading to unauthorized fund withdrawals or state manipulation, draining the contract's balance.
Vulnerable Reentrancy Example
In this example, the withdraw function first sends Ether (an external call) and then updates the user's balance. An attacker could re-enter withdraw multiple times before their balance is set to zero.
pragma solidity ^0.8.0;
contract VulnerableWithdraw {
mapping(address => uint) public balances;
constructor() payable {
balances[msg.sender] = msg.value;
}
function withdraw() public {
uint amount = balances[msg.sender];
require(amount > 0, "No funds to withdraw");
// Vulnerable: External call BEFORE state update
(bool success, ) = msg.sender.call{value: amount}("");
require(success, "Transfer failed");
balances[msg.sender] = 0; // State updated AFTER call
}
function deposit() public payable {
balances[msg.sender] += msg.value;
}
function getBalance() public view returns (uint) {
return address(this).balance;
}
}Preventing Reentrancy
The most effective defense against reentrancy is the Checks-Effects-Interactions pattern. This pattern dictates the order of operations within your functions:
- Checks: Verify all conditions (e.g.,
requirestatements). - Effects: Make all necessary state changes (e.g., update balances, modify variables).
- Interactions: Perform any external calls (e.g., sending Ether, calling another contract).
Always update the contract's state *before* sending Ether or calling external contracts.
Secure Withdrawal Function
Here's the corrected withdraw function. Notice how the user's balance is updated (an 'effect') *before* the Ether is sent (an 'interaction').
pragma solidity ^0.8.0;
contract SecureWithdraw {
mapping(address => uint) public balances;
constructor() payable {
balances[msg.sender] = msg.value;
}
function withdraw() public {
uint amount = balances[msg.sender];
require(amount > 0, "No funds to withdraw");
balances[msg.sender] = 0; // Effect: State updated BEFORE call
(bool success, ) = msg.sender.call{value: amount}(""); // Interaction
require(success, "Transfer failed");
}
function deposit() public payable {
balances[msg.sender] += msg.value;
}
function getBalance() public view returns (uint) {
return address(this).balance;
}
}Integer Overflow & Underflow
Integer types in Solidity (like uint or int) have a fixed size. An overflow occurs when an arithmetic operation results in a value larger than the maximum an integer type can hold, causing it to 'wrap around' to its minimum value (e.g., 255 + 1 on a uint8 becomes 0).
An underflow occurs when an operation results in a value smaller than the minimum (usually 0 for uint), causing it to wrap around to its maximum value (e.g., 0 - 1 on a uint8 becomes 255).
Vulnerable Integer Logic
Before Solidity 0.8.0, these wrap-around behaviors were not automatically checked. This example, using an older Solidity version, shows how an attacker could exploit an underflow to gain a massive balance.
pragma solidity ^0.7.0; // Using 0.7.x to demonstrate vulnerability
contract VulnerableCounter {
uint public count = 0;
// If count is 0 and _amount is 1, count becomes type(uint).max
function decrement(uint _amount) public {
count -= _amount; // Vulnerable to underflow
}
// If count + _amount exceeds type(uint).max, count wraps around to a small number
function increment(uint _amount) public {
count += _amount; // Vulnerable to overflow
}
}Mitigating Overflow/Underflow
Since Solidity 0.8.0, arithmetic operations automatically revert (fail) on overflow or underflow. This provides robust protection against these issues by default, making your contracts much safer.
For contracts written in older Solidity versions (pre-0.8.0), it was common to use libraries like OpenZeppelin's SafeMath. SafeMath provided functions (add, sub, mul, div) that performed checked arithmetic, reverting if an overflow or underflow would occur.
Access Control Issues
Access control ensures that only authorized users or roles can perform specific, sensitive actions within a smart contract. Incorrect access control is a very common source of vulnerabilities.
Common mistakes include:
- Missing authorization checks for critical functions (e.g., administrative functions).
- Using
msg.senderdirectly without verifying ownership or role. - Weak or easily guessable authorization mechanisms.
Vulnerable Access Control
In this example, the setCriticalValue function is intended to be for the contract owner only, but it lacks any check to enforce this. Any user could call this function and change the critical value.
The onlyOwner modifier shows the correct way to restrict access.
pragma solidity ^0.8.0;
contract VulnerableAccess {
address public owner;
uint public criticalValue;
constructor() {
owner = msg.sender;
criticalValue = 100;
}
// Vulnerable: This function should be owner-only, but it's public!
function setCriticalValue(uint _newValue) public {
criticalValue = _newValue; // Anyone can call this!
}
// Correct way to restrict access using a modifier
function setCriticalValueSecure(uint _newValue) public onlyOwner {
criticalValue = _newValue;
}
modifier onlyOwner() {
require(msg.sender == owner, "Not owner");
_;
}
}Vulnerability Check
Which of the following patterns is designed to prevent reentrancy attacks by ensuring state changes occur before external calls?
Recap: Secure Smart Contracts
Today, we've covered some of the most common and critical smart contract vulnerabilities:
- Reentrancy: Prevented by following the Checks-Effects-Interactions pattern.
- Integer Overflow/Underflow: Mitigated by using Solidity 0.8.0+ (automatic checks) or SafeMath for older versions.
- Access Control Issues: Secured by implementing proper authorization checks using modifiers like
onlyOwner.
Always prioritize security in your smart contract development. Thoroughly auditing your code and adhering to best practices are essential steps to protect assets and ensure the reliability of your decentralized applications.
AI 튜터와 함께 Web3 & DApp Development Fundamentals을(를) 배우세요 — 무료
브라우저에서 실제 코드를 작성하고 실행하며, 24/7 AI 튜터로부터 즉각적인 도움을 받고, 웹이나 앱에서 중단한 부분부터 계속 학습하세요.
- 코스
- 29
- 레슨
- 105
자주 묻는 질문
“일반적인 스마트 계약 취약점” 강의는 무료인가요?
네 — “일반적인 스마트 계약 취약점” 전체 내용을 이 웹사이트에서 무료로 읽을 수 있습니다. 인터랙티브하게 실습하려면(내장 코드 에디터와 24/7 AI 튜터), CoddyKit PRO로 업그레이드하면 Web3 & DApp Development Fundamentals 강의 전체를 잠금 해제할 수 있습니다. Web3 & DApp Development Fundamentals 강의에는 총 3개의 강의가 포함되어 있습니다.
“일반적인 스마트 계약 취약점”에서 뭘 배우나요?
재진입, 정수 오버플로 및 언더플로, 접근 제어 문제 등 스마트 계약에서 흔히 발생하는 보안 결함을 살펴보세요. 브라우저에서 직접 실행하는 실습 코드로 Web3 & DApp Development Fundamentals을(를) 배우며, 24/7 AI 튜터가 강의를 진행하면서 질문에 답변해줍니다.
Web3 & DApp Development Fundamentals을(를) 시작하는 데 경험이 필요한가요?
사전 경험은 필요하지 않습니다. CoddyKit의 Web3 & DApp Development Fundamentals은(는) 초급자부터 고급 학습자까지를 위해 구성되어 있으므로, 여기서 시작하거나 처음부터 시작할 수 있으며 자신의 속도대로 진행할 수 있습니다. 이것은 3개 중 1번째 강의입니다.
“일반적인 스마트 계약 취약점” 강의는 얼마나 걸리나요?
대부분의 CoddyKit 강의는 약 5~10분이 소요됩니다. 각 강의는 간결하고 인터랙티브하여 꾸준한 진행이 가능하며, 웹과 앱에서 중단한 부분부터 바로 시작할 수 있습니다.
이 Web3 & DApp Development Fundamentals 강의에서 코드를 작성하고 실행할 수 있나요?
네. 모든 Web3 & DApp Development Fundamentals 강의에는 내장 코드 에디터가 포함되어 있으므로, 브라우저에서 바로 실제 코드를 작성하고 실행한 후 즉시 AI 피드백을 받을 수 있습니다 — 로컬 설정이 필요 없습니다.
이 강의의 모든 강의
- 일반적인 스마트 계약 취약점
- 보안 도구 및 감사
- 가스 최적화 기법