{"id":20905584,"url":"https://github.com/0000xffff/hcx-fastgenlst","last_synced_at":"2025-08-23T03:04:41.405Z","repository":{"id":257500143,"uuid":"858459692","full_name":"0000xFFFF/hcx-fastgenlst","owner":"0000xFFFF","description":"generate a password wordlist from strings (words)","archived":false,"fork":false,"pushed_at":"2025-07-28T15:40:02.000Z","size":2433,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-28T17:32:36.303Z","etag":null,"topics":["cybersecurity","password","password-recovery","penetration-testing","wordlist-generator"],"latest_commit_sha":null,"homepage":"","language":"C","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/0000xFFFF.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}},"created_at":"2024-09-16T23:45:41.000Z","updated_at":"2025-07-28T15:40:06.000Z","dependencies_parsed_at":"2024-11-18T13:31:24.898Z","dependency_job_id":"5b6ba93c-c00a-49c5-90ed-86259999b800","html_url":"https://github.com/0000xFFFF/hcx-fastgenlst","commit_stats":null,"previous_names":["0000xffff/hcx-genlst"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/0000xFFFF/hcx-fastgenlst","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0000xFFFF%2Fhcx-fastgenlst","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0000xFFFF%2Fhcx-fastgenlst/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0000xFFFF%2Fhcx-fastgenlst/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0000xFFFF%2Fhcx-fastgenlst/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/0000xFFFF","download_url":"https://codeload.github.com/0000xFFFF/hcx-fastgenlst/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0000xFFFF%2Fhcx-fastgenlst/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271736824,"owners_count":24812006,"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-23T02:00:09.327Z","response_time":69,"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":["cybersecurity","password","password-recovery","penetration-testing","wordlist-generator"],"created_at":"2024-11-18T13:25:43.497Z","updated_at":"2025-08-23T03:04:41.398Z","avatar_url":"https://github.com/0000xFFFF.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# hcx-fastgenlst\n\nGenerate a password wordlist from strings (words).\n\n###### this is a faster version of hcx-genlst from [hcx-scripts](https://github.com/0000xFFFF/hcx-scripts)\n\n## Example\n```sh\n./hcx-fastgenlst -s steve -lut123\n```\n\nWill generate passwords like:\n```\nsteve123\nsteve69\nSteve42\n123STEVE\nsteve012345\n...\n```\n```\n* -l add lowercase variation  # e.g. steve =\u003e steve\n* -u add uppercase variation  # e.g. steve =\u003e STEVE\n* -t add titlecase variation  # e.g. steve =\u003e Steve  |  stEve =\u003e StEve\n* -1 word + int               # e.g. steve123\n* -2 int + word               # e.g. 123STEVE\n* -3 int + word + int         # e.g. 12steve12\n```\n\n## Requirements\n* make\n* g++\n\n## Build \u0026 Install\n```sh\nmake\nsudo make install\n```\n\n## Usage\n```\n./hcx-fastgenlst -h\n```\n\n```\n generate a password wordlist from strings (words)\n\n options:\n   -h         show this help message and exit\n   -s word    append word to word set for generation (can have multiple -s)\n   -i infile  append every line in file to word set\n   -o outfile file to write to (default: stdout)\n   -v         be verbose (print status)\n   -l         add lowercase word variation to word set\n   -u         add UPPERCASE word variation to word set\n   -t         add Titlecase word variation to word set\n   -r         add reversed word variation to word set\n   -1         word + int\n   -2         int + word\n   -3         int + word + int\n   -y         just generate [0](0-100) and years 1800-2025\n   -m number  min password len (default: 8)\n   -c         check if output is unique, don't generate dupes, slower\n   -d         double mode -- permutate every word in word set len 2 (\u003cstr\u003e\u003cstr\u003e)\n   -z         double mode -- just do (\u003cstr1\u003e\u003cstr1\u003e)\n   -j string  double mode -- join string (\u003cstr\u003e\u003cjoin\u003e\u003cstr\u003e)\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0000xffff%2Fhcx-fastgenlst","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F0000xffff%2Fhcx-fastgenlst","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0000xffff%2Fhcx-fastgenlst/lists"}