wordlistxpl-forge 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- wordlistxpl_forge-1.0.0/CODE_OF_CONDUCT.md +79 -0
- wordlistxpl_forge-1.0.0/LICENSE +21 -0
- wordlistxpl_forge-1.0.0/MANIFEST.in +8 -0
- wordlistxpl_forge-1.0.0/PKG-INFO +125 -0
- wordlistxpl_forge-1.0.0/README.md +74 -0
- wordlistxpl_forge-1.0.0/README.pt-BR.md +52 -0
- wordlistxpl_forge-1.0.0/SECURITY.md +29 -0
- wordlistxpl_forge-1.0.0/data/behavior_patterns.json +7668 -0
- wordlistxpl_forge-1.0.0/data/corp_prefix_patterns.json +452 -0
- wordlistxpl_forge-1.0.0/data/default_credentials.json +12483 -0
- wordlistxpl_forge-1.0.0/data/isp_words_5.txt +686 -0
- wordlistxpl_forge-1.0.0/data/isp_words_6.txt +685 -0
- wordlistxpl_forge-1.0.0/data/seclists_corpus.json +146 -0
- wordlistxpl_forge-1.0.0/pyproject.toml +84 -0
- wordlistxpl_forge-1.0.0/requirements.txt +29 -0
- wordlistxpl_forge-1.0.0/setup.cfg +4 -0
- wordlistxpl_forge-1.0.0/tests/test_basic.py +26 -0
- wordlistxpl_forge-1.0.0/wfh_modules/__init__.py +1 -0
- wordlistxpl_forge-1.0.0/wfh_modules/analyzer.py +829 -0
- wordlistxpl_forge-1.0.0/wfh_modules/anomaly_scorer.py +513 -0
- wordlistxpl_forge-1.0.0/wfh_modules/archive_export.py +278 -0
- wordlistxpl_forge-1.0.0/wfh_modules/benchmark_suite.py +1018 -0
- wordlistxpl_forge-1.0.0/wfh_modules/brwordlist_loader.py +340 -0
- wordlistxpl_forge-1.0.0/wfh_modules/charset_gen.py +531 -0
- wordlistxpl_forge-1.0.0/wfh_modules/combiner.py +201 -0
- wordlistxpl_forge-1.0.0/wfh_modules/compute_backend.py +382 -0
- wordlistxpl_forge-1.0.0/wfh_modules/corp_prefixes.py +402 -0
- wordlistxpl_forge-1.0.0/wfh_modules/corp_profiler.py +350 -0
- wordlistxpl_forge-1.0.0/wfh_modules/country_tokens.py +405 -0
- wordlistxpl_forge-1.0.0/wfh_modules/cupp_engine.py +207 -0
- wordlistxpl_forge-1.0.0/wfh_modules/data/__init__.py +2 -0
- wordlistxpl_forge-1.0.0/wfh_modules/data/behavior_patterns.json +7668 -0
- wordlistxpl_forge-1.0.0/wfh_modules/data/corp_prefix_patterns.json +452 -0
- wordlistxpl_forge-1.0.0/wfh_modules/date_profile.py +487 -0
- wordlistxpl_forge-1.0.0/wfh_modules/default_creds.py +198 -0
- wordlistxpl_forge-1.0.0/wfh_modules/dns_wordlist.py +556 -0
- wordlistxpl_forge-1.0.0/wfh_modules/domain_users.py +1305 -0
- wordlistxpl_forge-1.0.0/wfh_modules/file_extractor.py +237 -0
- wordlistxpl_forge-1.0.0/wfh_modules/generation_engines.py +357 -0
- wordlistxpl_forge-1.0.0/wfh_modules/hw_profiler.py +331 -0
- wordlistxpl_forge-1.0.0/wfh_modules/i18n/__init__.py +143 -0
- wordlistxpl_forge-1.0.0/wfh_modules/i18n/locale.py +299 -0
- wordlistxpl_forge-1.0.0/wfh_modules/i18n/prompts.py +552 -0
- wordlistxpl_forge-1.0.0/wfh_modules/isp_keygen.py +269 -0
- wordlistxpl_forge-1.0.0/wfh_modules/iwlgen.py +338 -0
- wordlistxpl_forge-1.0.0/wfh_modules/keyword_mutations.py +361 -0
- wordlistxpl_forge-1.0.0/wfh_modules/kwalk_gen.py +377 -0
- wordlistxpl_forge-1.0.0/wfh_modules/leet_permuter.py +333 -0
- wordlistxpl_forge-1.0.0/wfh_modules/linkedin_search.py +401 -0
- wordlistxpl_forge-1.0.0/wfh_modules/mangler.py +437 -0
- wordlistxpl_forge-1.0.0/wfh_modules/markov_engine.py +307 -0
- wordlistxpl_forge-1.0.0/wfh_modules/maya_ranker.py +661 -0
- wordlistxpl_forge-1.0.0/wfh_modules/merger.py +146 -0
- wordlistxpl_forge-1.0.0/wfh_modules/ml_patterns.py +858 -0
- wordlistxpl_forge-1.0.0/wfh_modules/num2text.py +316 -0
- wordlistxpl_forge-1.0.0/wfh_modules/ocr_extractor.py +151 -0
- wordlistxpl_forge-1.0.0/wfh_modules/osint_perm.py +280 -0
- wordlistxpl_forge-1.0.0/wfh_modules/password_dna.py +486 -0
- wordlistxpl_forge-1.0.0/wfh_modules/pattern_engine.py +368 -0
- wordlistxpl_forge-1.0.0/wfh_modules/pattern_ranker.py +201 -0
- wordlistxpl_forge-1.0.0/wfh_modules/pcfg_engine.py +612 -0
- wordlistxpl_forge-1.0.0/wfh_modules/pharma_gen.py +303 -0
- wordlistxpl_forge-1.0.0/wfh_modules/phone_gen.py +485 -0
- wordlistxpl_forge-1.0.0/wfh_modules/pipeline_engine.py +1254 -0
- wordlistxpl_forge-1.0.0/wfh_modules/prince_engine.py +276 -0
- wordlistxpl_forge-1.0.0/wfh_modules/profiler.py +3092 -0
- wordlistxpl_forge-1.0.0/wfh_modules/refs/ref_submodules__wordlists__0day-xfinity-wordlist-generator.py +4 -0
- wordlistxpl_forge-1.0.0/wfh_modules/refs/ref_submodules__wordlists__1wordlist.py +4 -0
- wordlistxpl_forge-1.0.0/wfh_modules/refs/ref_submodules__wordlists__alterx.py +4 -0
- wordlistxpl_forge-1.0.0/wfh_modules/refs/ref_submodules__wordlists__brwordlist.py +4 -0
- wordlistxpl_forge-1.0.0/wfh_modules/refs/ref_submodules__wordlists__cewl.py +4 -0
- wordlistxpl_forge-1.0.0/wfh_modules/refs/ref_submodules__wordlists__cewlio.py +4 -0
- wordlistxpl_forge-1.0.0/wfh_modules/refs/ref_submodules__wordlists__crunch.py +4 -0
- wordlistxpl_forge-1.0.0/wfh_modules/refs/ref_submodules__wordlists__dnscewl.py +4 -0
- wordlistxpl_forge-1.0.0/wfh_modules/refs/ref_submodules__wordlists__goblinwordgenerator.py +4 -0
- wordlistxpl_forge-1.0.0/wfh_modules/refs/ref_submodules__wordlists__pnwgen.py +4 -0
- wordlistxpl_forge-1.0.0/wfh_modules/refs/ref_submodules__wordlists__python-wordlist-generator.py +4 -0
- wordlistxpl_forge-1.0.0/wfh_modules/refs/ref_submodules__wordlists__seclists.py +4 -0
- wordlistxpl_forge-1.0.0/wfh_modules/refs/ref_submodules__wordlists__windows-crunch.py +4 -0
- wordlistxpl_forge-1.0.0/wfh_modules/refs/ref_submodules__wordlists__wordlist-generator.py +4 -0
- wordlistxpl_forge-1.0.0/wfh_modules/rsmangler_engine.py +330 -0
- wordlistxpl_forge-1.0.0/wfh_modules/rulegen_engine.py +358 -0
- wordlistxpl_forge-1.0.0/wfh_modules/sanitizer.py +261 -0
- wordlistxpl_forge-1.0.0/wfh_modules/seclists_trainer.py +283 -0
- wordlistxpl_forge-1.0.0/wfh_modules/target_spider.py +236 -0
- wordlistxpl_forge-1.0.0/wfh_modules/thread_pool.py +345 -0
- wordlistxpl_forge-1.0.0/wfh_modules/web_scraper.py +428 -0
- wordlistxpl_forge-1.0.0/wfh_modules/xor_crypto.py +167 -0
- wordlistxpl_forge-1.0.0/wlf.py +4274 -0
- wordlistxpl_forge-1.0.0/wordlistxpl_forge.egg-info/PKG-INFO +125 -0
- wordlistxpl_forge-1.0.0/wordlistxpl_forge.egg-info/SOURCES.txt +93 -0
- wordlistxpl_forge-1.0.0/wordlistxpl_forge.egg-info/dependency_links.txt +1 -0
- wordlistxpl_forge-1.0.0/wordlistxpl_forge.egg-info/entry_points.txt +2 -0
- wordlistxpl_forge-1.0.0/wordlistxpl_forge.egg-info/requires.txt +23 -0
- wordlistxpl_forge-1.0.0/wordlistxpl_forge.egg-info/top_level.txt +2 -0
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
|
2
|
+
|
|
3
|
+
## Our pledge
|
|
4
|
+
|
|
5
|
+
We as members, contributors, and leaders pledge to make participation in our
|
|
6
|
+
community a harassment-free experience for everyone, regardless of age, body
|
|
7
|
+
size, visible or invisible disability, ethnicity, sex characteristics, gender
|
|
8
|
+
identity and expression, level of experience, education, socio-economic status,
|
|
9
|
+
nationality, personal appearance, race, caste, color, religion, or sexual
|
|
10
|
+
identity and orientation.
|
|
11
|
+
|
|
12
|
+
We pledge to act and interact in ways that contribute to an open, welcoming,
|
|
13
|
+
diverse, inclusive, and healthy community.
|
|
14
|
+
|
|
15
|
+
## Our standards
|
|
16
|
+
|
|
17
|
+
Examples of behavior that contributes to a positive environment for our
|
|
18
|
+
community include:
|
|
19
|
+
|
|
20
|
+
- Demonstrating empathy and kindness toward other people
|
|
21
|
+
- Being respectful of differing opinions, viewpoints, and experiences
|
|
22
|
+
- Giving and gracefully accepting constructive feedback
|
|
23
|
+
- Accepting responsibility and apologizing to those affected by our mistakes,
|
|
24
|
+
and learning from the experience
|
|
25
|
+
- Focusing on what is best not just for us as individuals, but for the overall
|
|
26
|
+
community
|
|
27
|
+
|
|
28
|
+
Examples of unacceptable behavior include:
|
|
29
|
+
|
|
30
|
+
- The use of sexualized language or imagery, and sexual attention or advances of
|
|
31
|
+
any kind
|
|
32
|
+
- Trolling, insulting or derogatory comments, and personal or political attacks
|
|
33
|
+
- Public or private harassment
|
|
34
|
+
- Publishing others' private information, such as a physical or email address,
|
|
35
|
+
without their explicit permission
|
|
36
|
+
- Other conduct which could reasonably be considered inappropriate in a
|
|
37
|
+
professional setting
|
|
38
|
+
|
|
39
|
+
## Enforcement responsibilities
|
|
40
|
+
|
|
41
|
+
Project maintainers are responsible for clarifying and enforcing our standards of
|
|
42
|
+
acceptable behavior and will take appropriate and fair corrective action in
|
|
43
|
+
response to any behavior that they deem inappropriate, threatening, offensive,
|
|
44
|
+
or harmful.
|
|
45
|
+
|
|
46
|
+
Project maintainers have the right and responsibility to remove, edit, or reject
|
|
47
|
+
comments, commits, code, wiki edits, issues, and other contributions that are
|
|
48
|
+
not aligned to this Code of Conduct, and will communicate reasons for moderation
|
|
49
|
+
decisions when appropriate.
|
|
50
|
+
|
|
51
|
+
## Scope
|
|
52
|
+
|
|
53
|
+
This Code of Conduct applies within all community spaces, and also applies when
|
|
54
|
+
an individual is officially representing the community in public spaces.
|
|
55
|
+
Examples of representing our community include using an official e-mail address,
|
|
56
|
+
posting via an official social media account, or acting as an appointed
|
|
57
|
+
representative at an online or offline event.
|
|
58
|
+
|
|
59
|
+
## Enforcement
|
|
60
|
+
|
|
61
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
62
|
+
reported to the project maintainers responsible for enforcement at
|
|
63
|
+
**suporte@uniaogeek.com.br**.
|
|
64
|
+
|
|
65
|
+
All complaints will be reviewed and investigated promptly and fairly.
|
|
66
|
+
|
|
67
|
+
All project maintainers are obligated to respect the privacy and security of the
|
|
68
|
+
reporter of any incident.
|
|
69
|
+
|
|
70
|
+
## Attribution
|
|
71
|
+
|
|
72
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
|
73
|
+
version 2.1, available at
|
|
74
|
+
https://www.contributor-covenant.org/version/2/1/code_of_conduct.html.
|
|
75
|
+
|
|
76
|
+
[homepage]: https://www.contributor-covenant.org
|
|
77
|
+
|
|
78
|
+
For answers to common questions about this code of conduct, see
|
|
79
|
+
https://www.contributor-covenant.org/faq
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 André Henrique (https://github.com/mrhenrike)
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: wordlistxpl-forge
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: WordlistXPL-Forge. Wordlist generation toolkit for authorized pentest and red team operations. Member of the XPL-Forge suite.
|
|
5
|
+
Author-email: André Henrique <suporte@uniaogeek.com.br>
|
|
6
|
+
Maintainer-email: André Henrique <suporte@uniaogeek.com.br>
|
|
7
|
+
License-Expression: MIT
|
|
8
|
+
Project-URL: Homepage, https://github.com/mrhenrike/WordlistXPL-Forge
|
|
9
|
+
Project-URL: Documentation, https://github.com/mrhenrike/WordlistXPL-Forge/wiki
|
|
10
|
+
Project-URL: Repository, https://github.com/mrhenrike/WordlistXPL-Forge
|
|
11
|
+
Project-URL: Issues, https://github.com/mrhenrike/WordlistXPL-Forge/issues
|
|
12
|
+
Project-URL: Changelog, https://github.com/mrhenrike/WordlistXPL-Forge/releases
|
|
13
|
+
Keywords: wordlist,password,pentest,red-team,security,xpl-forge,osint,credential,default-credentials,pcfg,markov,keyboard-walk,hashcat-rules
|
|
14
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
15
|
+
Classifier: Environment :: Console
|
|
16
|
+
Classifier: Intended Audience :: Information Technology
|
|
17
|
+
Classifier: Intended Audience :: System Administrators
|
|
18
|
+
Classifier: Operating System :: OS Independent
|
|
19
|
+
Classifier: Programming Language :: Python :: 3
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
26
|
+
Classifier: Topic :: Security
|
|
27
|
+
Classifier: Topic :: Utilities
|
|
28
|
+
Requires-Python: >=3.8
|
|
29
|
+
Description-Content-Type: text/markdown
|
|
30
|
+
License-File: LICENSE
|
|
31
|
+
Requires-Dist: colorama>=0.4.6
|
|
32
|
+
Requires-Dist: tqdm>=4.66.0
|
|
33
|
+
Requires-Dist: requests>=2.31.0
|
|
34
|
+
Requires-Dist: beautifulsoup4>=4.12.0
|
|
35
|
+
Requires-Dist: lxml>=4.9.0
|
|
36
|
+
Requires-Dist: chardet>=5.2.0
|
|
37
|
+
Requires-Dist: unidecode>=1.3.6
|
|
38
|
+
Provides-Extra: ocr
|
|
39
|
+
Requires-Dist: easyocr>=1.7.0; extra == "ocr"
|
|
40
|
+
Requires-Dist: Pillow>=10.0.0; extra == "ocr"
|
|
41
|
+
Provides-Extra: docs
|
|
42
|
+
Requires-Dist: openpyxl>=3.1.0; extra == "docs"
|
|
43
|
+
Requires-Dist: pdfplumber>=0.10.0; extra == "docs"
|
|
44
|
+
Requires-Dist: python-docx>=1.1.0; extra == "docs"
|
|
45
|
+
Requires-Dist: striprtf>=0.0.26; extra == "docs"
|
|
46
|
+
Provides-Extra: scrape
|
|
47
|
+
Requires-Dist: pypdf>=4.0.0; extra == "scrape"
|
|
48
|
+
Provides-Extra: full
|
|
49
|
+
Requires-Dist: wordlistxpl-forge[docs,ocr,scrape]; extra == "full"
|
|
50
|
+
Dynamic: license-file
|
|
51
|
+
|
|
52
|
+
# WordlistXPL-Forge
|
|
53
|
+
|
|
54
|
+
<p align="center">
|
|
55
|
+
<img src="https://img.shields.io/github/stars/mrhenrike/WordlistXPL-Forge?style=flat-square" alt="GitHub Stars">
|
|
56
|
+
<img src="https://img.shields.io/github/license/mrhenrike/WordlistXPL-Forge?style=flat-square" alt="License">
|
|
57
|
+
<img src="https://img.shields.io/badge/version-1.0.0-blue?style=flat-square" alt="Version">
|
|
58
|
+
<img src="https://img.shields.io/badge/python-3.8%2B-blue?style=flat-square&logo=python&logoColor=white" alt="Python 3.8+">
|
|
59
|
+
<img src="https://img.shields.io/pypi/v/wordlistxpl-forge?style=flat-square&logo=pypi&logoColor=white&color=green" alt="PyPI">
|
|
60
|
+
</p>
|
|
61
|
+
|
|
62
|
+
Wordlist generation toolkit for authorized pentest and red team work. Official member of the **XPL-Forge** suite. CLI: `wlf` / `python wlf.py`.
|
|
63
|
+
|
|
64
|
+
Author: André Henrique (`mrhenrike`) | União Geek | https://uniaogeek.com.br/
|
|
65
|
+
|
|
66
|
+
> Full command reference (every subcommand, flag, input and output): [docs/COMMAND-COVERAGE.md](docs/COMMAND-COVERAGE.md) · [Wiki](https://github.com/mrhenrike/WordlistXPL-Forge/wiki)
|
|
67
|
+
|
|
68
|
+
---
|
|
69
|
+
|
|
70
|
+
## Disclaimer
|
|
71
|
+
|
|
72
|
+
This program is for **authorized security testing, lab work, and education only**. The author is **not responsible** for misuse of the code or of any function in this toolkit.
|
|
73
|
+
|
|
74
|
+
The generator emits **many** password and username patterns (names, dates, brands, leet, years, keyboard walks, grammar models, and similar).
|
|
75
|
+
|
|
76
|
+
If you, your company, or a user build secrets from **public information**, predictable patterns, or personal data (name, team, pet, date, brand, domain), the chance that this tool emits a wordlist containing a **real** password or username is **extremely high, almost certain**.
|
|
77
|
+
|
|
78
|
+
That is not a leak and does not prove a prior breach. It is weak or predictable secret choice. Use a password manager and MFA.
|
|
79
|
+
|
|
80
|
+
This repository **does not** distribute a Brazilian password corpus (`wlist_brasil`). It does ship vendor factory default credentials, username samples, and lab lists.
|
|
81
|
+
|
|
82
|
+
---
|
|
83
|
+
|
|
84
|
+
## Install
|
|
85
|
+
|
|
86
|
+
```bash
|
|
87
|
+
pip install wordlistxpl-forge
|
|
88
|
+
pip install wordlistxpl-forge[full]
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
```bash
|
|
92
|
+
git clone https://github.com/mrhenrike/WordlistXPL-Forge.git
|
|
93
|
+
cd WordlistXPL-Forge
|
|
94
|
+
pip install -r requirements.txt pyyaml
|
|
95
|
+
python wlf.py --help
|
|
96
|
+
wlf --help
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
Windows: `.\setup_venv.ps1` then `.\.venv\Scripts\Activate.ps1`. Linux/macOS: `chmod +x setup_venv.sh && ./setup_venv.sh`.
|
|
100
|
+
|
|
101
|
+
## What is in this tree
|
|
102
|
+
|
|
103
|
+
- Generator CLI (`wlf.py`, `wfh_modules/`)
|
|
104
|
+
- Pattern JSON and ISP word banks
|
|
105
|
+
- Vendor default credentials (`data/default_credentials.json`, `passwords/default-creds-combo.lst`)
|
|
106
|
+
- Username list (`usernames/username_br.lst`)
|
|
107
|
+
- Lab lists (`labs/*.lst`) and discovery paths (`fuzzing/discovery_br.lst`)
|
|
108
|
+
|
|
109
|
+
Coverage matrix: [docs/COMMAND-COVERAGE.md](docs/COMMAND-COVERAGE.md)
|
|
110
|
+
|
|
111
|
+
## Quick examples
|
|
112
|
+
|
|
113
|
+
```bash
|
|
114
|
+
python wlf.py charset 8 8 --limit 100 -o charset.lst
|
|
115
|
+
python wlf.py pattern -t "{company}{year}!" --vars company=BrandX,CorpX year=2020-2026 -o patterns.lst
|
|
116
|
+
python wlf.py default-creds --vendor mikrotik --format combo -o mikrotik_creds.lst
|
|
117
|
+
python wlf.py dns -d acme.example --words dev staging api admin portal -o subdomains.lst
|
|
118
|
+
python wlf.py profile --name "PessoaX" --nick robotx --birth 15/03/1990 --leet aggressive --limit 50 -o target.lst
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
## License
|
|
122
|
+
|
|
123
|
+
MIT. See [LICENSE](LICENSE).
|
|
124
|
+
|
|
125
|
+
[Português (Brasil)](README.pt-BR.md)
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
# WordlistXPL-Forge
|
|
2
|
+
|
|
3
|
+
<p align="center">
|
|
4
|
+
<img src="https://img.shields.io/github/stars/mrhenrike/WordlistXPL-Forge?style=flat-square" alt="GitHub Stars">
|
|
5
|
+
<img src="https://img.shields.io/github/license/mrhenrike/WordlistXPL-Forge?style=flat-square" alt="License">
|
|
6
|
+
<img src="https://img.shields.io/badge/version-1.0.0-blue?style=flat-square" alt="Version">
|
|
7
|
+
<img src="https://img.shields.io/badge/python-3.8%2B-blue?style=flat-square&logo=python&logoColor=white" alt="Python 3.8+">
|
|
8
|
+
<img src="https://img.shields.io/pypi/v/wordlistxpl-forge?style=flat-square&logo=pypi&logoColor=white&color=green" alt="PyPI">
|
|
9
|
+
</p>
|
|
10
|
+
|
|
11
|
+
Wordlist generation toolkit for authorized pentest and red team work. Official member of the **XPL-Forge** suite. CLI: `wlf` / `python wlf.py`.
|
|
12
|
+
|
|
13
|
+
Author: André Henrique (`mrhenrike`) | União Geek | https://uniaogeek.com.br/
|
|
14
|
+
|
|
15
|
+
> Full command reference (every subcommand, flag, input and output): [docs/COMMAND-COVERAGE.md](docs/COMMAND-COVERAGE.md) · [Wiki](https://github.com/mrhenrike/WordlistXPL-Forge/wiki)
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
## Disclaimer
|
|
20
|
+
|
|
21
|
+
This program is for **authorized security testing, lab work, and education only**. The author is **not responsible** for misuse of the code or of any function in this toolkit.
|
|
22
|
+
|
|
23
|
+
The generator emits **many** password and username patterns (names, dates, brands, leet, years, keyboard walks, grammar models, and similar).
|
|
24
|
+
|
|
25
|
+
If you, your company, or a user build secrets from **public information**, predictable patterns, or personal data (name, team, pet, date, brand, domain), the chance that this tool emits a wordlist containing a **real** password or username is **extremely high, almost certain**.
|
|
26
|
+
|
|
27
|
+
That is not a leak and does not prove a prior breach. It is weak or predictable secret choice. Use a password manager and MFA.
|
|
28
|
+
|
|
29
|
+
This repository **does not** distribute a Brazilian password corpus (`wlist_brasil`). It does ship vendor factory default credentials, username samples, and lab lists.
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
## Install
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
pip install wordlistxpl-forge
|
|
37
|
+
pip install wordlistxpl-forge[full]
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
git clone https://github.com/mrhenrike/WordlistXPL-Forge.git
|
|
42
|
+
cd WordlistXPL-Forge
|
|
43
|
+
pip install -r requirements.txt pyyaml
|
|
44
|
+
python wlf.py --help
|
|
45
|
+
wlf --help
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
Windows: `.\setup_venv.ps1` then `.\.venv\Scripts\Activate.ps1`. Linux/macOS: `chmod +x setup_venv.sh && ./setup_venv.sh`.
|
|
49
|
+
|
|
50
|
+
## What is in this tree
|
|
51
|
+
|
|
52
|
+
- Generator CLI (`wlf.py`, `wfh_modules/`)
|
|
53
|
+
- Pattern JSON and ISP word banks
|
|
54
|
+
- Vendor default credentials (`data/default_credentials.json`, `passwords/default-creds-combo.lst`)
|
|
55
|
+
- Username list (`usernames/username_br.lst`)
|
|
56
|
+
- Lab lists (`labs/*.lst`) and discovery paths (`fuzzing/discovery_br.lst`)
|
|
57
|
+
|
|
58
|
+
Coverage matrix: [docs/COMMAND-COVERAGE.md](docs/COMMAND-COVERAGE.md)
|
|
59
|
+
|
|
60
|
+
## Quick examples
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
python wlf.py charset 8 8 --limit 100 -o charset.lst
|
|
64
|
+
python wlf.py pattern -t "{company}{year}!" --vars company=BrandX,CorpX year=2020-2026 -o patterns.lst
|
|
65
|
+
python wlf.py default-creds --vendor mikrotik --format combo -o mikrotik_creds.lst
|
|
66
|
+
python wlf.py dns -d acme.example --words dev staging api admin portal -o subdomains.lst
|
|
67
|
+
python wlf.py profile --name "PessoaX" --nick robotx --birth 15/03/1990 --leet aggressive --limit 50 -o target.lst
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
## License
|
|
71
|
+
|
|
72
|
+
MIT. See [LICENSE](LICENSE).
|
|
73
|
+
|
|
74
|
+
[Português (Brasil)](README.pt-BR.md)
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# WordlistXPL-Forge
|
|
2
|
+
|
|
3
|
+
<p align="center">
|
|
4
|
+
<img src="https://img.shields.io/github/stars/mrhenrike/WordlistXPL-Forge?style=flat-square" alt="GitHub Stars">
|
|
5
|
+
<img src="https://img.shields.io/github/license/mrhenrike/WordlistXPL-Forge?style=flat-square" alt="License">
|
|
6
|
+
<img src="https://img.shields.io/badge/version-1.0.0-blue?style=flat-square" alt="Version">
|
|
7
|
+
<img src="https://img.shields.io/badge/python-3.8%2B-blue?style=flat-square&logo=python&logoColor=white" alt="Python 3.8+">
|
|
8
|
+
</p>
|
|
9
|
+
|
|
10
|
+
Toolkit de geração de wordlists para pentest e red team autorizados. Membro oficial da suíte **XPL-Forge**. CLI: `wlf` / `python wlf.py`.
|
|
11
|
+
|
|
12
|
+
Autor: André Henrique (`mrhenrike`) | União Geek | https://uniaogeek.com.br/
|
|
13
|
+
|
|
14
|
+
> Referência completa de cada subcomando, flag, entrada e saída: [docs/COMMAND-COVERAGE.md](docs/COMMAND-COVERAGE.md) · [Wiki](https://github.com/mrhenrike/WordlistXPL-Forge/wiki)
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
## Aviso
|
|
19
|
+
|
|
20
|
+
Este programa é só para **testes de segurança autorizados, laboratório e educação**. O autor **não se responsabiliza** por uso indevido do código nem das funções.
|
|
21
|
+
|
|
22
|
+
O gerador emite **muitos** padrões de senha e username (nome, data, marca, leet, ano, teclado, gramática e similares).
|
|
23
|
+
|
|
24
|
+
Se você, sua empresa ou um usuário montam segredos a partir de **informação pública**, padrões previsíveis ou dados pessoais (nome, time, pet, data, marca, domínio), a chance de o programa emitir uma wordlist com uma senha ou username **real** é **altíssima, quase certa**.
|
|
25
|
+
|
|
26
|
+
Isso não é leak e não prova comprometimento prévio. É senha fraca ou previsível. Use gerenciador de senhas e MFA.
|
|
27
|
+
|
|
28
|
+
Este repositório **não** distribui o corpus brasileiro de senhas (`wlist_brasil`). Distribui credenciais default de fabricantes, amostras de username e listas de lab.
|
|
29
|
+
|
|
30
|
+
---
|
|
31
|
+
|
|
32
|
+
## Instalação
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
pip install wordlistxpl-forge
|
|
36
|
+
pip install wordlistxpl-forge[full]
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
git clone https://github.com/mrhenrike/WordlistXPL-Forge.git
|
|
41
|
+
cd WordlistXPL-Forge
|
|
42
|
+
pip install -r requirements.txt pyyaml
|
|
43
|
+
python wlf.py --help
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
Cobertura de comandos: [docs/COMMAND-COVERAGE.md](docs/COMMAND-COVERAGE.md)
|
|
47
|
+
|
|
48
|
+
## Licença
|
|
49
|
+
|
|
50
|
+
MIT. Ver [LICENSE](LICENSE).
|
|
51
|
+
|
|
52
|
+
[English](README.md)
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# Security Policy
|
|
2
|
+
|
|
3
|
+
## Supported versions
|
|
4
|
+
|
|
5
|
+
| Version | Supported |
|
|
6
|
+
|---------|-----------|
|
|
7
|
+
| 1.0.x | yes |
|
|
8
|
+
|
|
9
|
+
This public tree does **not** ship a Brazilian password corpus. Vendor factory defaults, username samples, and lab lists are included for authorized testing.
|
|
10
|
+
|
|
11
|
+
The generator can emit a real password or username when secrets follow public or predictable patterns. That is expected behavior of weak secrets, not a data leak. See the README disclaimer.
|
|
12
|
+
|
|
13
|
+
## Reporting a vulnerability
|
|
14
|
+
|
|
15
|
+
Do not open a public GitHub issue for security reports.
|
|
16
|
+
|
|
17
|
+
1. Email **suporte@uniaogeek.com.br**
|
|
18
|
+
2. Or use [GitHub Security Advisories](https://github.com/mrhenrike/WordlistXPL-Forge/security/advisories)
|
|
19
|
+
|
|
20
|
+
Include description, reproduction steps, impact, and a suggested fix when you have one.
|
|
21
|
+
|
|
22
|
+
## Response timeline
|
|
23
|
+
|
|
24
|
+
| Action | Target |
|
|
25
|
+
|--------|--------|
|
|
26
|
+
| Acknowledgment | 72 hours |
|
|
27
|
+
| Initial assessment | 7 days |
|
|
28
|
+
| Fix or mitigation | 30 days |
|
|
29
|
+
| Public disclosure | After fix |
|