Commit 00db34e
Strengthen MySQL superset password generation
Replace random.choice with secrets.choice for CSPRNG, expand charset
from lowercase-only to ascii_letters+digits+punctuation, and increase
length from 12 to 24 characters. The previous password had ~56 bits of
entropy; the new one has ~157 bits.
Closes #89
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>1 parent 0ab8ce7 commit 00db34e
2 files changed
Lines changed: 4 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
15 | 15 | | |
16 | 16 | | |
17 | 17 | | |
| 18 | + | |
18 | 19 | | |
19 | 20 | | |
20 | 21 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
48 | 48 | | |
49 | 49 | | |
50 | 50 | | |
51 | | - | |
| 51 | + | |
52 | 52 | | |
53 | 53 | | |
54 | 54 | | |
| |||
65 | 65 | | |
66 | 66 | | |
67 | 67 | | |
68 | | - | |
| 68 | + | |
| 69 | + | |
69 | 70 | | |
70 | 71 | | |
71 | 72 | | |
| |||
0 commit comments