Demonstrates how a malicious package can insert a load-time poison pill to avoid detection by tools like Safety.
Tools that are designed to find vulnerable packages can not ever run in the same python environment that they are trying to protect.
Install safety, insecure-package, and this package with pip in the same python environment. Order doesn't matter.
Run the check
safety checkYou should see both Running my modified safety.check and that insecure-package is not listed in the results!
Everything in Python is mutable. The trick is getting some code to run at interpreter load time in order to do some patching.
setup.py settings installs a malicious.pth file to your site-packages directory.malicious.pth file gets loaded anytime Python starts, which in turn imports our malicious package.malicious/__init__.py patches the safety library with a custom function to avoid detection.{
"severity": "MODERATE",
"cwe_ids": [
"CWE-807"
],
"nvd_published_at": null,
"github_reviewed_at": "2020-03-23T23:07:41Z",
"github_reviewed": true
}