You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On the line 96 of the "GenerateWsseHeaderCommand.php" file ,nonce generator does not guarantee 100% uniqueness of return value, and maybe create duplicate nonce.
It's better to use random_int(),random_bytes(), or openssl_random_pseudo_bytes() instead.