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.
Based on the aiosmtpd
, this packages offers you a simple way to integrate
a SMTP server into your test code.
Currently, the server does not support authentication, TLS or anything special instead of sending mails.
All mails are collected in the messages
property of the mock and can be evaluated there.
Looking for a pytest
SMTP mock fixture? Take a look at this project:
git.codebau.dev/pytest-plugins/pytest-smtp-test-server.
pip install smtp-test-server
poetry add --group dev smtp-test-server
Simple usage, with auto assigning a free port number on 127.0.0.1
:
from smtp_test_server.context import SmtpMockServer
def test_send_mail():
with SmtpMockServer() as smtp_mock:
my_mail_method(smtp_host=smtp_mock.host, smtp_port=smtp_mock.port)
assert len(smtp_mock.messages) == 1
assert smtp_mock.messages[0]["from"] == "my-test@sender.org"
Want to have more control over host and port? Use it like this:
with SmtpMockServer(bind_host="223.12.9.177", bind_port=2525):
...
Ports are automatically closed when leaving the context.
FAQs
Simple SMTP test server for running unit and integration tests.
We found that smtp-test-server 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.