]
Darran Lofthouse moved WFLY-8268 to WFCORE-2456:
------------------------------------------------
Project: WildFly Core (was: WildFly)
Key: WFCORE-2456 (was: WFLY-8268)
Component/s: Security
(was: Security)
Obtain password from external source (CMD, EXT) doesn't work on
Windows.
------------------------------------------------------------------------
Key: WFCORE-2456
URL:
https://issues.jboss.org/browse/WFCORE-2456
Project: WildFly Core
Issue Type: Bug
Components: Security
Reporter: Hynek Švábek
Assignee: Darran Lofthouse
Obtain password from external source (CMD, EXT) doesn't work on Windows.
Try to create new CS which obtains password from external source:
{code}
/subsystem=elytron/credential-store=myCredStore:add(uri="cr-store://test/myCredStore.jceks?create=true",
credential-reference={clear-text="{CMD}C:\path\to\scrit\pass.bat,VerySecretPassword",
type=COMMAND}, relative-to=jboss.server.config.dir)
{code}
pass.bat file contains only this
{code}
echo %1
{code}
Because of
https://issues.jboss.org/browse/JBEAP-9211 you must do this extra step:
Add new alias to CS -> JCEKS file is created
Please try it open directly with pass "VerySecretPassword" -> *it
doesn't work* on Windows.
In my opinion there is problem with back slashes in script path.
https://github.com/wildfly/wildfly-core/blob/3.0.0.Alpha22/controller/src...
Because when I add there back slashed to path then it works.