Skip to main content

TrustSight

TrustSight

Audits AUR PKGBUILD updates before you install: detects structural changes, suspicious commands, typosquatting, and novelty signals, then produces a deterministic evidence report.

Python License DeepWiki Tests PyPI


Setup

Not published to the AUR yet: aur.archlinux.org/trustsight.git does not exist. Build from the PKGBUILD in this repository.

# 1. Install
git clone https://github.com/emiliano-go/trustsight.git
cd trustsight/packaging/aur
makepkg -si

# 2. Scan your outdated AUR packages
trustsight review

Requires Python 3.11+ and Arch Linux (the tool discovers packages via pacman -Qm, pacman -Sl for local repos, or --repo/--all-repos flags).

The analysis is deterministic and calculated locally. Verdicts are template-based, describing each finding in plain English, for example "Version bump. modified PKGBUILD, .SRCINFO. Signals: checksum disabled; novel dependency 'pyfoo' added in depends."

Baselines ship as signed GitHub release assets (baseline-seed.tar.gz, IOC baselines, the corpus). On first use the tool downloads the novelty seed and imports it only after its ed25519 signature verifies against the pinned distribution key; when offline, the attempt is skipped silently and the run starts cold. See installation for details.


Security model

TrustSight is evidence-producing, not proof-of-safety. Read the full security model for the threat model, invariants, and enforcement gates. It audits and does not install. The tool never runs the PKGBUILD, never executes extracted commands, and never modifies your system. Every finding is traceable to a specific diff line, URL, or novelty record. The output is a structured evidence report, not a gate. See what TrustSight cannot see.


What it detects

Attack / Risk How TrustSight catches it
Piped shell scripts (curl | bash, base64 | sh) Scans every new or changed line for command-subprocess pipelines (R001, ~100% recall on known cases)
Obfuscated commands (encoded strings, environment subversion like LD_PRELOAD) Resolves variables and decodes known obfuscation patterns; flags build-environment tampering (R007, R070)
Checksum disabled or removed Compares old vs new sha256sums / md5sums arrays (R004, R005)
Source URL typosquatting (githab.com instead of github.com) Character-level edit distance against known forge domains (R008)
Package-name typosquatting (e.g. libuvc resembling libuv) Edit-distance comparison against more popular packages in the seed database (R074)
URL swapped without a version bump Tracks source URL changes that are not accompanied by a new version (C003)
Novel / never-before-seen URLs or maintainers Compares against the release-channel seed (about 180,000 known source URLs and 35,587 hashed maintainer identities, verified against the pinned key on import); flags first-seen domains and maintainers (novelty tier)
Known-bad indicators Matches package URLs and strings against signed, federated IOC baselines from the release channel; reported in the IOC tier, outside the heuristic score
Unicode bidi override attacks (invisible characters that change how text displays) Detects directionality overrides and homoglyph codepoints in PKGBUILD content (R013)
Prompt injection in package metadata Pattern-matches common injection templates; primary defense is structural (R012)
GPG verification removed Detects when validpgpkeys was populated and is now empty (R069)
Untrusted maintainer takeover A maintainer change to someone never seen before (R071)
Stale package revived A package with no updates for over a year suddenly gets one (R067)
Accelerated release cadence 3+ commits in the last 24 hours (R073, informational)

What it cannot detect

Limitation Why
Malicious upstream release tarballs TrustSight audits the PKGBUILD, not the binaries it downloads. A clean build file can point to a compromised tarball.
Deliberately unremarkable attacks If no commands are added, no URLs change, and no checksums are disabled, there is no diff signal. The update is invisible to this kind of analysis.
Build-dependency attacks A malicious makedepends or depends entry is outside TrustSight's scope. It audits the recipe, not the second-order supply chain.
Runtime attacks The tool never executes the PKGBUILD, never runs extracted commands, and never modifies your system.
Zero-day structural attacks Rules are pattern-based and calibrated against a known corpus. A novel attack that leaves no matching pattern will not fire.

The default review output shows findings and a verdict, not score or risk columns. Add --score or --risk when you want the numeric band in the terminal. A clean score means no known risk signals fired, not that the package is safe. See what TrustSight cannot see for details.


The 30-second example

trustsight review
                        TrustSight Review
┏━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Package         ┃ Risk Score   ┃ Verdict                                   ┃
┃                 ┃              ┃                                           ┃
┡━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ chez-scheme-bin │   0/100      │ Version bump. No structural changes.      │
├─────────────────┼──────────────┼───────────────────────────────────────────┤
│ sketchy-pkg     │  35/100      │ R004 HIGH  Checksum disabled (SKIP).      │
│                 │              │ C003 INFO  Source URL changed without     │
│                 │              │            version bump.                  │
│                 │              │ SOURCE_BUCKET MEDIUM  New domain:         │
│                 │              │   sketchy-cdn.invalid (unknown).          │
│                 │              │ NOVELTY HIGH  Source URL first seen       │
│                 │              │   globally.                               │
│                 │              │ PINNING INFO  Source pinning: unpinned.   │
│                 │              │ Verdict: Checksum disabled; sources       │
│                 │              │   replaced with content from an unknown,  │
│                 │              │   never-before-seen domain.               │
├─────────────────┼──────────────┼───────────────────────────────────────────┤
│ obsidian-beta   │  15/100      │ INCONCLUSIVE. Only 2 prior observations;  │
│                 │              │ no high-severity signals from a cold DB.  │
└─────────────────┴──────────────┴───────────────────────────────────────────┘

The tiered evidence display is the differentiator: every signal (rule, bucket, novelty, pinning, verification) is shown with its contribution and severity. You see why the score is what it is.


Commands

