[JBoss JIRA] (WFCORE-2929) Missing default values in ldap-key-store description in management model.
by Brian Stansberry (JIRA)
[ https://issues.jboss.org/browse/WFCORE-2929?page=com.atlassian.jira.plugi... ]
Brian Stansberry updated WFCORE-2929:
-------------------------------------
Fix Version/s: 3.0.0.Beta29
(was: 3.0.0.Beta28)
> Missing default values in ldap-key-store description in management model.
> -------------------------------------------------------------------------
>
> Key: WFCORE-2929
> URL: https://issues.jboss.org/browse/WFCORE-2929
> Project: WildFly Core
> Issue Type: Bug
> Components: Security
> Reporter: Ondrej Lukas
> Assignee: Yeray Borges
> Labels: user_experience
> Fix For: 3.0.0.Beta29
>
>
> Some attributes of Elytron {{ldap-key-store}} resource have defined some default value, but description of these attributes in CLI is missing default values. According to XSD following attributes of {{ldap-key-store}} have assigned some default value:
> * {{search-recursive}} has default value {{true}}
> * {{search-time-limit}} has default value {{10000}}
> * {{filter-alias}} has default value {{(alias-attribute=\{0\})}}
> * {{filter-certificate}} has default value {{(certificate-attribute=\{0\})}}
> * {{filter-iterate}} has default value {{(alias-attribute=*)}}
> * {{alias-attribute}} has default value {{cn}}
> * {{certificate-attribute}} has default value {{usercertificate}}
> * {{certificate-type}} has default value {{X.509}}
> * {{certificate-chain-attribute}} has default value {{userSMIMECertificate}}
> * {{certificate-chain-encoding}} has default value {{PKCS7}}
> * {{key-attribute}} has default value {{userPKCS12}}
> * {{key-type}} has default value {{PKCS12}}
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 9 months
[JBoss JIRA] (DROOLS-1680) Maven plugin for unmanaged KIE Server deployments
by Michael Reynolds (JIRA)
Michael Reynolds created DROOLS-1680:
----------------------------------------
Summary: Maven plugin for unmanaged KIE Server deployments
Key: DROOLS-1680
URL: https://issues.jboss.org/browse/DROOLS-1680
Project: Drools
Issue Type: Feature Request
Components: kie server
Affects Versions: 7.1.0.Final
Reporter: Michael Reynolds
Assignee: Edson Tirelli
Priority: Minor
It would be nice to be able to manage KIE Server deployments to unmanaged KIE servers via a Maven plugin. At the moment you need to rely on bash scripts and/or ant tasks to use the REST API.
It would be very helpful for when deployments are required to be done via a CI/CD pipeline in Jenkins etc...
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 9 months
[JBoss JIRA] (WFLY-9129) Setting env var SECMGR=true no longer works
by R Searls (JIRA)
R Searls created WFLY-9129:
------------------------------
Summary: Setting env var SECMGR=true no longer works
Key: WFLY-9129
URL: https://issues.jboss.org/browse/WFLY-9129
Project: WildFly
Issue Type: Bug
Components: Security Manager
Affects Versions: 11.0.0.Alpha1, 10.1.0.Final, 10.0.0.Final
Reporter: R Searls
Assignee: Stefan Guilhen
Setting env var SECMGR=true is suppose to enable the security manager.
It is not working. I've tried the following and none of them enable
the security manager.
export SECMGR=true;
on the cmd-line -DSECMGR=true
edit bin/standalone.conf and uncomment line SECMGR="true"
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 9 months
[JBoss JIRA] (ELY-1308) Alias from dependent credential store is not avalaible on server start
by Jan Kalina (JIRA)
[ https://issues.jboss.org/browse/ELY-1308?page=com.atlassian.jira.plugin.s... ]
Jan Kalina edited comment on ELY-1308 at 7/25/17 10:31 AM:
-----------------------------------------------------------
BouncyCastle Crypto initialization using *cipher.init(Cipher.ENCRYPT_MODE, key)* is failing (BouncyCastle params obtaining requires inizialized SPI, but initialization requires permission check which needs to obtain params) - used workaround on elytron side: using *cipher.init(Cipher.ENCRYPT_MODE, key, (AlgorithmParameterSpec) null)*
was (Author: honza889):
BouncyCastle Crypto initialization using *cipher.init(Cipher.ENCRYPT_MODE, key)* is failing - used workaround on elytron side: using *cipher.init(Cipher.ENCRYPT_MODE, key, (AlgorithmParameterSpec) null)*
> Alias from dependent credential store is not avalaible on server start
> ----------------------------------------------------------------------
>
> Key: ELY-1308
> URL: https://issues.jboss.org/browse/ELY-1308
> Project: WildFly Elytron
> Issue Type: Bug
> Components: Credential Store
> Affects Versions: 1.1.0.CR2
> Reporter: Jan Kalina
> Assignee: Jan Kalina
> Priority: Critical
>
> BouncyCastle external CredentialStore fail to store secret:
> {code}
> KeyStoreCredentialStore: flushing failed: java.lang.NullPointerException
> at org.bouncycastle.jcajce.provider.BaseCipher.engineGetParameters(Unknown Source)
> at javax.crypto.Cipher.checkCryptoPerm(Cipher.java:1020)
> at javax.crypto.Cipher.init(Cipher.java:1245)
> at javax.crypto.Cipher.init(Cipher.java:1186)
> at org.wildfly.security.credential.store.impl.KeyStoreCredentialStore$ExternalStorage.saveSecretKey(KeyStoreCredentialStore.java:1299)
> at org.wildfly.security.credential.store.impl.KeyStoreCredentialStore$ExternalStorage.store(KeyStoreCredentialStore.java:1283)
> at org.wildfly.security.credential.store.impl.KeyStoreCredentialStore.flush(KeyStoreCredentialStore.java:779)
> at org.wildfly.security.credential.store.CredentialStore.flush(CredentialStore.java:364)
> at org.wildfly.extension.elytron.CredentialStoreResourceDefinition.storeSecret(CredentialStoreResourceDefinition.java:517)
> {code}
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 9 months
[JBoss JIRA] (ELY-1308) Alias from dependent credential store is not avalaible on server start
by Jan Kalina (JIRA)
[ https://issues.jboss.org/browse/ELY-1308?page=com.atlassian.jira.plugin.s... ]
Jan Kalina commented on ELY-1308:
---------------------------------
BouncyCastle Crypto initialization using *cipher.init(Cipher.ENCRYPT_MODE, key)* is failing - used workaround on elytron side: using *cipher.init(Cipher.ENCRYPT_MODE, key, (AlgorithmParameterSpec) null)*
> Alias from dependent credential store is not avalaible on server start
> ----------------------------------------------------------------------
>
> Key: ELY-1308
> URL: https://issues.jboss.org/browse/ELY-1308
> Project: WildFly Elytron
> Issue Type: Bug
> Components: Credential Store
> Affects Versions: 1.1.0.CR2
> Reporter: Jan Kalina
> Assignee: Jan Kalina
> Priority: Critical
>
> BouncyCastle external CredentialStore fail to store secret:
> {code}
> KeyStoreCredentialStore: flushing failed: java.lang.NullPointerException
> at org.bouncycastle.jcajce.provider.BaseCipher.engineGetParameters(Unknown Source)
> at javax.crypto.Cipher.checkCryptoPerm(Cipher.java:1020)
> at javax.crypto.Cipher.init(Cipher.java:1245)
> at javax.crypto.Cipher.init(Cipher.java:1186)
> at org.wildfly.security.credential.store.impl.KeyStoreCredentialStore$ExternalStorage.saveSecretKey(KeyStoreCredentialStore.java:1299)
> at org.wildfly.security.credential.store.impl.KeyStoreCredentialStore$ExternalStorage.store(KeyStoreCredentialStore.java:1283)
> at org.wildfly.security.credential.store.impl.KeyStoreCredentialStore.flush(KeyStoreCredentialStore.java:779)
> at org.wildfly.security.credential.store.CredentialStore.flush(CredentialStore.java:364)
> at org.wildfly.extension.elytron.CredentialStoreResourceDefinition.storeSecret(CredentialStoreResourceDefinition.java:517)
> {code}
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 9 months