Browse Source

Merge branch '168-parsing' into 'master'

Wazuh API Password

Closes #168

See merge request cyber5k/mistborn!77
merge-requests/78/merge
Steven Foerster 5 years ago
parent
commit
7bce97479f
  1. 4
      scripts/subinstallers/extra/wazuh.sh

4
scripts/subinstallers/extra/wazuh.sh

@ -23,14 +23,14 @@ import secrets @@ -23,14 +23,14 @@ import secrets
import random
import string
random_pass = ([secrets.choice("@$!%*?&-_"),
random_pass = ([secrets.choice("@$!%*?-_"),
secrets.choice(string.digits),
secrets.choice(string.ascii_lowercase),
secrets.choice(string.ascii_uppercase),
]
+ [secrets.choice(string.ascii_lowercase
+ string.ascii_uppercase
+ "@$!%*?&-_"
+ "@$!%*?-_"
+ string.digits) for i in range(12)])
random.shuffle(random_pass)

Loading…
Cancel
Save