
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
python-scf
Advanced tools

SUSE CVE Fetcher (unofficial; not developed by SUSE)
scf is a small tool to fetch informations about CVEs from suse.com.
Install via pypi package:
pip install python-scf
Or directly via source:
pip install git+https://github.com/dadav/scf
👉 Please use https://scf.readthedocs.io/en/stable/
You can use it via command line:
# list all cve
scf cve list
# export as json
scf cve list --json
# fetch details for a specific cve
scf cve details CVE-2022-0001
# watch for new CVE
scf cve watch
# start a little api server
scf server run
# prefetch some data (older years are excluded)
scf cache populate
# show some stats about the local cache
scf cache stats
Or in your python program:
from rich import print
from scf.suse import get_all_cve, get_cve_details
latest_cve = get_all_cve()[0]
details = get_cve_details(latest_cve)
print(f'[{latest_cve}] Score: {details.cvss.score}')
Made with contributors-img.
FAQs
A small tool to fetch informations about CVE from suse.com.
We found that python-scf 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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.