{"id":18396009,"url":"https://github.com/cyclone-github/passgen","last_synced_at":"2025-08-17T21:34:28.271Z","repository":{"id":81889721,"uuid":"587441336","full_name":"cyclone-github/passgen","owner":"cyclone-github","description":"Password Generator","archived":false,"fork":false,"pushed_at":"2025-06-22T19:57:32.000Z","size":37,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-22T20:36:53.397Z","etag":null,"topics":["cyclone","generator","golang","passgen","password","password-generator","passwords"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cyclone-github.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":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-01-10T19:00:19.000Z","updated_at":"2025-06-22T19:57:36.000Z","dependencies_parsed_at":"2024-04-30T19:46:43.911Z","dependency_job_id":"ce0d9f6d-a236-4bed-aa63-357f5dd93f70","html_url":"https://github.com/cyclone-github/passgen","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/cyclone-github/passgen","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cyclone-github%2Fpassgen","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cyclone-github%2Fpassgen/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cyclone-github%2Fpassgen/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cyclone-github%2Fpassgen/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cyclone-github","download_url":"https://codeload.github.com/cyclone-github/passgen/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cyclone-github%2Fpassgen/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270912461,"owners_count":24666737,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-17T02:00:09.016Z","response_time":129,"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":["cyclone","generator","golang","passgen","password","password-generator","passwords"],"created_at":"2024-11-06T02:12:35.366Z","updated_at":"2025-08-17T21:34:28.265Z","avatar_url":"https://github.com/cyclone-github.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Readme Card](https://github-readme-stats.vercel.app/api/pin/?username=cyclone-github\u0026repo=passgen\u0026theme=gruvbox)](https://github.com/cyclone-github/passgen/)\n\n[![Go Report Card](https://goreportcard.com/badge/github.com/cyclone-github/passgen)](https://goreportcard.com/report/github.com/cyclone-github/passgen)\n[![GitHub issues](https://img.shields.io/github/issues/cyclone-github/passgen.svg)](https://github.com/cyclone-github/passgen/issues)\n[![License](https://img.shields.io/github/license/cyclone-github/passgen.svg)](LICENSE)\n[![GitHub release](https://img.shields.io/github/release/cyclone-github/passgen.svg)](https://github.com/cyclone-github/passgen/releases)\n[![Go Reference](https://pkg.go.dev/badge/github.com/cyclone-github/passgen.svg)](https://pkg.go.dev/github.com/cyclone-github/passgen)\n\n# Cyclone's PassGen\n![image](https://i.imgur.com/9XzZVIm.png)\n\nPassword generator which creates passwords using upper / lower / digit \u0026 special char. Password length must be \u003e= 8 char. Can be used to create 1 or more passwords by using CLI interface.\n\n### Example Usage:\n```\n$ ./passgen.bin\n -----------------\n| Cyclone PassGen |\n -----------------\n\nPassword length: 20\nNumber of passwords to generate: 10\n,r/a/B6l.h0Ya#$\\?dT.\nc78i7/98\"98*Y\\G!]05\u003c\nfYex2u.a7\\97dZ21829-\nR\"u51I8+]SP%]95*9o^^\n9Y2'|47T=B1b.4\\0hz53\nf+Z89]J4v$l5}e2W\u003c81I\n\u003cf2,1s0n3\"o5V?(\u003e?}]c\n5z:7r1GSi(#f2[I=2g05\n.O;\u0026\u0026at\u003c1MC^76N.{{'4\n*u15$4,A-5R9K]3OjX8p\n```\n### Compile from source:\n- If you want the latest features, compiling from source is the best option since the release version may run several revisions behind the source code.\n- This assumes you have Go and Git installed\n  - `git clone https://github.com/cyclone-github/passgen.git`  # clone repo\n  - `cd passgen`                                               # enter project directory\n  - `go mod init passgen`                                      # initialize Go module (skips if go.mod exists)\n  - `go mod tidy`                                              # download dependencies\n  - `go build -ldflags=\"-s -w\" .`                              # compile binary in current directory\n  - `go install -ldflags=\"-s -w\" .`                            # compile binary and install to $GOPATH\n- Compile from source code how-to:\n  - https://github.com/cyclone-github/scripts/blob/main/intro_to_go.txt","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcyclone-github%2Fpassgen","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcyclone-github%2Fpassgen","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcyclone-github%2Fpassgen/lists"}