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
Consider your want to pass a password (on Windows) with asterisk: S8p3r*S3cr3t. The escaped outcome is S8p3r*S3cr3t. No change, but to pass an asterisk you need to quote the entire string otherwise the shell will expand the asterisk. Correct value would be: "S8p3r*S3cr3t"
Currently, this is impossible in Plexus Utils.
The text was updated successfully, but these errors were encountered:
Yes, it is. The entire process execution suffers from one serious flaw that it executes a local shell rather than providing it to the system directory. The shell will do its own replacement which hasn't been espaced by this implementation.
This was found during SCM-763.
Consider your want to pass a password (on Windows) with asterisk:
S8p3r*S3cr3t
. The escaped outcome isS8p3r*S3cr3t
. No change, but to pass an asterisk you need to quote the entire string otherwise the shell will expand the asterisk. Correct value would be:"S8p3r*S3cr3t"
Currently, this is impossible in Plexus Utils.
The text was updated successfully, but these errors were encountered: