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.
🚧 under construction 🚧
A simple client library to access the Wayback Machine news archive search.
pip install wayback-news-search
Counting matching stories:
from waybacknews.searchapi import SearchApiClient
import datetime as dt
api = SearchApiClient("mediacloud")
api.count("coronavirus", dt.datetime(2022, 3, 1), dt.datetime(2022, 4, 1))
Paging over all matching results:
from waybacknews.searchapi import SearchApiClient
import datetime as dt
api = SearchApiClient("mediacloud")
for page in api.all_articles("coronavirus", dt.datetime(2022, 3, 1), dt.datetime(2022, 4, 1)):
do_something(page)
Install the dependencies for dev: pip install -e .[dev]
pytest
to make sure all the test passwaybacknews/__init__.py
python setup.py sdist
to create an installation packagetwine upload --repository-url https://test.pypi.org/legacy/ dist/*
to upload it to PyPI's test platformtwine upload dist/*
to upload it to PyPIexpanded
results, and more integration testingpaged_articles
method to allow paging over all resultsurl
field searcharticle
endpoint, test case for fetching content (snippet
) via article_url
propertyFAQs
Wayback Machine news archive search api client
We found that wayback-news-search 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
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.