{"id":37045787,"url":"https://github.com/nsacyber/paccor","last_synced_at":"2026-01-14T05:17:29.221Z","repository":{"id":34349750,"uuid":"150758602","full_name":"nsacyber/paccor","owner":"nsacyber","description":"The Platform Attribute Certificate Creator can gather component details, create, sign, and validate the TCG-defined Platform Credential. #nsacyber","archived":false,"fork":false,"pushed_at":"2025-12-19T19:07:27.000Z","size":7576,"stargazers_count":70,"open_issues_count":0,"forks_count":21,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-12-21T02:14:57.199Z","etag":null,"topics":["certificate","certificates","credential","trusted-computing"],"latest_commit_sha":null,"homepage":"https://github.com/nsacyber/HIRS","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nsacyber.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":"NOTICE.md","maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2018-09-28T15:14:54.000Z","updated_at":"2025-12-19T18:25:31.000Z","dependencies_parsed_at":"2023-01-15T06:30:29.337Z","dependency_job_id":"dadb111b-d479-434e-a1e4-3f1640482b7f","html_url":"https://github.com/nsacyber/paccor","commit_stats":null,"previous_names":[],"tags_count":30,"template":false,"template_full_name":null,"purl":"pkg:github/nsacyber/paccor","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nsacyber%2Fpaccor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nsacyber%2Fpaccor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nsacyber%2Fpaccor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nsacyber%2Fpaccor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nsacyber","download_url":"https://codeload.github.com/nsacyber/paccor/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nsacyber%2Fpaccor/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28410356,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T01:52:23.358Z","status":"online","status_checked_at":"2026-01-14T02:00:06.678Z","response_time":107,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["certificate","certificates","credential","trusted-computing"],"created_at":"2026-01-14T05:17:28.586Z","updated_at":"2026-01-14T05:17:29.210Z","avatar_url":"https://github.com/nsacyber.png","language":"C#","readme":"# Platform Attribute Certificate Creator (paccor)\r\nThis program can create platform credentials according to the Platform Certificate Profile v1.0. A platform certificate (PC) is a X.509v2 Attribute Certificate which encapsulates details about components on a host and the security standards met by the platform manufacturer.\r\n\r\nThis program can assist in gathering all of the data that can go into a PC and produce a signed attribute certificate.\r\n\r\nThe device component information gathering aspect of the program is platform-dependent.  That aspect has been written and tested for CentOS 7.  Support for additional platforms is coming soon.  This platform dependency is limited to bash scripts.  An advanced user may customize the scripts to their own purpose.  The User Guide contains details regarding which scripts are platform dependent, and the data format expected as their output.\r\n\r\nThis source code contains our attempts at capturing ASN.1 definitions from TCG Credential specification documents in Java. The idea is to use the BouncyCastle style for parsing/building ASN.1 elements. The coding style is our own twist on what we found in the source code of BouncyCastle's provider library, especially those classes in org.bouncycastle.asn1.x509.\r\n\r\n## Getting started:\r\nHead to the [Releases](https://github.com/nsacyber/paccor/releases) page and download the package relevant to your OS to begin using paccor.\r\n\r\nTo build the project yourself, paccor uses Gradle to manage build tasks. paccor has been tested with ```Gradle 4.5.1```. Later versions of Gradle may also work.\r\n* If you already have gradle installed on your system, you can run:\u003cbr/\u003e \r\n```gradle clean build```\r\n  * The following arguments can be added to build the relevant package:\u003cbr/\u003e\r\n  ```gradle clean build buildRpm buildDeb distZip```\r\n* If you don't have gradle installed, use the included gradle wrapper.\u003cbr/\u003e\r\n```gradlew clean build buildRpm buildDeb distZip```\r\n  * On Windows use:\u003cbr/\u003e\r\n  ```gradlew.bat clean build buildRpm buildDeb distZip```\r\n  * Validation of the gradle wrapper jar file is performed by a GitHub Action maintained by Gradle:\u003cbr/\u003e\r\n  https://github.com/marketplace/actions/gradle-wrapper-validation\u003cbr/\u003e\r\n  Instructions to verify the Gradle Wrapper JAR locally are available [here](https://docs.gradle.org/current/userguide/gradle_wrapper.html#wrapper_checksum_verification).\r\n\r\n## Minimum software requirements:\r\n* Gradle 4.5.1\r\n* Java 1.8.0\r\n\r\n## See the User Guide for more information\r\n[Platform Credential Creator User Guide (PDF)](docs/platformCertificateCreator.pdf)\r\n\r\n## References:\r\n### Platform Attribute Certificate Profile\r\nhttps://trustedcomputinggroup.org/resource/tcg-platform-attribute-credential-profile/\r\n\r\n### The private enterprise numbers list came from:\r\nhttp://www.iana.org/assignments/enterprise-numbers\r\n\r\n\r\n\r\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnsacyber%2Fpaccor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnsacyber%2Fpaccor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnsacyber%2Fpaccor/lists"}