{"id":48235490,"url":"https://github.com/cerberauth/jwtop-action","last_synced_at":"2026-04-04T19:58:59.449Z","repository":{"id":342141445,"uuid":"1171909532","full_name":"cerberauth/jwtop-action","owner":"cerberauth","description":"GitHub Action to install and run jwtop — the JWT operations toolkit for decoding, verifying, creating, signing, cracking, and exploiting JSON Web Tokens.","archived":false,"fork":false,"pushed_at":"2026-03-19T09:08:38.000Z","size":1323,"stargazers_count":1,"open_issues_count":3,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-20T01:57:47.199Z","etag":null,"topics":["github-action","github-actions","jsonwebtoken","jwt"],"latest_commit_sha":null,"homepage":"https://github.com/cerberauth/jwtop","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cerberauth.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-03T18:37:03.000Z","updated_at":"2026-03-19T09:06:06.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/cerberauth/jwtop-action","commit_stats":null,"previous_names":["cerberauth/jwtop-action"],"tags_count":0,"template":false,"template_full_name":"actions/typescript-action","purl":"pkg:github/cerberauth/jwtop-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cerberauth%2Fjwtop-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cerberauth%2Fjwtop-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cerberauth%2Fjwtop-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cerberauth%2Fjwtop-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cerberauth","download_url":"https://codeload.github.com/cerberauth/jwtop-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cerberauth%2Fjwtop-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31411542,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T19:29:44.979Z","status":"ssl_error","status_checked_at":"2026-04-04T19:29:11.535Z","response_time":60,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["github-action","github-actions","jsonwebtoken","jwt"],"created_at":"2026-04-04T19:58:58.765Z","updated_at":"2026-04-04T19:58:59.425Z","avatar_url":"https://github.com/cerberauth.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# JWTop Action\n\n[![Join Discord](https://img.shields.io/discord/1242773130137833493?label=Discord\u0026style=for-the-badge)](https://www.cerberauth.com/community)\n[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/cerberauth/jwtop-action/ci.yml?branch=main\u0026label=core%20build\u0026style=for-the-badge)](https://github.com/cerberauth/jwtop-action/actions/workflows/ci.yml)\n![Latest version](https://img.shields.io/github/v/release/cerberauth/jwtop?sort=semver\u0026style=for-the-badge)\n[![Github Repo Stars](https://img.shields.io/github/stars/cerberauth/jwtop?style=for-the-badge)](https://github.com/cerberauth/jwtop)\n![License](https://img.shields.io/github/license/cerberauth/jwtop?style=for-the-badge)\n\nGitHub Action to install and run [jwtop](https://github.com/cerberauth/jwtop) —\nthe JWT operations toolkit for decoding, verifying, creating, signing, cracking,\nand exploiting JSON Web Tokens.\n\n## Usage\n\n```yaml\nsteps:\n  - name: Decode JWT\n    id: decode\n    uses: cerberauth/jwtop-action@v1\n    with:\n      command: decode\n      args: '${{ env.JWT_TOKEN }}'\n\n  - name: Print output\n    run: echo \"${{ steps.decode.outputs.output }}\"\n```\n\n### Security testing with crack\n\n```yaml\nsteps:\n  - name: Probe JWT endpoint for vulnerabilities\n    uses: cerberauth/jwtop-action@v1\n    with:\n      command: crack\n      args: --url https://api.example.com/protected --wordlist ./wordlist.txt\n```\n\n## Inputs\n\n| Input     | Description                                                                                                                                 | Required | Default  |\n| --------- | ------------------------------------------------------------------------------------------------------------------------------------------- | -------- | -------- |\n| `version` | Version of jwtop to install (e.g. `v0.2.0`). Use `latest` to always install the newest.                                                     | No       | `latest` |\n| `command` | jwtop subcommand to run: `decode`, `verify`, `create`, `sign`, `crack`, `exploit`. If omitted, jwtop is only installed and added to `PATH`. | No       |          |\n| `args`    | Arguments and flags to pass to the jwtop command.                                                                                           | No       |          |\n\n## Outputs\n\n| Output       | Description                                                          |\n| ------------ | -------------------------------------------------------------------- |\n| `output`     | Stdout from the jwtop command (only set when `command` is provided). |\n| `jwtop-path` | Directory where the jwtop binary is located.                         |\n\n## Commands\n\n| Command   | Description                                             |\n| --------- | ------------------------------------------------------- |\n| `decode`  | Parse and display a JWT without verifying the signature |\n| `verify`  | Validate a JWT signature and display its claims         |\n| `create`  | Generate and sign a new token                           |\n| `sign`    | Re-sign an existing token with different credentials    |\n| `crack`   | Probe a server for common JWT vulnerabilities           |\n| `exploit` | Apply a specific attack technique to a token            |\n\n## Examples\n\n### Verify a token with an HMAC secret\n\n```yaml\n- uses: cerberauth/jwtop-action@v1\n  with:\n    command: verify\n    args: '${{ env.JWT_TOKEN }} --secret ${{ secrets.JWT_SECRET }}'\n```\n\n### Verify a token with a RSA public key\n\n```yaml\n- uses: cerberauth/jwtop-action@v1\n  with:\n    command: verify\n    args: '${{ env.JWT_TOKEN }} --key ./public.pem'\n```\n\n### Pin a specific version\n\n```yaml\n- uses: cerberauth/jwtop-action@v1\n  with:\n    version: v0.2.0\n    command: decode\n    args: '${{ env.JWT_TOKEN }}'\n```\n\n## Disclaimer\n\n`crack` and `exploit` commands are provided for informational purposes only. It\nshould not be used for malicious purposes or to attack any system without proper\nauthorization. Always respect the security and privacy of others.\n\n## Telemetry\n\nVulnAPI collects fully anonymized usage data to help improve the tool. This data\nis not shared with third parties. You can opt-out of telemetry by setting the\n`telemetry` option to `false`.\n\n## License\n\nThis repository is licensed under the\n[MIT License](https://github.com/cerberauth/vulnapi-action/blob/main/LICENSE) @\n[CerberAuth](https://www.cerberauth.com/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcerberauth%2Fjwtop-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcerberauth%2Fjwtop-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcerberauth%2Fjwtop-action/lists"}