Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Optik is a set of symbolic execution tools that assist smart contract fuzzers, letting them run in a hybrid mode. Optik couples Echidna, our smart contract fuzzer, with the Maat symbolic executor that replays the fuzzing corpus and extends it with new inputs that increase coverage.
Optik is a work in progress and should not be used for real audits yet. Current limitations include:
KECCAK
hashes are not supportedCREATE2
, CALLCODE
, and DELEGATECALL
are not yet supportedhybrid-echidna -h
)
Optik allows to run the Echidna smart-contract fuzzer in hybrid mode. It basically couples Echidna with the Maat symbolic executor that replays the Echidna corpus and extends it with new inputs that increase coverage.
hybrid-echidna
starts with several incremental seeding steps, where it seeds the corpus with short transactions sequences obtained by Slither's dataflow analysis, and uses symbolic execution more intensely to solve new inputs. The sequence length is incremented at each seeding step. Once it reaches a certain length threshold, hybrid-echidna
falls back into its normal mode, starts to limit the number of symbolic inputs to solve, and stops using dataflow analysis for seeding the corpus.
Hybrid echidna can be used seamlessly in place of regular Echidna by replacing echidna-test
with hybrid-echidna
in your Echidna command line.
For example:
hybrid-echidna MyContract.sol --test-mode assertion --corpus-dir /tmp/test --contract MyContract
Additionnal options are available in hybrid mode to control hybrid-echidna
's behaviour:
--max-iters
: maximum number of fuzzing iterations to perform (one iteration is one Echidna campaign + one symbolic executor run on the corpus)
--solver-timeout
: maximum time in milliseconds to spend solving each possible new input
--incremental-threshold
: number of initial incremental seeding steps to perform
--no-incremental
: skip initial incremental seeding
--cov-mode
: type of coverage to increase when solving new inputs. Most coverage modes are implemented for experimental purposes. Unless you are developing/hacking on Optik, we recommend to keep the default mode
Debugging, logging and terminal display:
--debug
: add debugging information to the log output
--logs
: write logs to a given file (or stdout
)
--no-display
: disable the graphical terminal display
For a quick installation, run:
python3 -m pip install optik-tools
To keep up with the latest features and fixes, install Optik from its master
branch:
git clone https://github.com/crytic/optik && cd optik
python3 -m pip install .
You can also run it from Docker:
git clone https://github.com/crytic/optik && cd optik
docker build -t crytic/optik .
docker run -it --rm --mount type=bind,source="$(pwd)",target=/workdir crytic/optik
# This runs the Docker container, mounting the local directory into /workdir
FAQs
Symbolic execution toolkit for Ethereum smart-contracts
We found that optik-tools demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.