assurance-deps
pip install and npm install are permission to execute arbitrary code on your machine, and
almost nothing looks at that code first. This looks at it.
$ assurance deps requirements.txt
requirements.txt — 12 requirements, 9 read in full
Counted over the 12 requirements in requirements.txt.
Could not be examined at all (3):
· torch no archive for it under /srv/app and the network was never opened
· internal-utils a local path (../internal-utils), which is a working tree rather than an archive
· pyyaml a git URL, so there is no archive on this machine to read
Of the 9 read, 2 execute code when installed:
· fastjsonschema 2.21.2 runs at install time; runs other programs, compiles a C extension
· numpy 1.26.4 builds with setuptools.build_meta
3 ship a compiled binary:
· cryptography 42.0.5 12 binaries
2 do not come from the package index:
· pyyaml git+https://github.com/x/pyyaml@main not pinned to a commit, so what installs can change without the file changing
· internal-utils ../internal-utils a local path, so what installs is whatever is on this machine
No lockfile beside the manifest, so the transitive tree was not compared.
This says what an install will run, not whether running it is acceptable — that is your call.
Nothing here was executed, no advisory database was consulted, and the network was never opened.
npm, where it matters most
preinstall, install and postinstall are arbitrary shell that npm install runs on your
machine, and npx runs a package before anyone has looked at anything at all.
$ assurance deps package.json
package.json — 28 packages, 3 read in full
Counted over the 28 packages the lockfile resolves to.
25 known from the lockfile only — it records whether each has an install script, not what the script does:
· none of them declares one
Of the 3 read, 1 executes code when installed:
· esbuild 0.28.2 node install.js
Against package-lock.json: the same set of names, so the lock is not stale.
The lockfile is the best evidence there is, and it needs no archives. npm records
hasInstallScript for every package in the resolved tree, so "what will run code" is answerable for
the whole transitive tree offline. node_modules then supplies the script bodies for whatever is
installed, and the two are counted apart — knowing a package has an install script is not the same
as having read it. prepare is on the list too, which is the one people forget: it runs on npm ci
and on every git dependency.
The part that is not a feature
It reports what it could NOT check, first, and at the same weight as what it did.
Every scanner prints findings. Almost none print their own blind spots, so a clean report and an incomplete one look identical. "No issues found" over 9 of 12 packages is a lie by omission, and the three lines above the findings are the ones that make the rest of the report mean anything.
What it checks
Four checks, all of them offline, none of them consulting a model or a database.
| check | what it answers |
|---|---|
| install hooks | what runs when pip installs this — setup.py, the PEP 517 build backend, setup.cfg |
| native payloads | whether a compiled binary ships inside — .so, .dylib, .dll, .node, .pyd |
| non-registry sources | git URLs, direct archive URLs and local paths, where a version number is not a version |
| transitive delta | what a committed lockfile holds that the manifest never asked for |
Python reads requirements.txt plus any archives you have downloaded. npm reads package.json,
package-lock.json and node_modules.
It also names .pth files, which the interpreter executes on every start, long after any
install-time check has finished.
It never runs what it reads
Archive members are listed, a few named files are pulled into memory, and Python source is parsed to
an AST — which compiles but does not execute. Nothing is written to disk and nothing is imported.
Never extracting settles path traversal for free: a tar entry called ../../etc/passwd is a name in
a listing here, not a destination.
tests/test_never_executes.py was written before the reader and proves it with a hostile
setup.py that would leave a sentinel file behind. A dependency gate that executes the thing it is
inspecting is not a bug in a security tool; it is the vulnerability, performed by the tool, on every
package a user points it at.
Use it as a library
from pathlib import Path
import tempfile
from assurance_deps.scan import scan_manifest
from assurance_deps.report import format_report, report_to_dict
folder = Path(tempfile.mkdtemp())
(folder / "requirements.txt").write_text(
"requests==2.31.0\n"
"git+https://github.com/example/thing@main#egg=thing\n",
encoding="utf-8",
)
report = scan_manifest(folder / "requirements.txt")
# Nothing was downloaded, so nothing could be read — and that is stated, not implied.
assert report.total == 2
assert report.examined == 0
assert report.complete is False
assert [u.name for u in report.unexamined] == ["requests", "thing"]
# The manifest alone still answers one of the four checks.
assert [r.name for r in report.off_index] == ["thing"]
assert "not pinned to a commit" in report.off_index[0].note
text = format_report(report)
assert "Could not be examined at all (2)" in text
assert "This is silence, not a pass." in text
payload = report_to_dict(report)
assert payload["claims"] == {
"executed_anything": False,
"consulted_an_advisory_database": False,
"opened_the_network": False,
"says_whether_this_is_safe": False,
}
The attack these four checks cannot see
Offline is a real constraint and not only a virtue. AI coding tools recommend package names that do not exist, the same invented name tends to recur across runs rather than being random, and an attacker only has to register one and wait. A package arriving that way is new by definition.
Publish date is the signal, and reading it needs a registry, which needs a network, which this does not open. So a name that appeared last week and one that has been on the index for a decade are indistinguishable here. The report says so in its own closing lines rather than leaving you to notice.
None of the four checks is a substitute. A fabricated package that simply exfiltrates on import, with no install hook and no compiled payload, passes all of them.
What it will not say
- Not "safe". It reports what a package will execute. Whether that is acceptable is your call, and a tool that says "safe" has taken a decision it cannot support.
- Not "sandboxed". Reading an archive is not containment.
- Not a vulnerability database. Advisory lookup is somebody else's product. This consults none, so it will never tell you a package is known-bad.
- Not blocking. It reports. A gate that blocks before it has earned trust gets turned off, and then it guards nothing.
Exit codes
0 |
it read every requirement and found nothing to report |
1 |
there is something to look at: install-time code, a .pth startup hook, an off-index source, or a requirement nobody could examine |
2 |
it could not run: no such file, or a manifest it cannot parse |
A requirement it could not examine counts as a finding. Exiting 0 over an incomplete read is the whole failure this is built against.
A compiled binary does not. It is reported, and it is not a reason to stop: psycopg2-binary
ships ten and MarkupSafe one, so exiting 1 on that would fire on nearly every repository there is,
which is how a gate becomes a line in a CI file everybody has learned to ignore.
Scope
Python and npm, both offline. Registry checks — publisher changes, release age, name distance against popular packages — need a network and are not here. Running an install under observation is a different promise and is not implied by this one.
Apache-2.0. Part of assurance.
Release files for assurance-deps 0.2.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| assurance_deps-0.2.1.tar.gz | 35.1 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| assurance_deps-0.2.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size:63.4 kB
Release files / assurance_deps-0.2.1.tar.gz
| Download URL | assurance_deps-0.2.1.tar.gz |
|---|---|
| Size | 35.1 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
43569846b39bdb5bfb351cce8518ae2dfddc557dda7f5eb9460647f2d0f72ca4
|
|
BLAKE2b-256 checksum How to use checksums |
5c8b2a1be76fa05aab9b0f544e0251d276d95acf1a6601d17fb06bc7e51a3e88
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.
Transparency logRelease files / assurance_deps-0.2.1-py3-none-any.whl
| Download URL | assurance_deps-0.2.1-py3-none-any.whl |
|---|---|
| Size | 28.4 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
56bb3e0af112e5bbfb0aafd57262877966228634f7c381bca64974621160f101
|
|
BLAKE2b-256 checksum How to use checksums |
d03701da580265c7066383cc513131d11210a3b8842115894ec94281a8555206
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.
Transparency log