capability
Analysis
#dependencies
#sca
#supply-chain
#lockfile

Dependency Analysis — Inspecting third-party code

Most code in any modern project isn't yours. Decoder reads manifests and lockfiles to map the dependency surface and flag suspicious entries.

What it is

Static parse of manifests to enumerate packages, versions, and pinning state.

Why it's useful

Shows the real attack surface — typosquats, abandoned packages, unpinned ranges.

How Decoder implements it

Parses common manifests during repo/ZIP analysis and surfaces them in the Insights tab.

When to use it

Auditing any third-party project, especially before merging or shipping.

When NOT to use it

For runtime CVE tracking — pair with a dedicated SCA in CI.

Practical example

A package named reqeusts (typo) is flagged for review during a Python repo scan.

FAQ

Glossary

SCA
Software Composition Analysis — auditing third-party code.
Lockfile
Pinned dependency manifest (package-lock.json, poetry.lock…).

Related