Please do not open a public GitHub issue for suspected security vulnerabilities.
For sensitive reports:
- use GitHub's private vulnerability reporting for this repository
- otherwise contact the maintainer directly through GitHub: jfleezy23
When reporting an issue, include:
- a short description of the problem
- affected version or release tag
- reproduction steps or proof-of-concept details
- any known impact or mitigation notes
This repository currently uses a mix of GitHub-native security tooling and workflow guardrails to reduce drift and catch issues earlier:
mainrequires pull requests before merge, including for administrators.- The
buildcheck fromWindows CIis required before merges intomain. - Merged branches are deleted automatically to reduce branch sprawl and stale release drift.
Windows CIruns on pushes and pull requests and verifies the pinned runtime restore plus a Releasex64build.- GitHub code scanning is enabled through GitHub's default CodeQL setup for
actionsandcsharp. - GitHub secret scanning is enabled to detect known leaked secret patterns in repository history.
- GitHub push protection is enabled to block many secrets before they are pushed.
- The dependency graph and automatic dependency submission are enabled so GitHub can reason about shipped dependencies beyond just manifest files.
- Dependabot security and version update pull requests are enabled for
nugetand GitHub Actions dependencies. - Dependency review now runs on pull requests to flag newly introduced vulnerable dependencies before merge.
- Desktop packaging artifacts can be attested with GitHub artifact attestations so published build provenance can be verified.
- A SonarQube Cloud workflow is configured for PRs and
mainpushes, and becomes active when the repositorySONAR_TOKENsecret is present; repository-level overrides are available for organization and project key if the default mapping is not correct. - The macOS Avalonia preview has a separate macOS CI workflow for the Mac project and non-release-candidate Mac tests. Release-candidate corpus validation remains a local/manual gate because the corpus is not stored in git.
- GitHub Actions used by repository workflows must be pinned to full commit SHAs.
- Pull request templates and issue templates are in place to keep validation, documentation, and security review visible during review.
These checks improve detection and consistency, but they are not a guarantee that a release is free of vulnerabilities. Human review and release validation still matter.
Frame Player is designed as a local desktop review tool. The shipped WPF app does not include telemetry, analytics, auto-update, HTTP client, socket, or background network-service code. It uses local media files, bundled FFmpeg runtime DLLs, DPAPI-protected local state, and a hidden local child process for export and export-side probe work.
The macOS preview keeps the same runtime network posture. It uses local media files, bundled FFmpeg .dylib files, local app support/cache/log paths, and local child-process export/probe work. It must not add telemetry, analytics, auto-update, HTTP client, socket, or background network-service behavior.
Repository build and developer workflows can perform outbound network access for NuGet restore, HTTPS downloads of pinned FFmpeg runtime artifacts, optional official FFmpeg source clones, and optional signing timestamp requests. Those are build-time supply-chain paths, not runtime telemetry paths. Network-restricted review builds should restore NuGet packages from an approved local cache/feed, stage the required runtime folders locally, and build with -p:SkipRuntimeBootstrap=true.
- Signed-but-not-notarized Apple Development builds are acceptable for local maintainer testing only.
- The published
macos-preview-0.1.0Apple Silicon preview is Developer ID signed, notarized, stapled, and Gatekeeper validated. - Public macOS distribution requires a Developer ID Application certificate, hardened runtime signing, notarization, stapling, and Gatekeeper validation.
- The current required entitlement is
com.apple.security.cs.allow-jitfor .NET. Do not add entitlements unless a concrete runtime failure proves they are required.
This repository includes an internal security review note in SECURITY_REVIEW.md. That document is supplemental background, not the intake path for new sensitive disclosures.
Maintainer-facing workflow and branch-protection expectations are documented in docs/security-quality-baseline.md.
- Please give the maintainer a reasonable opportunity to investigate and remediate before public disclosure.
- Non-sensitive bugs and hardening suggestions can still be opened as normal GitHub issues.