Command What it does
trustsight review Scan outdated AUR packages and produce a findings table with tiered evidence. Supports --repo, --foreign, --all-repos, --verbose flags.
trustsight inspect <package> Deep-dive on a single package: findings, source URLs, resolved commands, novelty context.
trustsight history <package> Show past analysis results for a package.
trustsight forget <package> Remove a tracked package and all its history, or prune packages that no longer exist in the AUR (--prune).
trustsight list List all packages tracked in the database.
trustsight status Show database and system health statistics.
trustsight config Manage configuration (show, set, sync-rules).
trustsight seed-db Import a novelty seed (.db, .db.gz, or a v2 .tar.gz). The release-channel seed imports automatically on first review.
trustsight seed Inspect the hashed maintainer seed, fetch the verified release-channel seed, or migrate legacy plaintext rows.
trustsight db Database maintenance (check, vacuum, backup).
trustsight override Suppress a rule that misfires on your packages.
trustsight lint-rules Check rules.toml for unreachable or malformed rules.
trustsight full-aur Bootstrap or update the full-AUR baseline corpus; --watch runs repeated cycles on an interval.
trustsight baseline Build or import a full-AUR baseline artifact, optionally signed with your key.
trustsight import-baseline Verify and import a signed baseline artifact.
trustsight ioc Manage IOC federation baselines (update, list, export, sources).
trustsight corpus Corpus-wide queries over the full-AUR baseline (pivot, import, export).

Use it from Python

Every flow above is available as a library through trustsight.api, which returns dataclasses instead of printing. Nothing else under trustsight. is public.

from trustsight import TrustSight

ts = TrustSight()

report = ts.inspect("some-package")
print(report.risk_label, report.verdict)

result = ts.review(limit=25)
for r in result.flagged:
    print(r.package, r.risk, r.verdict)
for failure in result.failures:
    print("NOT VETTED:", failure.package, failure.error)

for cycle in ts.watch(interval=1800):     # full-aur --watch, as a generator
    for package, rule_id in cycle.new_alerts:
        print(rule_id, package)

Two rules carry over from the CLI. Use report.risk, never a band re-derived from report.score: an analysis that could not read the whole change reports Inconclusive regardless of the number. And check result.failures, because a package that could not be analysed is a result, not an absence.


How scoring works

Scoring is fully deterministic: same input always produces the same score. The pipeline is:

  1. Diff the old and new PKGBUILD
  2. Apply rules to detect structural changes, suspicious commands, typosquatting, etc.
  3. Classify URLs into trust buckets (official, self-hosted, unknown, homograph)
  4. Check novelty against the local database of known URLs and maintainers
  5. Calculate score from 0-100 by summing weighted contributions across four evidence tiers

Signals come from 13 core detection rules (R001-R013), the expanded TOML set (R039-R059), code-emitted rules (R060+), 4 dependency-graph rules (D001-D004) and 7 code-structure rules (C001-C007), all calibrated against a 3,246-diff benign corpus and a 3,322-diff stratified corpus of real AUR updates.

Verdicts are template-based, describing each triggered finding in plain English. The score is never influenced by the verdict text.

See scoring philosophy.


License

MIT


Documentation hub

Section Description
Getting Started One-tutorial path from install to first review
Full documentation Docs landing page
Contributing How to report bugs, contribute code, improve docs
Security Vulnerability disclosure policy
License MIT full text

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

trustsight-0.13.1.tar.gz (16.0 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

trustsight-0.13.1-py3-none-any.whl (301.2 kB view details)

Uploaded Python 3

File details

Details for the file trustsight-0.13.1.tar.gz.

File metadata

  • Download URL: trustsight-0.13.1.tar.gz
  • Upload date:
  • Size: 16.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for trustsight-0.13.1.tar.gz
Algorithm Hash digest
SHA256 1db81e5b61cbc0b21210f0b0c3349391a5a1e52ebef6972ef9316d3e6e274887
MD5 642ac414334ede4cb3d03f3edbe8b4a1
BLAKE2b-256 4c053eadbdbf256cd637c4a65cbdc2b7f5b154dc33594583b92649f4d1c0adf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for trustsight-0.13.1.tar.gz:

Publisher: publishing.yml on emiliano-go/trustsight

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file trustsight-0.13.1-py3-none-any.whl.

File metadata

  • Download URL: trustsight-0.13.1-py3-none-any.whl
  • Upload date:
  • Size: 301.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for trustsight-0.13.1-py3-none-any.whl
Algorithm Hash digest
SHA256 a3dd640d26691b41ed61e3a7f10f873900e04e6792e69bd9c2723b383da345cd
MD5 97e3af1447c160c598f6c846e579cbb6
BLAKE2b-256 09eae7f4f6ce3516d43d303f95aa901debb431b5c146f73cd889f4b0ddec1ab0

See more details on using hashes here.

Provenance

The following attestation bundles were made for trustsight-0.13.1-py3-none-any.whl:

Publisher: publishing.yml on emiliano-go/trustsight

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.15.7

2 files

0.15.6

2 files

0.15.5

2 files

0.15.4

2 files

0.15.3

2 files

0.15.2

2 files

0.15.1

2 files

This release

0.13.1 This release

2 files

0.13.0

2 files

0.12.1

2 files

0.12.0

2 files

0.11.0

2 files

0.10.1

2 files

0.10.0

2 files

0.9.0

2 files

0.8.0

2 files

0.7.2

2 files

0.7.1

2 files

0.7.0

2 files

0.6.1

2 files

0.6.0

2 files

0.5.1

2 files

0.5.0

2 files

0.4.1

2 files

0.4.0

2 files

0.3.1

2 files

0.3.0

2 files

0.2.0

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page