
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Visit https://www.dcyd.io/ for more details.
Requires Python 3 before start
pip3 install dcyd -U
pipenv install dcyd
Generate the dcyd.json configuration file
dcyd-config $DCYD_PROJECT_ID $DCYD_PROJECT_ACCESS_TOKEN
Point the DCYD_CONFIG_FILE environment variable to the above file location
export DCYD_CONFIG_FILE=/path/to/project/dcyd.json
from dcyd import dcyd
@dcyd.monitor
def my_predict_function(features):
result = None
# run my model(s) logic
return result
from dcyd import dcyd
@dcyd.monitor(transformers={
'arg1': lambda value: value + 1,
'arg2': lambda value: value - 1,
'arg3': lambda value: value * -1,
})
def my_predict_function(arg1, arg2=2, arg3=10):
result = None
# run my model(s) logic
return result
from dcyd import dcyd
@dcyd.dcyd.monitor(return_transformer=lambda value: value + 1)
def my_predict_function():
return 0
Set the environment variable DCYD_CLIENT_FILE_LOGGER
with the file path you want to write to.
An example is:
export DCYD_CLIENT_FILE_LOGGER=/tmp/dcyd-client.log
Make sure the dcyd.json
file is absent from your project directory.
And make sure these environment variables are absent from the process. You can unset them by running the following:
unset DCYD_CONFIG_FILE
unset DCYD_PROJECT_ID
unset DCYD_PROJECT_ACCESS_TOKEN
FAQs
dcyd model performance monitoring client
We found that dcyd demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.