Pagonic
Pagonic is an alpha Python ZIP toolkit focused on safe archive inspection, secure extraction, and repeatable local benchmarking. Its main idea is simple:
Inspect before you extract.
The intended workflow is visible in the demo: inspect the archive, verify it
against an explicit risk threshold, and let safe-extract refuse unsafe input
before it writes files.
- A core library for inspecting, writing, reading, and validating ZIP archives.
- A
pagoniccommand-line interface for inspect, verify, safe extract, and ZIP utilities. - An optional PyQt6 GUI launched with
pagonic-gui.
This repository contains the v0.5.0 alpha release. The import package remains
Pagonic for compatibility; the distribution name is pagonic. No PyPI or
TestPyPI package is published, so install from a local checkout or use the
artifacts attached to the GitHub release.
Project Story
Pagonic started more than a year ago as one of my earliest software-learning projects. Its first direction was much broader and more experimental: a ZIP/archive engine with compression, extraction, GUI ideas, benchmarking, and performance experiments.
After many iterations, I revised the project direction and narrowed the public scope into something clearer:
Pagonic is not trying to be another desktop archive manager. It is becoming a security-aware ZIP inspection and safe extraction toolkit.
This v0.5.0 release builds on the first cleaned-up public direction from
v0.4.0. It keeps the useful ZIP core, CLI, tests, and safety work while making
the inspection policy, regression corpus, automation examples, package surface,
and compatibility boundaries explicit.
Pagonic is still evolving, but its purpose is now clearer: inspect first, extract safely.
Install
No PyPI or TestPyPI package is published for this release, so install from a local checkout after cloning the repository.
For CLI-only use from a local checkout:
python -m pip install .
For local development:
python -m pip install -e .[dev,gui]
For CLI-only development with test dependencies:
python -m pip install -e .[dev]
Experimental performance helpers are optional and are not required by inspection or safe extraction:
python -m pip install -e .[performance]
The GUI is optional. If PyQt6 is not installed, pagonic-gui exits with a clear install message.
CLI Quick Start
pagonic --help
pagonic inspect suspicious.zip
pagonic inspect suspicious.zip --json
pagonic inspect suspicious.zip --markdown
pagonic verify release.zip
pagonic verify release.zip --max-risk medium
pagonic safe-extract upload.zip output/
pagonic safe-extract upload.zip output/ --dry-run
pagonic list archive.zip --tree
pagonic compress path/to/file.txt -o archive.zip
pagonic config list
Use inspect before extraction for untrusted ZIP files. safe-extract applies
the inspection gate before writing files, supports --dry-run, and refuses ZIP
entries that use unsupported compression methods.
Python API Quick Start
from Pagonic.core.formats.zip_writer import ZipWriter
from Pagonic.core.formats.zip_reader import ZipReader
writer = ZipWriter("archive.zip", compression_level=6)
writer.add_file("file.txt")
writer.finalize()
reader = ZipReader("archive.zip")
report = reader.inspect()
if report.risk_level in {"ok", "low"}:
reader.extract_all("output")
Project Layout
Pagonic/ Python package
tests/ pytest suite
docs/ public documentation
examples/ small runnable examples
pyproject.toml package metadata and tool config
Documentation
- Architecture
- User Guide
- Inspection Policy Contract
- Inspection JSON Schema Contract
- CI Integration
- Package Surface Audit
- 0.5 Migration Notes
- 0.5 Release Audit
- SARIF Evaluation
- ZipHandler Compatibility Policy
- Developer Guide
- 0.4 Migration Notes
- Roadmap
- Changelog
- Contributing
- Security Policy
- Code of Conduct
Contributing
Focused contributions are welcome, especially improvements to inspection determinism, security regression coverage, safe extraction policy, CI integration, and documentation. Read CONTRIBUTING.md, check the 0.5 roadmap, and use the issue templates before opening a pull request. Do not include private plans, local paths, secrets, generated archives, or benchmark output in public changes.
Risk Signals
Inspection reports are deterministic and do not use runtime AI. Current risk flags include:
| Flag | Severity | Meaning |
|---|---|---|
path_traversal |
high |
Entry contains .. path segments. |
absolute_path |
high |
Entry uses a POSIX absolute path. |
windows_drive_path |
high |
Entry looks like a Windows drive path. |
hidden_file |
low |
Entry basename starts with .. |
empty_filename |
medium |
Entry cannot be mapped to a useful safe path. |
too_many_files |
high |
Archive exceeds the configured file-count limit. |
large_uncompressed_size |
high |
Archive exceeds the configured uncompressed-size limit. |
high_compression_ratio |
high |
Entry expands much more than its compressed size. |
unsupported_compression_method |
medium |
Entry uses a ZIP method Pagonic does not currently support; safe-extract refuses it. |
crc_or_structure_error |
critical |
ZIP structure or CRC validation failed. |
suspicious_extension |
medium |
Entry has an executable or script-like extension. |
duplicate_filename |
high |
The same archive filename appears more than once. |
normalized_path_collision |
high |
Different names resolve to the same sanitized path. |
case_insensitive_collision |
high |
Names collide on case-insensitive filesystems. |
unicode_normalization_collision |
high |
Different Unicode spellings normalize to one path. |
symlink_entry |
high |
ZIP metadata marks the entry as a symbolic link. |
encrypted_entry |
high |
Entry contents cannot be validated by the current workflow. |
nested_archive |
low |
Entry appears to contain another archive; it is not recursively inspected. |
long_filename |
medium |
Entry name exceeds the configured review length. |
long_archive_comment |
low |
Archive comment exceeds the configured review length. |
pagonic inspect --json emits a stable alpha report with archive totals,
overall risk_level, top-level risk_flags, recommended_action, and per-entry
metadata. Entries preserve archive order and risk flags use a deterministic
catalog order. See the Inspection JSON Schema Contract
for canonical fields, compatibility aliases, ordering guarantees, and clean,
risky, and invalid report examples. pagonic inspect --markdown renders the
same inspection as a saved human-readable report.
Command Policy
Use inspect before extraction when the archive is untrusted. For automation,
verify returns exit code 0 only when the report is within --max-risk and
has no validation errors. safe-extract applies the same inspection gate before
writing files and supports --dry-run.
See the inspection policy contract for the exact clean/risky/invalid decision table, defaults, unsupported-method rule, and exit codes.
The older extract command remains as a compatibility command for trusted
archives. It uses secure path handling, but it is not an inspection policy gate;
use safe-extract for untrusted input. list and info are read-only display
commands and do not replace an inspection report.
Status
The current public release is 0.5.0: an alpha-stage, test-backed release with
security-aware ZIP inspection, explicit policy gates, a synthetic security
regression corpus, gated safe extraction, core ZIP behavior, CLI support,
optional GUI packaging, MIT license, and CI-ready tests.
Pagonic is not intended for production-critical automation yet and is not positioned as a general multi-format desktop archive manager. The next work is evidence-driven maintenance: collect real usage signals, expand the security corpus when new rules are added, and revisit deferred integrations only when a concrete consumer justifies them.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pagonic-0.5.0.tar.gz.
File metadata
- Download URL: pagonic-0.5.0.tar.gz
- Upload date:
- Size: 126.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3d3af5e0ce9d0f2f9f2d54f2efe9ad16d21db001336db08cec797b90bbf6794a
|
|
| MD5 |
8a69725ea98eca341fc32754522a4f4b
|
|
| BLAKE2b-256 |
3aa6ebe5a3ec1a8c381971c283bc3526d824765a14ca43706b9bd88e89b9d65a
|
Provenance
The following attestation bundles were made for pagonic-0.5.0.tar.gz:
Publisher:
publish.yml on SetraTheXX/pagonic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pagonic-0.5.0.tar.gz -
Subject digest:
3d3af5e0ce9d0f2f9f2d54f2efe9ad16d21db001336db08cec797b90bbf6794a - Sigstore transparency entry: 2655896399
- Sigstore integration time:
-
Permalink:
SetraTheXX/pagonic@b4edbe978a41ac86aa4759f7fd9e3dd0e59fa475 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/SetraTheXX
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@b4edbe978a41ac86aa4759f7fd9e3dd0e59fa475 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pagonic-0.5.0-py3-none-any.whl.
File metadata
- Download URL: pagonic-0.5.0-py3-none-any.whl
- Upload date:
- Size: 114.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8991d0274807d52275f4c467dc79942ea29993a8f374a7e46500adec7c5a056b
|
|
| MD5 |
dd167fc5e8154525e6c65ec048bc78a9
|
|
| BLAKE2b-256 |
e40123c153b34dec7fa3d25ff96626c777161107c552104fcd0577c9c44c943f
|
Provenance
The following attestation bundles were made for pagonic-0.5.0-py3-none-any.whl:
Publisher:
publish.yml on SetraTheXX/pagonic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pagonic-0.5.0-py3-none-any.whl -
Subject digest:
8991d0274807d52275f4c467dc79942ea29993a8f374a7e46500adec7c5a056b - Sigstore transparency entry: 2655896453
- Sigstore integration time:
-
Permalink:
SetraTheXX/pagonic@b4edbe978a41ac86aa4759f7fd9e3dd0e59fa475 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/SetraTheXX
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@b4edbe978a41ac86aa4759f7fd9e3dd0e59fa475 -
Trigger Event:
workflow_dispatch
-
Statement type: