Can I use wildcards in the password domain?

I have some websites to login, they have the same special port to login. eg:
https://domain1:12345
https://domain2:12345
all these website with port 12345 use the same password.
how can i set the password policy, so it can work for all the web with same port?
i have tried the https://*:12345 bit it doesn’t work.

@talentldk Welcome to the forum!

Have you tried setting the URI Match Detection method to Regular Expression? Then set your URI value to something like the following:

^https:\/\/.*:12345$

1 Like

Yes it works for my problem, many thanks.

1 Like