Arno Kaimbacher
010bead723
Some checks failed
CI Pipeline / japa-tests (push) Failing after 1m0s
- add public opensearch api host
27 lines
406 B
TypeScript
27 lines
406 B
TypeScript
// common passwords as an array of strings
|
|
|
|
const commonPasswords = [
|
|
'123456',
|
|
'qwerty',
|
|
'password',
|
|
'111111',
|
|
'Abc123',
|
|
'123456789',
|
|
'12345678',
|
|
'123123',
|
|
'1234567890',
|
|
'12345',
|
|
'1234567',
|
|
'qwertyuiop',
|
|
'qwerty123',
|
|
'1q2w3e',
|
|
'password1',
|
|
'123321',
|
|
'Iloveyou',
|
|
'12345',
|
|
'test',
|
|
'test007'
|
|
];
|
|
|
|
export default commonPasswords;
|