{"id":37162081,"url":"https://github.com/hashcracky/brainstorm","last_synced_at":"2026-01-14T19:17:30.888Z","repository":{"id":325888450,"uuid":"1102598953","full_name":"Hashcracky/Brainstorm","owner":"Hashcracky","description":"Fast wordlist processor for cryptographic hash recovery.","archived":false,"fork":false,"pushed_at":"2025-12-05T16:21:04.000Z","size":28,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-22T22:10:06.232Z","etag":null,"topics":["cybersecurity-education","hashcat","hashcracking","password"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Hashcracky.png","metadata":{"files":{"readme":"docs/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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-11-23T18:41:34.000Z","updated_at":"2025-12-05T10:07:07.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/Hashcracky/Brainstorm","commit_stats":null,"previous_names":["hashcracky/brainstorm"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/Hashcracky/Brainstorm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hashcracky%2FBrainstorm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hashcracky%2FBrainstorm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hashcracky%2FBrainstorm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hashcracky%2FBrainstorm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Hashcracky","download_url":"https://codeload.github.com/Hashcracky/Brainstorm/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hashcracky%2FBrainstorm/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28432143,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T18:57:19.464Z","status":"ssl_error","status_checked_at":"2026-01-14T18:52:48.501Z","response_time":107,"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":["cybersecurity-education","hashcat","hashcracking","password"],"created_at":"2026-01-14T19:17:29.193Z","updated_at":"2026-01-14T19:17:30.860Z","avatar_url":"https://github.com/Hashcracky.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Brainstorm\n\nBrainstorm is a focused text transformation tool designed to help generate and normalize candidate strings from raw text. It is particularly useful for tasks like wordlist creation, passphrase / token derivation, and transforming free-form text into structured candidate outputs.\n\n`Brainstorm` is written in `Go`, is compatible with multiple platforms, and is designed to work well in Unix-style pipelines. It reads from standard input and writes transformed output to standard output.\n\n\u003e Brainstorm is intentionally minimal. It focuses on:\n\u003e - N‑gram generation from sentences.\n\u003e - Filtering noisy or non-word-like input.\n\u003e - Generating normalized, case-adjusted tokens with configurable length ranges.\n\n## Features\n\n- **Streaming stdin pipeline:** Reads from standard input and writes to standard output, making it easy to chain with other tools.\n- **N‑gram Generation:** Generates n‑grams over a configurable word-length range.\n- **Normalization \u0026 Cleanup:**\n  - Removes leading/trailing non-letter characters on each line.\n  - Filters out lines that are unlikely to contain meaningful words.\n  - Cleans common control and whitespace characters.\n- **Case Transformations:**\n  - Generates title-cased concatenations (e.g., `\"hello world\"` → `\"HelloWorld\"`).\n- **Parallel Processing:**\n  - Uses a worker pool to process lines concurrently.\n\n### Install\n\nFrom source with `go`:\n\n```bash\ngo install github.com/hashcracky/brainstorm@latest\n```\n\nFrom `git` clone then build with `go`:\n\n```bash\ngit clone https://github.com/hashcracky/brainstorm\ncd brainstorm\ngo build ./main.go\nmv ./main ~/go/bin/brainstorm\nbrainstorm\n```\n\n---\n\n## Basic Usage\n\nBrainstorm reads from standard input and writes to standard output. There are no positional arguments; all behavior is controlled via flags.\n\n### Core Flags\n\n- `-w string`\n  - N‑gram word-length range in the form `start-end`.\n  - Default: `1-5`\n- `-l string`\n  - Final output length range in the form `min-max`.\n  - Default: `4-32`\n\nExample:\n\n```bash\ncat source.txt | brainstorm -w 1-4 -l 6-20 \u003e candidates.txt\n```\n\n### Full Flags\n\n```bash\nUsage of Brainstorm version (0.1.4):\n\ninput | brainstorm [options] \u003e output\n\nAccepts standard input and writes transformed output to standard output.\n\nOptions:\n  -l string\n        Final output length range in the form min-max (for example, 4-32). (default \"4-32\")\n  -unicode\n        Include non-Latin multi-byte letter sequences by relaxing Latin vowel heuristics.\n  -w string\n        N-gram word length range in the form start-end (for example, 1-5). (default \"1-5\")\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhashcracky%2Fbrainstorm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhashcracky%2Fbrainstorm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhashcracky%2Fbrainstorm/lists"}