{"id":17349510,"url":"https://github.com/umutbasal/crunch-go","last_synced_at":"2025-03-27T11:45:06.645Z","repository":{"id":50423103,"uuid":"519034806","full_name":"umutbasal/crunch-go","owner":"umutbasal","description":"crunch-go is go runner for crunch wordlist generator. just builds and runs the binary with given args. https://pkg.go.dev/github.com/umutbasal/crunch-go","archived":false,"fork":false,"pushed_at":"2022-07-29T01:00:59.000Z","size":4,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-02-01T16:24:07.522Z","etag":null,"topics":["brute","crunch","fuzz","wordlist"],"latest_commit_sha":null,"homepage":"","language":"Go","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/umutbasal.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}},"created_at":"2022-07-29T00:46:29.000Z","updated_at":"2023-03-05T06:10:06.000Z","dependencies_parsed_at":"2022-09-11T03:31:33.513Z","dependency_job_id":null,"html_url":"https://github.com/umutbasal/crunch-go","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/umutbasal%2Fcrunch-go","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/umutbasal%2Fcrunch-go/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/umutbasal%2Fcrunch-go/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/umutbasal%2Fcrunch-go/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/umutbasal","download_url":"https://codeload.github.com/umutbasal/crunch-go/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245841691,"owners_count":20681184,"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","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":["brute","crunch","fuzz","wordlist"],"created_at":"2024-10-15T16:56:18.566Z","updated_at":"2025-03-27T11:45:06.624Z","avatar_url":"https://github.com/umutbasal.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Crunch-go\n\ncrunch-go is go runner for crunch wordlist generator. just builds and runs the binary with given args.\n\n## Examples\n\n### Generate From Charset\n\nYou can use any charset from lst file.\n`hex-lower, hex-upper, numeric, symbols14, symbols14-space, symbols-all, symbols-all-space, ualpha, ualpha-space, ualpha-numeric, ualpha-numeric-space, ualpha-numeric-symbol14, ualpha-numeric-symbol14-space, ualpha-numeric-all, ualpha-numeric-all-space, lalpha, lalpha-space, lalpha-numeric, lalpha-numeric-space, lalpha-numeric-symbol14, lalpha-numeric-symbol14-space, lalpha-numeric-all, lalpha-numeric-all-space, mixalpha, mixalpha-space, mixalpha-numeric, mixalpha-numeric-space, mixalpha-numeric-symbol14, mixalpha-numeric-symbol14-space, mixalpha-numeric-all, mixalpha-numeric-all-space`\n\n```go\npackage main\n\nimport (\n \"io/ioutil\"\n\n \"github.com/umutbasal/crunch-go\"\n)\n\nfunc main() {\n b, err := crunch.GenerateFromCharset(5, 5, \"ualpha\")\n if err != nil {\n  panic(err)\n }\n\n // write to file\n err = ioutil.WriteFile(\"crunch.txt\", b, 0644)\n if err != nil {\n  panic(err)\n }\n}\n```\n\n### Custom args\n\n```go\nfunc GenerateFromCharset(start, end int, charset string) ([]byte, error) {\n out := fmt.Sprintf(\"%s/%s\", tmpDir, \"tmp.txt\")\n params := fmt.Sprintf(\"%d %d -f %s/charset.lst %s -o %s\", start, end, tmpDir, charset, out)\n err := crunch.Run(params)\n if err != nil {\n  return nil, err\n }\n\n b, err := ioutil.ReadFile(out)\n if err != nil {\n  return nil, err\n }\n return b, nil\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fumutbasal%2Fcrunch-go","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fumutbasal%2Fcrunch-go","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fumutbasal%2Fcrunch-go/lists"}