File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
src/CaptureTheEther/FuzzyIdentity Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ This repository collects blockchain challenges in CTFs and wargames.
4
4
5
5
These challenges are categorized by topic, not by difficulty or recommendation.
6
6
Also, there are my writeups and exploits for some challenges (e.g., [ Paradigm CTF 2022] ( src/ParadigmCTF2022/ ) ).
7
+ Please be aware that these contain spoilers.
7
8
8
9
If there are any incorrect descriptions, I would appreciate it if you could let me know via issue or PR!
9
10
Original file line number Diff line number Diff line change 1
1
// SPDX-License-Identifier: UNLICENSED
2
- pragma solidity ^ 0.8.20 ;
2
+ pragma solidity ^ 0.8.27 ;
3
3
4
4
import {Test, console} from "forge-std/Test.sol " ;
5
5
import {FuzzyIdentityChallenge} from "./FuzzyIdentityChallenge.sol " ;
@@ -20,7 +20,7 @@ contract ExploitTest is Test {
20
20
21
21
Create2Deployer deployer = new Create2Deployer ();
22
22
assert (address (deployer) == deployerAddr);
23
- bytes32 salt = bytes32 (uint256 (161984 )); // found by _testSearchSalt
23
+ bytes32 salt = bytes32 (uint256 (787669 )); // found by _testSearchSalt
24
24
address exploitAddr = deployer.deploy (vm.getCode ("Exploit.t.sol:FuzzyIdentityExploit " ), salt);
25
25
FuzzyIdentityExploit (exploitAddr).exploit (address (challenge));
26
26
You can’t perform that action at this time.
0 commit comments