{"id":13840509,"url":"https://github.com/ethicalhackingplayground/wordlistgen","last_synced_at":"2025-10-09T23:38:08.312Z","repository":{"id":41167063,"uuid":"292276222","full_name":"ethicalhackingplayground/wordlistgen","owner":"ethicalhackingplayground","description":"Generates target specific word lists for Fuzzing with fuff","archived":false,"fork":false,"pushed_at":"2020-09-02T13:18:13.000Z","size":569,"stargazers_count":111,"open_issues_count":0,"forks_count":13,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-07-08T20:09:32.758Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ethicalhackingplayground.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-09-02T12:26:25.000Z","updated_at":"2025-06-11T08:50:32.000Z","dependencies_parsed_at":"2022-07-27T16:02:53.488Z","dependency_job_id":null,"html_url":"https://github.com/ethicalhackingplayground/wordlistgen","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ethicalhackingplayground/wordlistgen","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ethicalhackingplayground%2Fwordlistgen","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ethicalhackingplayground%2Fwordlistgen/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ethicalhackingplayground%2Fwordlistgen/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ethicalhackingplayground%2Fwordlistgen/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ethicalhackingplayground","download_url":"https://codeload.github.com/ethicalhackingplayground/wordlistgen/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ethicalhackingplayground%2Fwordlistgen/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279002309,"owners_count":26083340,"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-10-09T02:00:07.460Z","response_time":59,"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":[],"created_at":"2024-08-04T17:00:49.809Z","updated_at":"2025-10-09T23:38:08.288Z","avatar_url":"https://github.com/ethicalhackingplayground.png","language":"Go","funding_links":["https://www.buymeacoffee.com/krypt0mux"],"categories":["Go","Go (531)"],"sub_categories":[],"readme":"# wordlistgen\nGenerates target specific word lists by searching for endpoints in javascript and appends parameters for Fuzzing with other tools\n\n**Version 1.0**\n\n\n### Install\n\n**`$ go get -u github.com/ethicalhackingplayground/wordlistgen`**\n\n**`$ go get github.com/003random/getJS`**\n\n\n![GitHub Logo](carbon1.png)\n\n\n### Generate wordlist\n**`$ echo \"https://www.twitter.com\" | getJS -complete | ./wordlistgen -p params.txt -d \"https://www.twitter.com\"`**\n\n![GitHub Logo](carbon2.png)\n\nThe use ffuf\n\n\n**Then get creative with FFuF or https://github.com/tomnomnom/qsreplace**\n\n****\n### SSRF TIP2:\n\n\n#### Generate Wordlist\n**`$ cat \u003cResolved-Domains\u003e | getJS -complete | ./wordlistgen -p params.txt -d \u003cUn-Resolved\u003e | tee wordlist`**\n\n**`$ cat \"https://www.twitter.com\" | getJS -complete | ./wordlistgen -p params.txt -d \"www.twitter.com\" | tee wordlist`**\n\n```\nOUTPUT:\n\nwww.twitter.com/responsive-web-internal/sourcemaps/client-web-legacy/polyfills.525f28f5.js.map/?url=FUZZ\nwww.twitter.com/v/latest/72x72//?url=FUZZ\nwww.twitter.com/responsive-web-internal/sourcemaps/client-web-legacy/en.363b7e25.js.map/?url=FUZZ\nwww.twitter.com/articles/18311/?url=FUZZ\n```\n\n###### You can also use `-dL` to load a list of subdomains like:\n**`$ cat \u003cResolved-Domains\u003e | getJS -complete | ./wordlistgen -p params.txt -dL \u003cUn-Resolved\u003e | tee wordlist`**\n\n\n##### Replace Variables with Payload\n**`$ cat wordlist | qsreplace http://127.0.0.1/admin | tee -a hosts`**\n\n```\nOUTPUT:\n\nwww.twitter.com/responsive-web-internal/sourcemaps/client-web-legacy/polyfills.525f28f5.js.map/?url=http%3A%2F%2F127.0.0.1%2Fadmin\nwww.twitter.com/v/latest/72x72//?url=http%3A%2F%2F127.0.0.1%2Fadmin\nwww.twitter.com/responsive-web-internal/sourcemaps/client-web-legacy/en.363b7e25.js.map/?url=http%3A%2F%2F127.0.0.1%2Fadmin\nwww.twitter.com/articles/18311/?url=http%3A%2F%2F127.0.0.1%2Fadmin\n```\n\n#### Use HTTPX to keep track of the codes,titles\n**`$ cat hosts | httpx -title -status-code`**\n\n#### I hope you get a bounty with this technique.\n****\n\n\n**If you get a bounty please support by buying me a coffee**\n\n\u003cbr\u003e\n\u003ca href=\"https://www.buymeacoffee.com/krypt0mux\" target=\"_blank\"\u003e\u003cimg src=\"https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png\" alt=\"Buy Me A Coffee\" style=\"height: 41px !important;width: 174px !important;box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;-webkit-box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;\" \u003e\u003c/a\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fethicalhackingplayground%2Fwordlistgen","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fethicalhackingplayground%2Fwordlistgen","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fethicalhackingplayground%2Fwordlistgen/lists"}