Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Table of Contents
WHAT: certifi-linux
wraps certifi, but instead of distributing a certificate like certifi
does, it uses the Linux system trust store.
WHY? The requests module depends on certifi
and uses it for TLS. certifi
distributes the collection of root certificates provided by Mozilla for Python deployments. In some cases, especially in an enterprise setup it is necessary to use the certificates which are shipped with the OS.
certifi-linux
is purposed for Linux! For Windows take a look at pip-system-certs.
pip install certifi-linux
certifi-linux
just needs to be installed. Afterwards certifi.where()
or $ python3 -m certifi
will return the path to the system store. Hence all dependent projects like requests
will do as well.
I am trying to keep tests up to date with endoflife.
Tested distros are:
Yet untested: Arch, Slackware, OpenWRT, FreeBSD, SUSE, gentoo, ...
certifi-linux
monkey patches certif.where
and certifi.contents
by using wrapt. When called, it searches in the defined set of possible certificate bundle paths for a match.
Tested: yes✅, no❌
Cert Bundle Path | Linux Distribution |
---|---|
/etc/ssl/cert.pem | fedora >= 3.4✅, RHEL✅, alpine✅, centOS Stream✅, Arch❌, OpenWRT❌, FreeBSD❌ |
/etc/pki/tls/cert.pem | fedora <= 3.3✅ |
/etc/ssl/certs/ca-certificates.crt | Debian✅, Ubuntu✅ |
/etc/ssl/ca-bundle.pem | openSUSE❌ |
The idea behind certifi-linux
is the same as behind certifi-system-store. certifi-system-store
replaces the dist-info of certifi with its own dist-info. This approach needs a specific order of installation for a succesful patch. When installed as a dependency among a whole set of dependencies this is hard to ensure and replacing dist-infos can mess up virtual environments.
pip-system-certs solves the same problem with a different approach. It monkey patches the requests.adapters.HTTPAdapter
and uses ssl.create_default_context
to load the OS certs. This works fine on Windows but has shown limitations on Linux as it does not work in some cases.
Viewed from the outside, certifi-debian is doing the exact same thing like certifi-linux
but just for debian. certifi-system-store-wrapper also does the same but with the necessity to set an environment variable.
Credits go to the developers of certifi-system-store
and pip-system-certs
as certifi-linux
is highly influenced by these two projects.
certifi-linux
is distributed under the terms of the MIT license.
FAQs
Certifi patch for using Linux cert trust stores
We found that certifi-linux 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.