diff options
| author | ExtremeUday <udaypro2008@gmail.com> | 2025-11-21 01:44:57 +0530 |
|---|---|---|
| committer | ExtremeUday <udaypro2008@gmail.com> | 2025-11-21 01:44:57 +0530 |
| commit | 2bc9d597128ee7ec9b95622f34964e5da68aa84c (patch) | |
| tree | 03f681528d806a71ff39a5792371c1872449d984 /Userenum/README.MD | |
| parent | 11525471315f17cac93a49181590d3f9c0b22d74 (diff) | |
Added userenum
Diffstat (limited to 'Userenum/README.MD')
| -rw-r--r-- | Userenum/README.MD | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/Userenum/README.MD b/Userenum/README.MD new file mode 100644 index 0000000..beba07b --- /dev/null +++ b/Userenum/README.MD @@ -0,0 +1,65 @@ +# 📄 README.md + +# Username Variation Generator + +A lightweight Python tool to generate common username formats used in AD, Linux, and corporate environments. Useful for enumeration during pentesting or automation. + +--- + +## ✨ Features + +* Accepts **First Last** and **First.Last** formats +* Generates multiple username variations +* Supports custom input/output files +* Removes duplicates automatically + +--- + +## 🚀 Usage + +### Basic + +```bash +python3 gen_user.py -i names.txt +``` + +### Specify output file + +```bash +python3 gen_user.py -i names.txt -o users_final.txt +``` + +### Help + +```bash +python3 gen_user.py -h +``` + +--- + +## 📝 Input Examples + +``` +James Roberts +Sarah.Osvald +``` + +--- + +## 📤 Output Examples + +``` +james.roberts +jroberts +jamesr +james_roberts +jr +``` + +--- + +## 👤 Authors + +PaiN05, Uday + +--- |
