summaryrefslogtreecommitdiff
path: root/Userenum/README.MD
blob: beba07b60feda67ad962bd8b46622a830d4381fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
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

---