diff --git a/dev/com.ibm.ws.security.spnego.fat.common/fat/src/com/ibm/ws/security/spnego/fat/config/KdcHelper.java b/dev/com.ibm.ws.security.spnego.fat.common/fat/src/com/ibm/ws/security/spnego/fat/config/KdcHelper.java index 785cf8e7bc5..6d314c85eb1 100644 --- a/dev/com.ibm.ws.security.spnego.fat.common/fat/src/com/ibm/ws/security/spnego/fat/config/KdcHelper.java +++ b/dev/com.ibm.ws.security.spnego.fat.common/fat/src/com/ibm/ws/security/spnego/fat/config/KdcHelper.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2014, 2020 IBM Corporation and others. + * Copyright (c) 2014, 2021 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -21,11 +21,13 @@ import java.io.PrintWriter; import java.net.ConnectException; import java.rmi.RemoteException; +import java.util.Arrays; import java.util.EnumSet; import java.util.Map; import java.util.Set; import java.util.Vector; import java.util.concurrent.TimeUnit; +import java.util.stream.Collectors; import org.apache.sshd.client.SshClient; import org.apache.sshd.client.channel.ChannelExec; @@ -33,6 +35,8 @@ import org.apache.sshd.client.scp.ScpClient; import org.apache.sshd.client.scp.ScpClientCreator; import org.apache.sshd.client.session.ClientSession; +import org.apache.sshd.common.channel.Channel; +import org.apache.sshd.common.channel.ChannelListener; import org.junit.Ignore; import com.ibm.websphere.simplicity.ConnectionInfo; @@ -878,13 +882,15 @@ protected ClientSession getSshSession(SshClient sshClient, Machine machine) thro * @throws IOException If there was an error executing the command. */ protected ProgramOutput executeSshCommand(ClientSession sshSession, String command, int timeout) throws IOException { - Log.info(thisClass, "executeSshCommand", "Executing SSH command --> \"{1}\" with a {2}s timeout on session {0}", new Object[] { sshSession, command, timeout }); + final String methodName = "executeSshCommand"; + Log.info(thisClass, methodName, "Executing SSH command --> \"{1}\" with a {2}s timeout on session {0}", new Object[] { sshSession, command, timeout }); try (ByteArrayOutputStream stderr = new ByteArrayOutputStream(); ByteArrayOutputStream stdout = new ByteArrayOutputStream(); ChannelExec channel = sshSession.createExecChannel(command)) { channel.setOut(stdout); channel.setErr(stderr); + channel.addChannelListener(new SshChannelListener()); try { long remainingTimeoutMs = TimeUnit.SECONDS.toMillis(timeout); @@ -896,7 +902,7 @@ protected ProgramOutput executeSshCommand(ClientSession sshSession, String comma remainingTimeoutMs -= System.currentTimeMillis() - startTimeMs; if (remainingTimeoutMs <= 0) { - Log.info(thisClass, "executeSshCommand", "The SSH command timed out."); + Log.info(thisClass, methodName, "The SSH command timed out."); throw new IOException("Timed out trying to open a channel with the host to execute the SSH command. The timeout was " + timeout + " seconds."); } @@ -909,17 +915,68 @@ protected ProgramOutput executeSshCommand(ClientSession sshSession, String comma * Did the command timeout? If so throw an exception. */ if (ccEvents.contains(ClientChannelEvent.TIMEOUT)) { - Log.info(thisClass, "executeSshCommand", "The SSH command timed out."); + Log.info(thisClass, methodName, "The SSH command timed out. The timeout was " + timeout + " seconds."); throw new IOException("The SSH command timed out while executing. The timeout was " + timeout + " seconds."); } - Log.info(thisClass, "executeSshCommand", "SSH command returned status of {0}", channel.getExitStatus()); + return new ProgramOutput(command, channel.getExitStatus(), new String(stdout.toByteArray()), new String(stderr.toByteArray())); } finally { - channel.close(false); + try { + channel.close(false); + } catch (Throwable t) { + // Ignore. + } + + logSshOutput(new String(stdout.toByteArray()).trim(), new String(stderr.toByteArray()).trim()); } } } + /** + * Log stdout and stderr from an SSH channel. + * + * @param stdout Standard output from the channel. + * @param stderr Standard input from the channel. + */ + private static void logSshOutput(String stdout, String stderr) { + final String methodName = "logSshOutput"; + + /* + * Process stdout. + */ + if (stdout.isEmpty()) { + stdout = " [STDOUT] "; + } else { + /* + * Add " [STDOUT] " to the beginning of each line. The split + * method might be resource intensive if we have large strings. + */ + stdout = Arrays.stream(stdout.split("\\r?\\n")) + .filter(line -> true) + .map(line -> " [STDOUT] " + line + System.lineSeparator()) + .collect(Collectors.joining()); + } + + /* + * Process stderr. + */ + if (stderr.isEmpty()) { + stderr = " [STDERR] "; + } else { + /* + * Add " [STDERR] " to the beginning of each line. The split + * method might be resource intensive if we have large strings. + */ + stderr = Arrays.stream(stderr.split("\\r?\\n")) + .filter(line -> true) + .map(line -> " [STDERR] " + line + System.lineSeparator()) + .collect(Collectors.joining()); + } + + Log.info(thisClass, methodName, "SSH command standard output: \n{0}", stdout); + Log.info(thisClass, methodName, "SSH command standard error: \n{0}", stderr); + } + /** * Determine whether the remote file exists. * @@ -1005,4 +1062,37 @@ protected boolean deleteRemoteFile(ClientSession sshSession, String remoteFile) Log.info(thisClass, "deleteRemoteFile", "Delete of remote file was successful? " + success); return success; } + + /** + * Handler for listenting to SSH channel events. + */ + class SshChannelListener implements ChannelListener { + private Class thisClass = SshChannelListener.class; + + @Override + public void channelInitialized(Channel channel) { + Log.info(thisClass, "channelInitialized", "Channel: " + channel); + } + + @Override + public void channelOpenSuccess(Channel channel) { + Log.info(thisClass, "channelOpenSuccess", "Channel: " + channel); + } + + @Override + public void channelOpenFailure(Channel channel, + Throwable reason) { + Log.error(thisClass, "channelOpenFailure", reason, "Channel: " + channel); + } + + @Override + public void channelClosed(Channel channel, Throwable reason) { + Log.error(thisClass, "channelClosed", reason, "Channel: " + channel); + } + + @Override + public void channelStateChanged(Channel channel, String hint) { + Log.info(thisClass, "channelStateChanged", "Channel: " + channel + ", hint: " + hint); + } + } } diff --git a/dev/com.ibm.ws.security.spnego.fat.common/fat/src/com/ibm/ws/security/spnego/fat/config/MsKdcHelper.java b/dev/com.ibm.ws.security.spnego.fat.common/fat/src/com/ibm/ws/security/spnego/fat/config/MsKdcHelper.java index 5a94ef290f8..6395a00aaa9 100644 --- a/dev/com.ibm.ws.security.spnego.fat.common/fat/src/com/ibm/ws/security/spnego/fat/config/MsKdcHelper.java +++ b/dev/com.ibm.ws.security.spnego.fat.common/fat/src/com/ibm/ws/security/spnego/fat/config/MsKdcHelper.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2014, 2020 IBM Corporation and others. + * Copyright (c) 2014, 2021 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -221,8 +221,6 @@ public void setSpnForUser(String user, String spnHost) throws Exception { String setUserSpnCommand = "./" + remoteScriptName + " " + user + " HTTP " + spnHost; ProgramOutput output = executeRemoteCommand(remoteScriptName, setUserSpnCommand, true); - Log.info(thisClass, methodName, "command stdout: " + output.getStdout()); - Log.info(thisClass, methodName, "command stderr: " + output.getStderr()); if (output.getReturnCode() != 0) { throw new RemoteException("Setting SPN for user failed with return code " + output.getReturnCode()); } @@ -273,8 +271,6 @@ public void deleteSpnForUser(String user, String spn) throws Exception { String setUserSpnCommand = "./" + remoteScriptName + " " + user + " HTTP " + spn; ProgramOutput output = executeRemoteCommand(remoteScriptName, setUserSpnCommand, true); - Log.info(thisClass, methodName, "command stdout: " + output.getStdout()); - Log.info(thisClass, methodName, "command stderr: " + output.getStderr()); if (output.getReturnCode() != 0) { throw new RemoteException("Deleting SPN for user failed with return code " + output.getReturnCode()); } @@ -303,8 +299,6 @@ public void addSpnToKeytab(String user, String spn) throws Exception { ProgramOutput output = executeRemoteCommand(remoteScriptName, addSpnToKeytabCommand, true); InitClass.needToPushaddSPNKeytab = false; - Log.info(thisClass, methodName, "command stdout: " + output.getStdout()); - Log.info(thisClass, methodName, "command stderr: " + output.getStderr()); if (output.getReturnCode() != 0) { throw new RemoteException("Adding SPN to keytab failed with return code " + output.getReturnCode()); } @@ -444,19 +438,15 @@ private ProgramOutput executeRemoteCommand(String scriptFile, String command, bo Log.info(thisClass, methodName, "Call chmod 777 on script using command: " + chmodCMD); output = executeSshCommand(sshSession, chmodCMD, 30); - Log.info(thisClass, methodName, "chmod command output: " + output.getStdout()); - Log.info(thisClass, methodName, "chmod command error:" + output.getStderr()); } else { Log.info(thisClass, methodName, "The following command will not be run for: " + chmodCMD + " for the script file: " + scriptFile); } Log.info(thisClass, methodName, "Executing command --> " + command); - output = executeSshCommand(sshSession, command, 300); + output = executeSshCommand(sshSession, command, 60); if (retryUponFailure && output.getReturnCode() != 0) { Log.info(thisClass, methodName, "Remote command failed with return code " + output.getReturnCode()); - Log.info(thisClass, methodName, "command output: " + output.getStdout()); - Log.info(thisClass, methodName, "command error:" + output.getStderr()); Log.info(thisClass, methodName, "Sleeping for a few seconds to see if that helps resolve any problems encountered"); Thread.sleep(15 * 1000); Log.info(thisClass, methodName, "Attempting to retry the command"); diff --git a/dev/com.ibm.ws.security.spnego.fat.common/fat/src/com/ibm/ws/security/spnego/fat/config/SPNEGOConstants.java b/dev/com.ibm.ws.security.spnego.fat.common/fat/src/com/ibm/ws/security/spnego/fat/config/SPNEGOConstants.java index 19f0d9e2ac3..43812456c6a 100644 --- a/dev/com.ibm.ws.security.spnego.fat.common/fat/src/com/ibm/ws/security/spnego/fat/config/SPNEGOConstants.java +++ b/dev/com.ibm.ws.security.spnego.fat.common/fat/src/com/ibm/ws/security/spnego/fat/config/SPNEGOConstants.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2020 IBM Corporation and others. + * Copyright (c) 2020, 2021 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -52,7 +52,7 @@ public class SPNEGOConstants { public final static String CREATE_WIN_USER_LOCAL_FILE = SLASH_KERBEROS_SLASH + CREATE_WIN_USER_REMOTE_FILE; public final static String REMOVE_WIN_USER_REMOTE_FILE = "removeWinUsers.vbs"; public final static String REMOTE_WIN_USER_LOCAL_FILE = SLASH_KERBEROS_SLASH + REMOVE_WIN_USER_REMOTE_FILE; - public final static String CREATE_WIN_KEYTAB_REMOTE_FILE = "createWinKeytabFile.bat"; + public final static String CREATE_WIN_KEYTAB_REMOTE_FILE = "createWinKeytabFileOL.bat"; // "createWinKeytabFile.bat"; public final static String CREATE_WIN_KEYTAB_LOCAL_FILE = SLASH_KERBEROS_SLASH + CREATE_WIN_KEYTAB_REMOTE_FILE; public final static String CREATE_WIN_USER_SET_SPN_REMOTE_FILE = "createUserAndSetSpn.bat"; public final static String CREATE_WIN_USER_SET_SPN_LOCAL_FILE = SLASH_KERBEROS_SLASH + CREATE_WIN_USER_SET_SPN_REMOTE_FILE; diff --git a/dev/com.ibm.ws.security.spnego_fat.1/bnd.bnd b/dev/com.ibm.ws.security.spnego_fat.1/bnd.bnd index 2cd60beadcc..d490b33720d 100644 --- a/dev/com.ibm.ws.security.spnego_fat.1/bnd.bnd +++ b/dev/com.ibm.ws.security.spnego_fat.1/bnd.bnd @@ -30,6 +30,7 @@ tested.features: pages-3.0 com.ibm.ws.security.authentication.filter;version=latest,\ com.ibm.ws.security.jaas.common;version=latest,\ com.ibm.ws.security.kerberos.java8;version=latest,\ + com.ibm.ws.security.spnego_fat;version=latest,\ com.ibm.ws.security.spnego.fat.common;version=latest,\ com.ibm.ws.security.token;version=latest,\ com.ibm.ws.security.token.s4u2;version=latest,\ diff --git a/dev/com.ibm.ws.security.spnego_fat.1/build.gradle b/dev/com.ibm.ws.security.spnego_fat.1/build.gradle index 7a36ba20c30..c46cb2832de 100644 --- a/dev/com.ibm.ws.security.spnego_fat.1/build.gradle +++ b/dev/com.ibm.ws.security.spnego_fat.1/build.gradle @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2020 IBM Corporation and others. + * Copyright (c) 2020, 2021 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -35,7 +35,16 @@ def appBuildDir = "${buildDir}/test-application" autoFVT.dependsOn ':com.ibm.ws.security.spnego.fat.common:SPNEGOTokenHelperFVT_EAR' autoFVT.dependsOn ':com.ibm.ws.webcontainer.security_test.servlets:war' autoFVT.doLast { - + + /****************************************************************** + * Copy spnego_fat files. + ******************************************************************/ + copy { + from new File(project(':com.ibm.ws.security.spnego_fat').projectDir, 'publish/files') + into new File(autoFvtDir, 'lib/LibertyFATTestFiles') + include '**' + } + /****************************************************************** * Setup server: BackendServer @@ -46,8 +55,8 @@ autoFVT.doLast { into new File(autoFvtDir, 'publish/servers/' + server + '/apps') rename 'basicauth.zip', 'basicauth.war' } - copy { - from 'publish/files/resources/security' + copy { + from new File(project(':com.ibm.ws.security.spnego_fat').projectDir, 'publish/files/resources/security') into new File(autoFvtDir, 'publish/servers/' + server + '/resources/security') include '**' } @@ -58,7 +67,7 @@ autoFVT.doLast { ******************************************************************/ server = 'com.ibm.ws.security.spnego.fat.setup' copy { - from 'publish/files/resources/security' + from new File(project(':com.ibm.ws.security.spnego_fat').projectDir, 'publish/files/resources/security') into new File(autoFvtDir, 'publish/servers/' + server + '/resources/security') include '**' } @@ -74,7 +83,7 @@ autoFVT.doLast { rename 'basicauth.zip', 'basicauth.war' } copy { - from 'publish/files/server_modules/' + from new File(project(':com.ibm.ws.security.spnego_fat').projectDir, 'publish/files/server_modules') into new File(autoFvtDir, 'publish/servers/' + server + '/imports') include 'application_definition/**.xml' include 'configs/**.xml' @@ -84,7 +93,7 @@ autoFVT.doLast { include 'spnego/serversettings/**.xml' } copy { - from 'publish/files/resources/security' + from new File(project(':com.ibm.ws.security.spnego_fat').projectDir, 'publish/files/resources/security') into new File(autoFvtDir, 'publish/servers/' + server + '/resources/security') include '**' } @@ -109,7 +118,7 @@ autoFVT.doLast { rename 'com.ibm.ws.security.spnego_fat.jar', 'CustomLoginModule.jar' } copy { - from 'publish/files/server_modules/' + from new File(project(':com.ibm.ws.security.spnego_fat').projectDir, 'publish/files/server_modules') into new File(autoFvtDir, 'publish/servers/' + server + '/imports') include 'application_definition/spnegoTokenHelperFvt_location.xml' include 'configs/**.xml' @@ -121,7 +130,7 @@ autoFVT.doLast { include 'spnego/serversettings/**.xml' } copy { - from 'publish/files/resources/security' + from new File(project(':com.ibm.ws.security.spnego_fat').projectDir, 'publish/files/resources/security') into new File(autoFvtDir, 'publish/servers/' + server + '/resources/security') include '**' } @@ -139,8 +148,8 @@ autoFVT.doLast { into new File(autoFvtDir, 'publish/servers/' + server + '/apps') rename 'basicauth.zip', 'basicauth.war' } - copy { - from 'publish/files/server_modules/' + copy { + from new File(project(':com.ibm.ws.security.spnego_fat').projectDir, 'publish/files/server_modules') into new File(autoFvtDir, 'publish/servers/' + server + '/imports') include 'application_definition/**.xml' include 'configs/**.xml' @@ -151,13 +160,13 @@ autoFVT.doLast { include 'spnego/authfilters/**.xml' include 'spnego/serversettings/**.xml' } - copy { - from 'publish/files/server_modules/constrained_delegation/s4u2self_servers/config/' + copy { + from new File(project(':com.ibm.ws.security.spnego_fat').projectDir, 'publish/files/server_modules/constrained_delegation/s4u2self_servers/config') into new File(autoFvtDir, 'publish/servers/' + server + '/imports/constrained_delegation/config') include '**.xml' } copy { - from 'publish/files/resources/security' + from new File(project(':com.ibm.ws.security.spnego_fat').projectDir, 'publish/files/resources/security') into new File(autoFvtDir, 'publish/servers/' + server + '/resources/security') include '**' } diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/clientcert/LDAPUser1.jks b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/clientcert/LDAPUser1.jks deleted file mode 100755 index c0a773f3652..00000000000 Binary files a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/clientcert/LDAPUser1.jks and /dev/null differ diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/clientcert/LDAPUser1AD.jks b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/clientcert/LDAPUser1AD.jks deleted file mode 100755 index be7851e1321..00000000000 Binary files a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/clientcert/LDAPUser1AD.jks and /dev/null differ diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/clientcert/LDAPUser1Invalid.jks b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/clientcert/LDAPUser1Invalid.jks deleted file mode 100755 index 8f0b8c92d1f..00000000000 Binary files a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/clientcert/LDAPUser1Invalid.jks and /dev/null differ diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/clientcert/LDAPUser2.jks b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/clientcert/LDAPUser2.jks deleted file mode 100755 index 508959ab266..00000000000 Binary files a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/clientcert/LDAPUser2.jks and /dev/null differ diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/clientcert/LDAPUser5.jks b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/clientcert/LDAPUser5.jks deleted file mode 100755 index e7fc1596b53..00000000000 Binary files a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/clientcert/LDAPUser5.jks and /dev/null differ diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/clientcert/invalidUser.jks b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/clientcert/invalidUser.jks deleted file mode 100755 index 571db34214e..00000000000 Binary files a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/clientcert/invalidUser.jks and /dev/null differ diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/errorPages/NtlmErrorPageWithBadContType.jsp b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/errorPages/NtlmErrorPageWithBadContType.jsp deleted file mode 100755 index f22b3109c05..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/errorPages/NtlmErrorPageWithBadContType.jsp +++ /dev/null @@ -1,9 +0,0 @@ - - - - My NTLM custom error page. - - - My NTLM custom message - SPNEGO service detected NTLM Token. -

Please login to the application using the normal login page. - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/errorPages/NtlmErrorPageWithContTypeAndEncode.jsp b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/errorPages/NtlmErrorPageWithContTypeAndEncode.jsp deleted file mode 100755 index 10fc952bc01..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/errorPages/NtlmErrorPageWithContTypeAndEncode.jsp +++ /dev/null @@ -1,9 +0,0 @@ - - - - My NTLM custom error page. - - - My NTLM custom message - SPNEGO service detected NTLM Token. -

Please login to the application using the normal login page. - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/errorPages/SpnegoErrorPageWithBadContType.jsp b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/errorPages/SpnegoErrorPageWithBadContType.jsp deleted file mode 100755 index f59268d5dbc..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/errorPages/SpnegoErrorPageWithBadContType.jsp +++ /dev/null @@ -1,9 +0,0 @@ - - - - My SPNEGO custom error page. - - - My SPNEGO custom message - SPNEGO service doesn't work on this client. - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/errorPages/SpnegoErrorPageWithContTypeAndEncode.jsp b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/errorPages/SpnegoErrorPageWithContTypeAndEncode.jsp deleted file mode 100755 index 232d704440d..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/errorPages/SpnegoErrorPageWithContTypeAndEncode.jsp +++ /dev/null @@ -1,9 +0,0 @@ - - - - My SPNEGO custom error page. - - - My SPNEGO custom message - SPNEGO service doesn't work on this client. - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/errorPages/myNtlmTokenReceivedErrorPage.jsp b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/errorPages/myNtlmTokenReceivedErrorPage.jsp deleted file mode 100755 index d9d770825f6..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/errorPages/myNtlmTokenReceivedErrorPage.jsp +++ /dev/null @@ -1 +0,0 @@ -My NTLM custom error page.My NTLM custom message - SPNEGO service detected NTLM Token.

Please login to the application using the normal login page. \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/errorPages/mySpnegoNotSupportedErrorPage.jsp b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/errorPages/mySpnegoNotSupportedErrorPage.jsp deleted file mode 100755 index e359bc2180e..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/errorPages/mySpnegoNotSupportedErrorPage.jsp +++ /dev/null @@ -1 +0,0 @@ -My SPNEGO custom error page.My SPNEGO custom message - SPNEGO service doesn't work on this client. \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/internalfeatures/securitylibertyinternals-1.0.mf b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/internalfeatures/securitylibertyinternals-1.0.mf deleted file mode 100755 index 60432251661..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/internalfeatures/securitylibertyinternals-1.0.mf +++ /dev/null @@ -1,10 +0,0 @@ -Subsystem-ManifestVersion: 1 -Subsystem-SymbolicName: securitylibertyinternals-1.0; visibility:=public -Subsystem-Version: 1.0.0 -Subsystem-Type: osgi.subsystem.feature -IBM-API-Package: com.ibm.ws.security.authentication; type="internal", - com.ibm.ws.security.authentication.principals; type="internal", - com.ibm.ws.security.authentication.utility; type="internal", - org.osgi.framework; type="internal", - com.ibm.websphere.ras; type="internal" -IBM-Feature-Version: 2 diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/kerberos/addSpnToKeytab.bat b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/kerberos/addSpnToKeytab.bat deleted file mode 100755 index 897635ce751..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/kerberos/addSpnToKeytab.bat +++ /dev/null @@ -1,9 +0,0 @@ -set USER=%1 -set PASSWORD=%2 -set SERVICE_NAME=%3 -set HOSTNAME=%4 -set KEYTAB=%5 -set REALM=%6 - -setspn -A %SERVICE_NAME%/%HOSTNAME% %USER% -ktpass -in %KEYTAB% -out %KEYTAB% -princ %SERVICE_NAME%/%HOSTNAME%@%REALM% -mapUser %USER%@%REALM% -mapOp add -pass %PASSWORD% -crypto RC4-HMAC-NT -kvno 0 \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/kerberos/createUserAndSetSpn.bat b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/kerberos/createUserAndSetSpn.bat deleted file mode 100755 index e0423c0f0c1..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/kerberos/createUserAndSetSpn.bat +++ /dev/null @@ -1,31 +0,0 @@ -set USER=%1 -set PASSWORD=%2 -set SERVICE_NAME=%3 -set HOSTNAME=%4 -set KDC=%5 - -set OP1=%6 -set OP2=%7 -set OP3=%8 -set OP4=%9 -shift -shift -shift -shift -shift -shift -shift -shift -shift -set OP5=%1 -set OP6=%2 -set OP7=%3 -set OP8=%4 -set OP9=%5 -set OP10=%6 -set OP11=%7 -set OP12=%8 - -cscript removeWinUsers.vbs -user %USER% -host %KDC% -cscript createWinUser.vbs -user %USER% -password %PASSWORD% -host %KDC% %OP1% %OP2% %OP3% %OP4% %OP5% %OP6% %OP7% %OP8% %OP9% %OP10% %OP11% %OP12% -setspn -a %SERVICE_NAME%/%HOSTNAME% %USER% diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/kerberos/createWinKeytabFile.bat b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/kerberos/createWinKeytabFile.bat deleted file mode 100755 index 2334c842997..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/kerberos/createWinKeytabFile.bat +++ /dev/null @@ -1,35 +0,0 @@ -set USER=%1 -set PASSWORD=%2 -set SERVICE_NAME=%3 -set HOSTNAME=%4 -set KEYTAB=%5 -set REALM=%6 -set KDC=%7 - -set OP1=%8 -set OP2=%9 -shift -shift -shift -shift -shift -shift -shift -shift -shift -set OP3=%1 -set OP4=%2 -set OP5=%3 -set OP6=%4 -set OP7=%5 -set OP8=%6 -set OP9=%7 -set OP10=%8 -set OP11=%9 -shift -set OP12=%9 - -cscript removeWinUsers.vbs -user %USER% -host %KDC% -cscript createWinUser.vbs -user %USER% -password %PASSWORD% -host %KDC% %OP1% %OP2% %OP3% %OP4% %OP5% %OP6% %OP7% %OP8% %OP9% %OP10% %OP11% %OP12% -setspn -a %SERVICE_NAME%/%HOSTNAME% %USER% -ktpass -out %KEYTAB% -in localhost_HTTP_krb5.keytab -princ %SERVICE_NAME%/%HOSTNAME%@%REALM% -mapUser %USER%@%REALM% -mapOp set -pass %PASSWORD% -crypto RC4-HMAC-NT -kvno 0 -ptype KRB5_NT_PRINCIPAL \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/kerberos/createWinUser.vbs b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/kerberos/createWinUser.vbs deleted file mode 100755 index 0d363a3fe40..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/kerberos/createWinUser.vbs +++ /dev/null @@ -1,322 +0,0 @@ -On Error Resume Next -Dim ComputerName, userGroup, objGroup, objUser, ArgObj, user, password, group, inputFile, outputFile, isUserType, isFileType, host -Dim isEnableTrustedForDelegation, isEnableTrustedForAuthDelegation, isEnableAllowedToDelegate, isEnablePasswordNeverExpires, isDisableKerberosAuthentication - -Set ArgObj = WScript.Arguments - -If Wscript.Arguments.Count = 0 Then - call usage() -End If - -isUserType = false -isFileType = false -isEnableTrustedForDelegation = false -isEnableTrustedForAuthDelegation = false -isEnableAllowedToDelegate = false -isEnablePasswordNeverExpires = false -isDisableKerberosAuthentication = false -'set initial value for group in case -user & -password are specified without group name. -group = "none" -index = 0 -for each arg In ArgObj - 'wsh.echo "index: "&index - 'wsh.echo "arg: "&arg - if arg = "-user" then - isUserType = true - if isFileType = true then - wsh.echo "-user and -file cannot be used together" - call usage() - end if - user = getArgValue(index) - wsh.echo "user: ***" - end if - if arg = "-password" then - password = getArgValue(index) - wsh.echo "password: ***" - end if - if arg = "-group" then - group = getArgValue(index) - wsh.echo "group: " + group - end if - if arg = "-file" then - isFileType = true - if isUserType = true then - wsh.echo "-user and -file cannot be used together" - call usage() - end if - inputFile = getArgValue(index) - wsh.echo "file: " + inputFile - end if - if arg = "-host" then - host = getArgValue(index) - wsh.echo "host: ***" - end if - if arg = "-enableTrustedForDelegation" then - isEnableTrustedForDelegation = getArgValue(index) - wsh.echo "isEnableTrustedForDelegation: " + isEnableTrustedForDelegation - end if - if arg = "-enableTrustedForAuthDelegation" then - isEnableTrustedForAuthDelegation = getArgValue(index) - wsh.echo "isEnableTrustedForAuthDelegation: " + isEnableTrustedForAuthDelegation - end if - if arg = "-enableAllowedToDelegate" then - isEnableAllowedToDelegate = getArgValue(index) - wsh.echo "isEnableAllowedToDelegate: " + isEnableAllowedToDelegate - end if - if arg = "-enablePasswordNeverExpires" then - isEnablePasswordNeverExpires = getArgValue(index) - wsh.echo "isEnablePasswordNeverExpires: " + isEnablePasswordNeverExpires - end if - if arg = "-disableKerberosAuthentication" then - isDisableKerberosAuthentication = getArgValue(index) - wsh.echo "isDisableKerberosAuthentication: " + isDisableKerberosAuthentication - end if - - index = index + 1 -next - - -Set objService = GetObject("winmgmts://.") -Set oCmdLib = CreateObject( "Microsoft.CmdLib" ) -ComputerName = oCmdLib.gethostname (objService) -if ComputerName = "N/A" then - ComputerName = "" -End If -If ComputerName = "" then - ComputerName = host - -Else - wsh.echo "hostname discovered dynamically." -End If -wsh.echo "hostname: " + ComputerName - -On Error Goto 0 - -Set userGroup = GetObject("WinNT://"&Computername&"/Users,group") -Set Computer= GetObject("WinNT://"&Computername&",computer") - - -If (isUserType) Then - call createUser (user, password, group) -ElseIf (isFileType) Then -' outputFile = ".\createWinUsers.log" - Set fso=CreateObject("Scripting.FileSystemObject") - Set UserFile = fso.OpenTextFile(inputFile,1) - if Err.Number <> 0 then - WScript.StdErr.writeline Err.Description - WScript.Quit(Err.Number) - end if -' Set LogFile = fso.OpenTextFile(""&outputFile&"",2,True) - GroupsCreated=0 - UsersCreated=0 - lineNo=0 - - do while UserFile.AtEndOfStream <> True - Result = "" - - Data = UserFile.Readline - lineNo = lineNo + 1 - wsh.echo "Line# "&Chr(13)&lineNo& ": " + Data - UserAttributes = Split(Data, " ") - - UserName = UserAttributes(0) - Password = UserAttributes(1) - GroupName = UserAttributes(2) - - call createUser (UserName, Password, GroupName) - - loop - - UserFile.close -' LogFile.close -End If - -Result = "Done adding users." -wsh.echo Result - -WScript.Quit(0) - -Function createUser(ByRef UserName, ByRef Password, ByRef GroupName) - CreateUser = True - CreateGroup = True - isGroupMember = false - - if GroupName <> "none" then - isGroupMember = true - for each GroupObject In Computer - if UCASE(GroupObject.name) = UCASE(GroupName) then -' LogFile.WriteLine("Group "&GroupName&" already exists.") - CreateGroup = false - end if - next - else - CreateGroup = false - end if - - if isGroupMember = true then - if CreateGroup then - 'wsh.echo "Creating group " + GroupName - Set objGroup = Computer.Create("group", GroupName) - objGroup.SetInfo - Result = "Created group "&GroupName - else - Set objGroup = GetObject("WinNT://"&Computername&"/"&GroupName&",group") - end if - end if - - for each UserObject In Computer - if UCASE(UserObject.name) = UCASE(UserName) then - Wscript.Echo UserName&": already exists." -' LogFile.WriteLine(UserName&": already exists.") - CreateUser = false - end if - next - - if CreateUser then - wsh.echo "Creating user " + UserName - Set objUser = Computer.Create("user", UserName) - objUser.SetPassword Password - objUser.SetInfo - UserGroup.Add objUser.ADsPath -rem if GroupName <> "none" then -rem objGroup.Add objUser.ADsPath -rem LogFile.WriteLine(UserName&": added to group "&GroupName&".") -rem end if - Result = Result + UserName&" was created." - end if - -set objUserLDAP = getObjUserLDAP(UserName) -'Wscript.Echo objUserLDAP.distinguishedName - -if isEnableTrustedForDelegation = "true" then - wsh.echo "Will enable trusted for delegation" - call enableTrustedForDelegation(objUserLDAP) -end if -if isEnableTrustedForAuthDelegation = "true" then - wsh.echo "Will enable trusted for auth delegation" - call enableTrustedForAuthDelegation(objUserLDAP) -end if -if isEnableAllowedToDelegate = "true" then - wsh.echo "Will enable allowed to delegate" - call enableAllowedToDelegate(objUserLDAP) -end if -if isEnablePasswordNeverExpires = "true" then - wsh.echo "Will enable password never expires" - call enablePasswordNeverExpires(objUserLDAP) -end if -if isDisableKerberosAuthentication = "true" then - wsh.echo "Will disable Kerberos authentication" - call disableKerberosAuthentication(objUserLDAP) -end if - - -' Set objSysInfo = CreateObject("ADSystemInfo") -' Set strDomainOrWorkgroup = objSysInfo.DomainDNSName -' Set objUser = GetObject("WinNT://" & strDomainOrWorkgroup & "/" & _ -' strComputer & "/" & strUser & ",User") - - - if isGroupMember then - set objUser = GetObject("WinNT://"&ComputerName&"/"&UserName&",user") - 'wsh.echo "objUser.ADsPath " + objUser.ADsPath - if objGroup.IsMember(objUserLDAP.ADsPath) then - wsh.echo UserName&": is already a member of group "&GroupName&"." - else - objGroup.Add objUser.ADsPath - wsh.echo UserName + ": added to group " + GroupName + "." - end if - else - wsh.echo UserName&": not added to a group." - end if -End Function - -Function getObjUserLDAP(ByRef UserName) - Set objRootDSE = GetObject("LDAP://rootDSE") - strUser = "LDAP://cn="& UserName &",cn=users," & objRootDSE.Get("defaultNamingContext") - 'Wscript.Echo strUser - set getObjUserLDAP = getobject(strUser) - Wscript.Echo "DN: " + getObjUserLDAP.distinguishedName -End Function - -Function enableTrustedForDelegation(ByRef objUserLDAP) - const ADS_UF_ACCOUNT_TRUSTED = &H80000 - - '<<<<< Enable Account is trusted for delegation >>>>> - intUAC = objUserLDAP.Get("userAccountControl") - if (intUAC AND ADS_UF_ACCOUNT_TRUSTED)=0 Then - objUserLDAP.put "userAccountControl", intUAC XOR ADS_UF_ACCOUNT_TRUSTED - objUserLDAP.setinfo - end if - - Wscript.Echo UserName&": Account is trusted for delegation." -End Function - -Function enableTrustedForAuthDelegation(ByRef objUserLDAP) - const ADS_TRUSTED_TO_AUTH_FOR_DELEGATION = &H1000000 - - '<<<<< Enable Account is trusted for auth delegation >>>>> - intUAC = objUserLDAP.Get("userAccountControl") - if (intUAC AND ADS_TRUSTED_TO_AUTH_FOR_DELEGATION)=0 Then - objUserLDAP.put "userAccountControl", intUAC XOR ADS_TRUSTED_TO_AUTH_FOR_DELEGATION - objUserLDAP.setinfo - end if - - Wscript.Echo UserName&": Account is trusted for auth delegation." -End Function - -Function disableKerberosAuthentication(ByRef objUserLDAP) - const ADS_UF_KERBEROS_PREAUTH = &H400000 - intUAC = objUserLDAP.Get("userAccountControl") - '<<<<< In order for the function to work, we need to enable and disable >>>>> - '<<<<< Enable Do not require Kerberos preauthentication >>>>> - if (intUAC AND ADS_UF_KERBEROS_PREAUTH)=0 Then - objUserLDAP.put "userAccountControl", intUAC XOR ADS_UF_KERBEROS_PREAUTH - objUserLDAP.setinfo - end if - '<<<<< Disable Do not require Kerberos preauthentication >>>>> - if intUAC and ADS_UF_KERBEROS_PREAUTH Then - objUserLDAP.put "userAccountControl", intUAC XOR ADS_UF_KERBEROS_PREAUTH - objUserLDAP.setinfo - end if -End Function - -Function enableAllowedToDelegate(ByRef objUserLDAP) - '<<<<< msDS-AllowedToDelegateTo needs to get set >>>>> - strdelegateSPN = "HTTP/s4u_backend_service" - objUserLDAP.put "msDS-AllowedToDelegateTo", strdelegateSPN - Wscript.Echo UserName&": allowed to delegate." -End Function - -Function enablePasswordNeverExpires(ByRef objUser) - const ADS_UF_DONT_EXPIRE_PASSWD = &H10000 - intUAC = objUser.Get("userAccountControl") - - '<<<<< Enable Password never expires >>>>> - if (intUAC AND ADS_UF_DONT_EXPIRE_PASSWD)=0 Then - objUser.put "userAccountControl", intUAC XOR ADS_UF_DONT_EXPIRE_PASSWD - objUser.setinfo - end if - Wscript.Echo UserName&": Password Never Expires." -End Function - - -Function getArgValue(ByRef index) - 'wsh.echo ">>getArgValue" - if Wscript.Arguments.Count > (index + 1) then - getArgValue = ArgObj(index + 1) - 'Verify a value was given instead of another -option - dashIndex = InStr(getArgValue, "-") - if dashIndex = 1 then - call usage() - end if - else - call usage() - end if - 'wsh.echo "< | -user -password [-group ] [-enableTrustedForDelegation | -enableTrustedForAuthDelegation | -enableAllowedToDelegate | -enablePasswordNeverExpires | -disableKerberosAuthentication]" - Wscript.Quit(1) -End Function diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/kerberos/deleteUserSpn.bat b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/kerberos/deleteUserSpn.bat deleted file mode 100755 index ff086e0dc8b..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/kerberos/deleteUserSpn.bat +++ /dev/null @@ -1,5 +0,0 @@ -set USER=%1 -set SERVICE_NAME=%2 -set HOSTNAME=%3 - -setspn -D %SERVICE_NAME%/%HOSTNAME% %USER% diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/kerberos/localhost.keytab b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/kerberos/localhost.keytab deleted file mode 100644 index d1cf66bb189..00000000000 Binary files a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/kerberos/localhost.keytab and /dev/null differ diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/kerberos/removeWinUsers.vbs b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/kerberos/removeWinUsers.vbs deleted file mode 100755 index 3d3afaa4e0d..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/kerberos/removeWinUsers.vbs +++ /dev/null @@ -1,139 +0,0 @@ -Dim ComputerName, userGroup, objGroup, objUser, ArgObj, user, password, group, inputFile, isUserType, isFileType, isDeleteGroup, host - -Set ArgObj = WScript.Arguments - -If Wscript.Arguments.Count = 0 Then - call usage() -End If - -isUserType = false -isFileType = false -'set initial value for group in case -user & -password are specified without group name. -group = "none" -index = 0 -for each arg In ArgObj - 'wsh.echo "index: "&index - if arg = "-user" then - isUserType = true - if isFileType = true then - wsh.echo "-user and -file cannot be used together" - call usage() - end if - user = getArgValue(index) - wsh.echo "user: ***" - elseif arg = "-password" then - password = getArgValue(index) - wsh.echo "password: ***" - elseif arg = "-group" then - group = getArgValue(index) - wsh.echo "group: " + group - elseif arg = "-file" then - isFileType = true - if isUserType = true then - wsh.echo "-user and -file cannot be used together" - call usage() - end if - inputFile = getArgValue(index) - wsh.echo "file: " + inputFile - elseif arg = "-deleteGroups" then - isDeleteGroup = true - wsh.echo "deleteGroup: " &isDeleteGroup - elseif arg = "-host" then - host = getArgValue(index) - wsh.echo "host: ***" - end if - index = index + 1 -next - -if isDeleteGroup = false then - wsh.echo "No groups will be deleted since -deleteGroups was not specified" -end if - -rem Set objService = GetObject("winmgmts://.") -rem Set oCmdLib = CreateObject( "Microsoft.CmdLib" ) -rem ComputerName = oCmdLib.gethostname (objService) -ComputerName = host -wsh.echo "Computername: " + ComputerName - -Set userGroup = GetObject("WinNT://"&Computername&"/Users,group") -Set fso=CreateObject("Scripting.FileSystemObject") -Set Computer= GetObject("WinNT://"&Computername&",computer") - -If (isUserType) Then - call removeUser (user, group) -ElseIf (isFileType) Then - Set UserFile = fso.OpenTextFile(inputFile,1) - lineNo=0 - - do while UserFile.AtEndOfStream <> True - Result = "" - - Data = UserFile.Readline - lineNo = lineNo + 1 - wsh.echo "Line# "&Chr(13)&lineNo& ": " + Data - UserAttributes = Split(Data, " ") - - user = UserAttributes(0) - if isDeleteGroup = true then - group = UserAttributes(2) - else - group = "none" - end if - - call removeUser(user, group) - - loop - - UserFile.close -End If - -wsh.echo "Done." - -Function removeUser(ByRef UserName, ByRef GroupName) - 'wsh.echo ">>removeUser" - userDeleted = false - groupDeleted = false - for each UserObject In Computer - if UCASE(UserObject.name) = UCASE(UserName) then - Computer.Delete "user", UserName - wsh.echo "User " + UserName + " deleted." - userDeleted = true - end if - next - if GroupName <> "none" then - for each GroupObject In Computer - if UCASE(GroupObject.name) = UCASE(GroupName) then - Computer.Delete "group", GroupName - wsh.echo "Group " + GroupName + " deleted." - groupDeleted = true - end if - next - - if groupDeleted = false then - wsh.echo "group " + GroupName + " not found" - end if - end if - if userDeleted = false then - wsh.echo "user " + UserName + " not found" - end if - 'wsh.echo "< (index + 1) then - getArgValue = ArgObj(index + 1) - 'Verify a value was given instead of another -option - dashIndex = InStr(value, "-") - if dashIndex = 1 then - call usage() - end if - else - call usage() - end if -End Function - -Function usage() - Wscript.Echo "Usage: removeWinUsers.bat" - Wscript.Echo " -file -deleteGroups| -user -password [-group ]" - Wscript.Quit(1) -End Function \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/kerberos/setUserSpn.bat b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/kerberos/setUserSpn.bat deleted file mode 100755 index ee84045ccc9..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/kerberos/setUserSpn.bat +++ /dev/null @@ -1,5 +0,0 @@ -set USER=%1 -set SERVICE_NAME=%2 -set HOSTNAME=%3 - -setspn -A %SERVICE_NAME%/%HOSTNAME% %USER% diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/resources/security/kerberos/jaas.conf b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/resources/security/kerberos/jaas.conf deleted file mode 100755 index 14705ef5647..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/resources/security/kerberos/jaas.conf +++ /dev/null @@ -1,14 +0,0 @@ -ibmKrb5Login { - com.ibm.security.auth.module.Krb5LoginModule required - debug="true"; - }; - -sunKrb5Login { - com.sun.security.auth.module.Krb5LoginModule required - debug="true"; - }; - -sunKrb5LoginRefreshKrb5Config { - com.sun.security.auth.module.Krb5LoginModule required - debug="true" refreshKrb5Config="true"; - }; diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/resources/security/key.jks b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/resources/security/key.jks deleted file mode 100755 index 88e73828621..00000000000 Binary files a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/resources/security/key.jks and /dev/null differ diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/resources/security/ltpa.keys b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/resources/security/ltpa.keys deleted file mode 100755 index e0e7d511ac3..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/resources/security/ltpa.keys +++ /dev/null @@ -1,8 +0,0 @@ -#Sun Jan 15 15:01:21 CST 2012 -com.ibm.websphere.CreationDate=Sun Jan 15 15\:01\:21 CST 2012 -com.ibm.websphere.CreationHost=localhost -com.ibm.websphere.ltpa.Realm=PreGeneratedLTPAKeys -com.ibm.websphere.ltpa.version=1.0 -com.ibm.websphere.ltpa.3DESKey=xpUAUsH4SZc+VuiAqzL+Tz+MfBmb+6vv3/cGjIn+mR4\= -com.ibm.websphere.ltpa.PublicKey=AMan4Qo5MKIeYf26TJbTZwRdYai7rWRVXDwy/6XI1iq+CVxny1O74rE4cn7wXalID05hKwm/HUxvFd72Y3dABzL1bTUpl1uE6SQNePrcdrQC8rmtichsdvY0baiGYexURYP7fbHF5Z70RfQGCPYnuZTB9jsHdh4HJlrOlsx6K2mJAQAB -com.ibm.websphere.ltpa.PrivateKey=TkjZeR/1L6khA7UKNjBRI1T+nbwEWXv1AWVSOCEgpKfLvw8iAkIc7+8I2zfc3j88XciTxDuagepUDoWCXHJ1ithSptZSLnHBASD7Ki1dLTKY7jszPXmIIwoa8YaQFtuuNeSJ7r6r8krSB5ml5sk7aTF0Sed8TFrx1aDEQRIZCovZV8BQX29bBZC99gTqk3chCpcOVRqcxvQRGzdP0PenvaA9afeflV5t4Iw8errfmHjedNVDog90ZVVAeecO+ZLqn7yAHh98ZTdV9IEVyqnFI7XQljrMJsNt3zl/tB7ktQ6VuyxJmlQdDbmvJ+F6DZeR9lVC991a/Ks0i1VKVOrwhPxJYLX2Xz7MWpLu09pwapo\= diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/application_definition/basicauth_war.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/application_definition/basicauth_war.xml deleted file mode 100644 index d07c773302f..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/application_definition/basicauth_war.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/application_definition/formlogin_war.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/application_definition/formlogin_war.xml deleted file mode 100644 index ddda097b963..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/application_definition/formlogin_war.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/application_definition/spnegoTokenHelperFvt_location.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/application_definition/spnegoTokenHelperFvt_location.xml deleted file mode 100644 index db9b4a7ca87..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/application_definition/spnegoTokenHelperFvt_location.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/application_definition/spnegoauth_war.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/application_definition/spnegoauth_war.xml deleted file mode 100644 index 4e85ccf0c44..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/application_definition/spnegoauth_war.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/configs/basicRegistry.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/configs/basicRegistry.xml deleted file mode 100644 index bd844e2f959..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/configs/basicRegistry.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/configs/fatTestPorts.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/configs/fatTestPorts.xml deleted file mode 100644 index 4eeb682be8f..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/configs/fatTestPorts.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/configs/host_info.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/configs/host_info.xml deleted file mode 100644 index 3ccecd83fdf..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/configs/host_info.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/configs/keystore.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/configs/keystore.xml deleted file mode 100644 index b0c0899bb84..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/configs/keystore.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/config/s4u2proxyEnable_s4u2selfNotEnable_defaultConstrained.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/config/s4u2proxyEnable_s4u2selfNotEnable_defaultConstrained.xml deleted file mode 100644 index beb49615313..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/config/s4u2proxyEnable_s4u2selfNotEnable_defaultConstrained.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/config/s4u2proxyNotEnable_s4u2selfEnable_defaultConstrained.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/config/s4u2proxyNotEnable_s4u2selfEnable_defaultConstrained.xml deleted file mode 100644 index 282b6f4e646..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/config/s4u2proxyNotEnable_s4u2selfEnable_defaultConstrained.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/config/s4u2proxyNotEnable_s4u2selfNotEnable_defaultConstrained.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/config/s4u2proxyNotEnable_s4u2selfNotEnable_defaultConstrained.xml deleted file mode 100644 index d54e5715869..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/config/s4u2proxyNotEnable_s4u2selfNotEnable_defaultConstrained.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/jaas_config/jaasConfig_jdk11.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/jaas_config/jaasConfig_jdk11.xml deleted file mode 100644 index 0936d398da0..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/jaas_config/jaasConfig_jdk11.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/jaas_config/jaasConfig_jdk8.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/jaas_config/jaasConfig_jdk8.xml deleted file mode 100644 index ca91d9b18ff..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/jaas_config/jaasConfig_jdk8.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/jaas_config/jaasLoginContextEntry.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/jaas_config/jaasLoginContextEntry.xml deleted file mode 100644 index 8edbb2d8cdd..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/jaas_config/jaasLoginContextEntry.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2ProxyEnabled_false.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2ProxyEnabled_false.xml deleted file mode 100755 index 29be8648804..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2ProxyEnabled_false.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2ProxyEnabled_false_jdk11.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2ProxyEnabled_false_jdk11.xml deleted file mode 100644 index db052cd6e44..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2ProxyEnabled_false_jdk11.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2Proxy_BasicAuth.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2Proxy_BasicAuth.xml deleted file mode 100755 index a291e20d923..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2Proxy_BasicAuth.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2Proxy_BasicAuth_jdk11.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2Proxy_BasicAuth_jdk11.xml deleted file mode 100644 index dbaab720379..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2Proxy_BasicAuth_jdk11.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2Proxy_noFeature.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2Proxy_noFeature.xml deleted file mode 100755 index 158c68392f4..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2Proxy_noFeature.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2Proxy_noFeature_jdk11.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2Proxy_noFeature_jdk11.xml deleted file mode 100644 index 66c8aba503f..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2Proxy_noFeature_jdk11.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2Proxy_serverSpnego.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2Proxy_serverSpnego.xml deleted file mode 100755 index ada4e785b82..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2Proxy_serverSpnego.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2Proxy_serverSpnego_jdk11.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2Proxy_serverSpnego_jdk11.xml deleted file mode 100644 index 12a10cb61b4..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2Proxy_serverSpnego_jdk11.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/no_spnegoFeature.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/no_spnegoFeature.xml deleted file mode 100644 index 450bed31753..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/no_spnegoFeature.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/serverSpnego.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/serverSpnego.xml deleted file mode 100644 index 38f98367bc6..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/serverSpnego.xml +++ /dev/null @@ -1,86 +0,0 @@ - - - - - appSecurity-2.0 - jsp-2.3 - servlet-3.1 - spnego-1.0 - securitylibertyinternals-1.0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/config/S4U2SelfJaasConfig.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/config/S4U2SelfJaasConfig.xml deleted file mode 100644 index d32dcfd0b0c..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/config/S4U2SelfJaasConfig.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/config/S4U2SelfJaasConfig_jdk11.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/config/S4U2SelfJaasConfig_jdk11.xml deleted file mode 100644 index 95a14ba9153..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/config/S4U2SelfJaasConfig_jdk11.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/config/S4U2SelfStandard_config.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/config/S4U2SelfStandard_config.xml deleted file mode 100644 index e8dff019e17..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/config/S4U2SelfStandard_config.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/no_spnegoFeature.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/no_spnegoFeature.xml deleted file mode 100644 index 450bed31753..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/no_spnegoFeature.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverNoConstrainedDelegationFeature.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverNoConstrainedDelegationFeature.xml deleted file mode 100644 index 2494e7d4b52..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverNoConstrainedDelegationFeature.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - appSecurity-2.0 - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverNoConstrainedDelegationFeature_jdk11.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverNoConstrainedDelegationFeature_jdk11.xml deleted file mode 100644 index da2ae8b6f8e..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverNoConstrainedDelegationFeature_jdk11.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - appSecurity-2.0 - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverS4U2BasicAuth.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverS4U2BasicAuth.xml deleted file mode 100644 index c8ccff706c4..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverS4U2BasicAuth.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverS4U2BasicAuth_jdk11.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverS4U2BasicAuth_jdk11.xml deleted file mode 100644 index 1c2776b2e8b..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverS4U2BasicAuth_jdk11.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverS4U2Self.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverS4U2Self.xml deleted file mode 100644 index b724a1c935c..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverS4U2Self.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverS4U2SelfNotEnabled.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverS4U2SelfNotEnabled.xml deleted file mode 100644 index 58f25885a89..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverS4U2SelfNotEnabled.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverS4U2SelfNotEnabled_jdk11.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverS4U2SelfNotEnabled_jdk11.xml deleted file mode 100644 index a95289e1310..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverS4U2SelfNotEnabled_jdk11.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverS4U2Self_jdk11.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverS4U2Self_jdk11.xml deleted file mode 100644 index c05426c740a..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverS4U2Self_jdk11.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverSpnego.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverSpnego.xml deleted file mode 100644 index d763e7e0af9..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverSpnego.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverSpnego_jdk11.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverSpnego_jdk11.xml deleted file mode 100644 index b5a3a6b3298..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverSpnego_jdk11.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/features/constrained_delegation.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/features/constrained_delegation.xml deleted file mode 100644 index ddef8c7bcef..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/features/constrained_delegation.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - jsp-2.3 - servlet-3.1 - securitylibertyinternals-1.0 - constrainedDelegation-1.0 - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/features/no_spnego_feature.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/features/no_spnego_feature.xml deleted file mode 100644 index 560dd159e81..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/features/no_spnego_feature.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - appSecurity-2.0 - jsp-2.3 - servlet-3.1 - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/features/security_feature.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/features/security_feature.xml deleted file mode 100644 index 84c72b056a8..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/features/security_feature.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - appSecurity-2.0 - jsp-2.3 - securitylibertyinternals-1.0 - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/features/security_spnego_features.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/features/security_spnego_features.xml deleted file mode 100644 index d864804a767..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/features/security_spnego_features.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/features/security_spnego_no_servlet31_features.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/features/security_spnego_no_servlet31_features.xml deleted file mode 100644 index add0a5a708f..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/features/security_spnego_no_servlet31_features.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/features/servlet_3_1_feature.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/features/servlet_3_1_feature.xml deleted file mode 100644 index 2544637f3d6..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/features/servlet_3_1_feature.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - servlet-3.1 - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/features/spnego_feature.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/features/spnego_feature.xml deleted file mode 100644 index 183f1d4665a..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/features/spnego_feature.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - spnego-1.0 - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/jaas_loginmodule_serversettings/jdk11_jaasLoginModule.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/jaas_loginmodule_serversettings/jdk11_jaasLoginModule.xml deleted file mode 100644 index 7f827b94c48..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/jaas_loginmodule_serversettings/jdk11_jaasLoginModule.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/jaas_loginmodule_serversettings/jdk8_jaasLoginModule.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/jaas_loginmodule_serversettings/jdk8_jaasLoginModule.xml deleted file mode 100644 index 16845d821d0..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/jaas_loginmodule_serversettings/jdk8_jaasLoginModule.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/jwt/serversettings/standard_config_withJwtSsoFeature.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/jwt/serversettings/standard_config_withJwtSsoFeature.xml deleted file mode 100644 index 30a7289ab61..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/jwt/serversettings/standard_config_withJwtSsoFeature.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - jwtSso-1.0 - - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/authfilters/simpleservlet_contains.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/authfilters/simpleservlet_contains.xml deleted file mode 100644 index b09c900c0f7..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/authfilters/simpleservlet_contains.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/authfilters/spnegoTokenHelper_simpleServlet_contains.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/authfilters/spnegoTokenHelper_simpleServlet_contains.xml deleted file mode 100644 index 5506ddb0779..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/authfilters/spnegoTokenHelper_simpleServlet_contains.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/configs/allowLocalhost_false.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/configs/allowLocalhost_false.xml deleted file mode 100644 index 9861be1ced8..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/configs/allowLocalhost_false.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/configs/spnego_myauthfilter.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/configs/spnego_myauthfilter.xml deleted file mode 100644 index 4f7f966520e..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/configs/spnego_myauthfilter.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/configs/trimkerberosrealm_true.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/configs/trimkerberosrealm_true.xml deleted file mode 100644 index bf623ff8cf4..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/configs/trimkerberosrealm_true.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/no_spnegoFeature.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/no_spnegoFeature.xml deleted file mode 100644 index fa1644da4fe..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/no_spnegoFeature.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterBadURLPattern.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterBadURLPattern.xml deleted file mode 100644 index 8aa3b369a73..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterBadURLPattern.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterMatchTypeNotContain.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterMatchTypeNotContain.xml deleted file mode 100644 index 6035fcbd6a9..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterMatchTypeNotContain.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterRefNoElementSpecified.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterRefNoElementSpecified.xml deleted file mode 100644 index 827a927396e..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterRefNoElementSpecified.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterRefNoIdAttributeSpecified.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterRefNoIdAttributeSpecified.xml deleted file mode 100644 index 2a6b8544e25..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterRefNoIdAttributeSpecified.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterRemoteAddressWithMalformedIp.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterRemoteAddressWithMalformedIp.xml deleted file mode 100644 index f4398e67924..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterRemoteAddressWithMalformedIp.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterWebAppContains.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterWebAppContains.xml deleted file mode 100644 index 93cd12ee92c..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterWebAppContains.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterWebAppNotContain.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterWebAppNotContain.xml deleted file mode 100644 index 6be8ed55b82..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterWebAppNotContain.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverKrbConfigNotFound_PathNotFound.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverKrbConfigNotFound_PathNotFound.xml deleted file mode 100644 index 60bce0a2763..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverKrbConfigNotFound_PathNotFound.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverKrbConfigNotSpecified.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverKrbConfigNotSpecified.xml deleted file mode 100644 index ee30c90b5a0..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverKrbConfigNotSpecified.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverKrbKeytabNotFound_PathNotFound.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverKrbKeytabNotFound_PathNotFound.xml deleted file mode 100644 index 4d1c83bbbb6..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverKrbKeytabNotFound_PathNotFound.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverKrbKeytabNotSpecified.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverKrbKeytabNotSpecified.xml deleted file mode 100644 index 67e39f14533..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverKrbKeytabNotSpecified.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverMultipleAuthFiltersUseBad.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverMultipleAuthFiltersUseBad.xml deleted file mode 100644 index 94a3733dfc9..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverMultipleAuthFiltersUseBad.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverMultipleAuthFiltersUseGood.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverMultipleAuthFiltersUseGood.xml deleted file mode 100644 index 94d74923a0f..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverMultipleAuthFiltersUseGood.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverNoSpnegoFeature.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverNoSpnegoFeature.xml deleted file mode 100644 index 34dc4c1a41e..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverNoSpnegoFeature.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverRequestURLBadUrlPattern.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverRequestURLBadUrlPattern.xml deleted file mode 100644 index 96aa7ecc60a..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverRequestURLBadUrlPattern.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverSpnegoNoAuthFilter.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverSpnegoNoAuthFilter.xml deleted file mode 100644 index 42bd730590f..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverSpnegoNoAuthFilter.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverSpnegoWithInvalidSPNAttribute.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverSpnegoWithInvalidSPNAttribute.xml deleted file mode 100644 index c2f35ef76ca..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverSpnegoWithInvalidSPNAttribute.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverSpnegoWithSPNAttribute.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverSpnegoWithSPNAttribute.xml deleted file mode 100644 index 97343a8a01a..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/serverSpnegoWithSPNAttribute.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/spnegoDefaultConfig.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/spnegoDefaultConfig.xml deleted file mode 100644 index 1d5f7f43e46..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/dynamic_configs/spnegoDefaultConfig.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/serversettings/no_spnegoFeature.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/serversettings/no_spnegoFeature.xml deleted file mode 100644 index 450bed31753..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/serversettings/no_spnegoFeature.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/serversettings/serverSpnego.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/serversettings/serverSpnego.xml deleted file mode 100644 index fa03ab11894..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/serversettings/serverSpnego.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/serversettings/serverSpnego_jdk11.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/serversettings/serverSpnego_jdk11.xml deleted file mode 100644 index 665ba42ae8f..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/serversettings/serverSpnego_jdk11.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/serversettings/standard_config.xml b/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/serversettings/standard_config.xml deleted file mode 100644 index 410bd547ef1..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.1/publish/files/server_modules/spnego/serversettings/standard_config.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.2/bnd.bnd b/dev/com.ibm.ws.security.spnego_fat.2/bnd.bnd index c8c3d5db229..5ea3962257b 100644 --- a/dev/com.ibm.ws.security.spnego_fat.2/bnd.bnd +++ b/dev/com.ibm.ws.security.spnego_fat.2/bnd.bnd @@ -28,6 +28,7 @@ fat.project: true com.ibm.ws.security.authentication.filter;version=latest,\ com.ibm.ws.security.jaas.common;version=latest,\ com.ibm.ws.security.kerberos.java8;version=latest,\ + com.ibm.ws.security.spnego_fat;version=latest,\ com.ibm.ws.security.spnego.fat.common;version=latest,\ com.ibm.ws.security.token;version=latest,\ com.ibm.ws.security.token.s4u2;version=latest,\ diff --git a/dev/com.ibm.ws.security.spnego_fat.2/build.gradle b/dev/com.ibm.ws.security.spnego_fat.2/build.gradle index c592f92de0f..25cc1c7db77 100644 --- a/dev/com.ibm.ws.security.spnego_fat.2/build.gradle +++ b/dev/com.ibm.ws.security.spnego_fat.2/build.gradle @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2020 IBM Corporation and others. + * Copyright (c) 2020, 2021 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -36,6 +36,16 @@ autoFVT.dependsOn ':com.ibm.ws.security.spnego.fat.common:SPNEGOTokenHelperFVT_E autoFVT.dependsOn ':com.ibm.ws.webcontainer.security_test.servlets:war' autoFVT.doLast { + /****************************************************************** + * Copy spnego_fat files. + ******************************************************************/ + copy { + from new File(project(':com.ibm.ws.security.spnego_fat').projectDir, 'publish/files') + into new File(autoFvtDir, 'lib/LibertyFATTestFiles') + include '**' + } + + /****************************************************************** * Setup server: AuthFilterElementTest ******************************************************************/ @@ -51,7 +61,7 @@ autoFVT.doLast { rename 'basicauth.zip', 'spnegoauth.war' } copy { - from 'publish/files/server_modules/' + from new File(project(':com.ibm.ws.security.spnego_fat').projectDir, 'publish/files/server_modules') into new File(autoFvtDir, 'publish/servers/' + server + '/imports') include 'application_definition/**.xml' include 'configs/**.xml' @@ -60,7 +70,7 @@ autoFVT.doLast { include 'spnego/serversettings/**.xml' } copy { - from 'publish/files/resources/security' + from new File(project(':com.ibm.ws.security.spnego_fat').projectDir, 'publish/files/resources/security') into new File(autoFvtDir, 'publish/servers/' + server + '/resources/security') include '**' } @@ -71,7 +81,7 @@ autoFVT.doLast { ******************************************************************/ server = 'com.ibm.ws.security.spnego.fat.setup' copy { - from 'publish/files/resources/security' + from new File(project(':com.ibm.ws.security.spnego_fat').projectDir, 'publish/files/resources/security') into new File(autoFvtDir, 'publish/servers/' + server + '/resources/security') include '**' } @@ -86,8 +96,8 @@ autoFVT.doLast { into new File(autoFvtDir, 'publish/servers/' + server + '/apps') rename 'basicauth.zip', 'basicauth.war' } - copy { - from 'publish/files/server_modules/' + copy { + from new File(project(':com.ibm.ws.security.spnego_fat').projectDir, 'publish/files/server_modules') into new File(autoFvtDir, 'publish/servers/' + server + '/imports') include 'application_definition/**.xml' include 'configs/**.xml' @@ -97,7 +107,7 @@ autoFVT.doLast { include 'spnego/serversettings/**.xml' } copy { - from 'publish/files/resources/security' + from new File(project(':com.ibm.ws.security.spnego_fat').projectDir, 'publish/files/resources/security') into new File(autoFvtDir, 'publish/servers/' + server + '/resources/security') include '**' } @@ -113,7 +123,7 @@ autoFVT.doLast { rename 'basicauth.zip', 'basicauth.war' } copy { - from 'publish/files/server_modules/' + from new File(project(':com.ibm.ws.security.spnego_fat').projectDir, 'publish/files/server_modules') into new File(autoFvtDir, 'publish/servers/' + server + '/imports') include 'application_definition/**.xml' include 'configs/**.xml' @@ -123,7 +133,7 @@ autoFVT.doLast { include 'spnego/serversettings/**.xml' } copy { - from 'publish/files/resources/security' + from new File(project(':com.ibm.ws.security.spnego_fat').projectDir, 'publish/files/resources/security') into new File(autoFvtDir, 'publish/servers/' + server + '/resources/security') include '**' } diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/clientcert/LDAPUser1.jks b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/clientcert/LDAPUser1.jks deleted file mode 100755 index c0a773f3652..00000000000 Binary files a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/clientcert/LDAPUser1.jks and /dev/null differ diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/clientcert/LDAPUser1AD.jks b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/clientcert/LDAPUser1AD.jks deleted file mode 100755 index be7851e1321..00000000000 Binary files a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/clientcert/LDAPUser1AD.jks and /dev/null differ diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/clientcert/LDAPUser1Invalid.jks b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/clientcert/LDAPUser1Invalid.jks deleted file mode 100755 index 8f0b8c92d1f..00000000000 Binary files a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/clientcert/LDAPUser1Invalid.jks and /dev/null differ diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/clientcert/LDAPUser2.jks b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/clientcert/LDAPUser2.jks deleted file mode 100755 index 508959ab266..00000000000 Binary files a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/clientcert/LDAPUser2.jks and /dev/null differ diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/clientcert/LDAPUser5.jks b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/clientcert/LDAPUser5.jks deleted file mode 100755 index e7fc1596b53..00000000000 Binary files a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/clientcert/LDAPUser5.jks and /dev/null differ diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/clientcert/invalidUser.jks b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/clientcert/invalidUser.jks deleted file mode 100755 index 571db34214e..00000000000 Binary files a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/clientcert/invalidUser.jks and /dev/null differ diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/errorPages/NtlmErrorPageWithBadContType.jsp b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/errorPages/NtlmErrorPageWithBadContType.jsp deleted file mode 100755 index f22b3109c05..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/errorPages/NtlmErrorPageWithBadContType.jsp +++ /dev/null @@ -1,9 +0,0 @@ - - - - My NTLM custom error page. - - - My NTLM custom message - SPNEGO service detected NTLM Token. -

Please login to the application using the normal login page. - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/errorPages/NtlmErrorPageWithContTypeAndEncode.jsp b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/errorPages/NtlmErrorPageWithContTypeAndEncode.jsp deleted file mode 100755 index 10fc952bc01..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/errorPages/NtlmErrorPageWithContTypeAndEncode.jsp +++ /dev/null @@ -1,9 +0,0 @@ - - - - My NTLM custom error page. - - - My NTLM custom message - SPNEGO service detected NTLM Token. -

Please login to the application using the normal login page. - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/errorPages/SpnegoErrorPageWithBadContType.jsp b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/errorPages/SpnegoErrorPageWithBadContType.jsp deleted file mode 100755 index f59268d5dbc..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/errorPages/SpnegoErrorPageWithBadContType.jsp +++ /dev/null @@ -1,9 +0,0 @@ - - - - My SPNEGO custom error page. - - - My SPNEGO custom message - SPNEGO service doesn't work on this client. - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/errorPages/SpnegoErrorPageWithContTypeAndEncode.jsp b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/errorPages/SpnegoErrorPageWithContTypeAndEncode.jsp deleted file mode 100755 index 232d704440d..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/errorPages/SpnegoErrorPageWithContTypeAndEncode.jsp +++ /dev/null @@ -1,9 +0,0 @@ - - - - My SPNEGO custom error page. - - - My SPNEGO custom message - SPNEGO service doesn't work on this client. - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/errorPages/myNtlmTokenReceivedErrorPage.jsp b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/errorPages/myNtlmTokenReceivedErrorPage.jsp deleted file mode 100755 index d9d770825f6..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/errorPages/myNtlmTokenReceivedErrorPage.jsp +++ /dev/null @@ -1 +0,0 @@ -My NTLM custom error page.My NTLM custom message - SPNEGO service detected NTLM Token.

Please login to the application using the normal login page. \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/errorPages/mySpnegoNotSupportedErrorPage.jsp b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/errorPages/mySpnegoNotSupportedErrorPage.jsp deleted file mode 100755 index e359bc2180e..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/errorPages/mySpnegoNotSupportedErrorPage.jsp +++ /dev/null @@ -1 +0,0 @@ -My SPNEGO custom error page.My SPNEGO custom message - SPNEGO service doesn't work on this client. \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/internalfeatures/securitylibertyinternals-1.0.mf b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/internalfeatures/securitylibertyinternals-1.0.mf deleted file mode 100755 index 60432251661..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/internalfeatures/securitylibertyinternals-1.0.mf +++ /dev/null @@ -1,10 +0,0 @@ -Subsystem-ManifestVersion: 1 -Subsystem-SymbolicName: securitylibertyinternals-1.0; visibility:=public -Subsystem-Version: 1.0.0 -Subsystem-Type: osgi.subsystem.feature -IBM-API-Package: com.ibm.ws.security.authentication; type="internal", - com.ibm.ws.security.authentication.principals; type="internal", - com.ibm.ws.security.authentication.utility; type="internal", - org.osgi.framework; type="internal", - com.ibm.websphere.ras; type="internal" -IBM-Feature-Version: 2 diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/kerberos/addSpnToKeytab.bat b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/kerberos/addSpnToKeytab.bat deleted file mode 100755 index 897635ce751..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/kerberos/addSpnToKeytab.bat +++ /dev/null @@ -1,9 +0,0 @@ -set USER=%1 -set PASSWORD=%2 -set SERVICE_NAME=%3 -set HOSTNAME=%4 -set KEYTAB=%5 -set REALM=%6 - -setspn -A %SERVICE_NAME%/%HOSTNAME% %USER% -ktpass -in %KEYTAB% -out %KEYTAB% -princ %SERVICE_NAME%/%HOSTNAME%@%REALM% -mapUser %USER%@%REALM% -mapOp add -pass %PASSWORD% -crypto RC4-HMAC-NT -kvno 0 \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/kerberos/createUserAndSetSpn.bat b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/kerberos/createUserAndSetSpn.bat deleted file mode 100755 index e0423c0f0c1..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/kerberos/createUserAndSetSpn.bat +++ /dev/null @@ -1,31 +0,0 @@ -set USER=%1 -set PASSWORD=%2 -set SERVICE_NAME=%3 -set HOSTNAME=%4 -set KDC=%5 - -set OP1=%6 -set OP2=%7 -set OP3=%8 -set OP4=%9 -shift -shift -shift -shift -shift -shift -shift -shift -shift -set OP5=%1 -set OP6=%2 -set OP7=%3 -set OP8=%4 -set OP9=%5 -set OP10=%6 -set OP11=%7 -set OP12=%8 - -cscript removeWinUsers.vbs -user %USER% -host %KDC% -cscript createWinUser.vbs -user %USER% -password %PASSWORD% -host %KDC% %OP1% %OP2% %OP3% %OP4% %OP5% %OP6% %OP7% %OP8% %OP9% %OP10% %OP11% %OP12% -setspn -a %SERVICE_NAME%/%HOSTNAME% %USER% diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/kerberos/createWinUser.vbs b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/kerberos/createWinUser.vbs deleted file mode 100755 index 0d363a3fe40..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/kerberos/createWinUser.vbs +++ /dev/null @@ -1,322 +0,0 @@ -On Error Resume Next -Dim ComputerName, userGroup, objGroup, objUser, ArgObj, user, password, group, inputFile, outputFile, isUserType, isFileType, host -Dim isEnableTrustedForDelegation, isEnableTrustedForAuthDelegation, isEnableAllowedToDelegate, isEnablePasswordNeverExpires, isDisableKerberosAuthentication - -Set ArgObj = WScript.Arguments - -If Wscript.Arguments.Count = 0 Then - call usage() -End If - -isUserType = false -isFileType = false -isEnableTrustedForDelegation = false -isEnableTrustedForAuthDelegation = false -isEnableAllowedToDelegate = false -isEnablePasswordNeverExpires = false -isDisableKerberosAuthentication = false -'set initial value for group in case -user & -password are specified without group name. -group = "none" -index = 0 -for each arg In ArgObj - 'wsh.echo "index: "&index - 'wsh.echo "arg: "&arg - if arg = "-user" then - isUserType = true - if isFileType = true then - wsh.echo "-user and -file cannot be used together" - call usage() - end if - user = getArgValue(index) - wsh.echo "user: ***" - end if - if arg = "-password" then - password = getArgValue(index) - wsh.echo "password: ***" - end if - if arg = "-group" then - group = getArgValue(index) - wsh.echo "group: " + group - end if - if arg = "-file" then - isFileType = true - if isUserType = true then - wsh.echo "-user and -file cannot be used together" - call usage() - end if - inputFile = getArgValue(index) - wsh.echo "file: " + inputFile - end if - if arg = "-host" then - host = getArgValue(index) - wsh.echo "host: ***" - end if - if arg = "-enableTrustedForDelegation" then - isEnableTrustedForDelegation = getArgValue(index) - wsh.echo "isEnableTrustedForDelegation: " + isEnableTrustedForDelegation - end if - if arg = "-enableTrustedForAuthDelegation" then - isEnableTrustedForAuthDelegation = getArgValue(index) - wsh.echo "isEnableTrustedForAuthDelegation: " + isEnableTrustedForAuthDelegation - end if - if arg = "-enableAllowedToDelegate" then - isEnableAllowedToDelegate = getArgValue(index) - wsh.echo "isEnableAllowedToDelegate: " + isEnableAllowedToDelegate - end if - if arg = "-enablePasswordNeverExpires" then - isEnablePasswordNeverExpires = getArgValue(index) - wsh.echo "isEnablePasswordNeverExpires: " + isEnablePasswordNeverExpires - end if - if arg = "-disableKerberosAuthentication" then - isDisableKerberosAuthentication = getArgValue(index) - wsh.echo "isDisableKerberosAuthentication: " + isDisableKerberosAuthentication - end if - - index = index + 1 -next - - -Set objService = GetObject("winmgmts://.") -Set oCmdLib = CreateObject( "Microsoft.CmdLib" ) -ComputerName = oCmdLib.gethostname (objService) -if ComputerName = "N/A" then - ComputerName = "" -End If -If ComputerName = "" then - ComputerName = host - -Else - wsh.echo "hostname discovered dynamically." -End If -wsh.echo "hostname: " + ComputerName - -On Error Goto 0 - -Set userGroup = GetObject("WinNT://"&Computername&"/Users,group") -Set Computer= GetObject("WinNT://"&Computername&",computer") - - -If (isUserType) Then - call createUser (user, password, group) -ElseIf (isFileType) Then -' outputFile = ".\createWinUsers.log" - Set fso=CreateObject("Scripting.FileSystemObject") - Set UserFile = fso.OpenTextFile(inputFile,1) - if Err.Number <> 0 then - WScript.StdErr.writeline Err.Description - WScript.Quit(Err.Number) - end if -' Set LogFile = fso.OpenTextFile(""&outputFile&"",2,True) - GroupsCreated=0 - UsersCreated=0 - lineNo=0 - - do while UserFile.AtEndOfStream <> True - Result = "" - - Data = UserFile.Readline - lineNo = lineNo + 1 - wsh.echo "Line# "&Chr(13)&lineNo& ": " + Data - UserAttributes = Split(Data, " ") - - UserName = UserAttributes(0) - Password = UserAttributes(1) - GroupName = UserAttributes(2) - - call createUser (UserName, Password, GroupName) - - loop - - UserFile.close -' LogFile.close -End If - -Result = "Done adding users." -wsh.echo Result - -WScript.Quit(0) - -Function createUser(ByRef UserName, ByRef Password, ByRef GroupName) - CreateUser = True - CreateGroup = True - isGroupMember = false - - if GroupName <> "none" then - isGroupMember = true - for each GroupObject In Computer - if UCASE(GroupObject.name) = UCASE(GroupName) then -' LogFile.WriteLine("Group "&GroupName&" already exists.") - CreateGroup = false - end if - next - else - CreateGroup = false - end if - - if isGroupMember = true then - if CreateGroup then - 'wsh.echo "Creating group " + GroupName - Set objGroup = Computer.Create("group", GroupName) - objGroup.SetInfo - Result = "Created group "&GroupName - else - Set objGroup = GetObject("WinNT://"&Computername&"/"&GroupName&",group") - end if - end if - - for each UserObject In Computer - if UCASE(UserObject.name) = UCASE(UserName) then - Wscript.Echo UserName&": already exists." -' LogFile.WriteLine(UserName&": already exists.") - CreateUser = false - end if - next - - if CreateUser then - wsh.echo "Creating user " + UserName - Set objUser = Computer.Create("user", UserName) - objUser.SetPassword Password - objUser.SetInfo - UserGroup.Add objUser.ADsPath -rem if GroupName <> "none" then -rem objGroup.Add objUser.ADsPath -rem LogFile.WriteLine(UserName&": added to group "&GroupName&".") -rem end if - Result = Result + UserName&" was created." - end if - -set objUserLDAP = getObjUserLDAP(UserName) -'Wscript.Echo objUserLDAP.distinguishedName - -if isEnableTrustedForDelegation = "true" then - wsh.echo "Will enable trusted for delegation" - call enableTrustedForDelegation(objUserLDAP) -end if -if isEnableTrustedForAuthDelegation = "true" then - wsh.echo "Will enable trusted for auth delegation" - call enableTrustedForAuthDelegation(objUserLDAP) -end if -if isEnableAllowedToDelegate = "true" then - wsh.echo "Will enable allowed to delegate" - call enableAllowedToDelegate(objUserLDAP) -end if -if isEnablePasswordNeverExpires = "true" then - wsh.echo "Will enable password never expires" - call enablePasswordNeverExpires(objUserLDAP) -end if -if isDisableKerberosAuthentication = "true" then - wsh.echo "Will disable Kerberos authentication" - call disableKerberosAuthentication(objUserLDAP) -end if - - -' Set objSysInfo = CreateObject("ADSystemInfo") -' Set strDomainOrWorkgroup = objSysInfo.DomainDNSName -' Set objUser = GetObject("WinNT://" & strDomainOrWorkgroup & "/" & _ -' strComputer & "/" & strUser & ",User") - - - if isGroupMember then - set objUser = GetObject("WinNT://"&ComputerName&"/"&UserName&",user") - 'wsh.echo "objUser.ADsPath " + objUser.ADsPath - if objGroup.IsMember(objUserLDAP.ADsPath) then - wsh.echo UserName&": is already a member of group "&GroupName&"." - else - objGroup.Add objUser.ADsPath - wsh.echo UserName + ": added to group " + GroupName + "." - end if - else - wsh.echo UserName&": not added to a group." - end if -End Function - -Function getObjUserLDAP(ByRef UserName) - Set objRootDSE = GetObject("LDAP://rootDSE") - strUser = "LDAP://cn="& UserName &",cn=users," & objRootDSE.Get("defaultNamingContext") - 'Wscript.Echo strUser - set getObjUserLDAP = getobject(strUser) - Wscript.Echo "DN: " + getObjUserLDAP.distinguishedName -End Function - -Function enableTrustedForDelegation(ByRef objUserLDAP) - const ADS_UF_ACCOUNT_TRUSTED = &H80000 - - '<<<<< Enable Account is trusted for delegation >>>>> - intUAC = objUserLDAP.Get("userAccountControl") - if (intUAC AND ADS_UF_ACCOUNT_TRUSTED)=0 Then - objUserLDAP.put "userAccountControl", intUAC XOR ADS_UF_ACCOUNT_TRUSTED - objUserLDAP.setinfo - end if - - Wscript.Echo UserName&": Account is trusted for delegation." -End Function - -Function enableTrustedForAuthDelegation(ByRef objUserLDAP) - const ADS_TRUSTED_TO_AUTH_FOR_DELEGATION = &H1000000 - - '<<<<< Enable Account is trusted for auth delegation >>>>> - intUAC = objUserLDAP.Get("userAccountControl") - if (intUAC AND ADS_TRUSTED_TO_AUTH_FOR_DELEGATION)=0 Then - objUserLDAP.put "userAccountControl", intUAC XOR ADS_TRUSTED_TO_AUTH_FOR_DELEGATION - objUserLDAP.setinfo - end if - - Wscript.Echo UserName&": Account is trusted for auth delegation." -End Function - -Function disableKerberosAuthentication(ByRef objUserLDAP) - const ADS_UF_KERBEROS_PREAUTH = &H400000 - intUAC = objUserLDAP.Get("userAccountControl") - '<<<<< In order for the function to work, we need to enable and disable >>>>> - '<<<<< Enable Do not require Kerberos preauthentication >>>>> - if (intUAC AND ADS_UF_KERBEROS_PREAUTH)=0 Then - objUserLDAP.put "userAccountControl", intUAC XOR ADS_UF_KERBEROS_PREAUTH - objUserLDAP.setinfo - end if - '<<<<< Disable Do not require Kerberos preauthentication >>>>> - if intUAC and ADS_UF_KERBEROS_PREAUTH Then - objUserLDAP.put "userAccountControl", intUAC XOR ADS_UF_KERBEROS_PREAUTH - objUserLDAP.setinfo - end if -End Function - -Function enableAllowedToDelegate(ByRef objUserLDAP) - '<<<<< msDS-AllowedToDelegateTo needs to get set >>>>> - strdelegateSPN = "HTTP/s4u_backend_service" - objUserLDAP.put "msDS-AllowedToDelegateTo", strdelegateSPN - Wscript.Echo UserName&": allowed to delegate." -End Function - -Function enablePasswordNeverExpires(ByRef objUser) - const ADS_UF_DONT_EXPIRE_PASSWD = &H10000 - intUAC = objUser.Get("userAccountControl") - - '<<<<< Enable Password never expires >>>>> - if (intUAC AND ADS_UF_DONT_EXPIRE_PASSWD)=0 Then - objUser.put "userAccountControl", intUAC XOR ADS_UF_DONT_EXPIRE_PASSWD - objUser.setinfo - end if - Wscript.Echo UserName&": Password Never Expires." -End Function - - -Function getArgValue(ByRef index) - 'wsh.echo ">>getArgValue" - if Wscript.Arguments.Count > (index + 1) then - getArgValue = ArgObj(index + 1) - 'Verify a value was given instead of another -option - dashIndex = InStr(getArgValue, "-") - if dashIndex = 1 then - call usage() - end if - else - call usage() - end if - 'wsh.echo "< | -user -password [-group ] [-enableTrustedForDelegation | -enableTrustedForAuthDelegation | -enableAllowedToDelegate | -enablePasswordNeverExpires | -disableKerberosAuthentication]" - Wscript.Quit(1) -End Function diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/kerberos/deleteUserSpn.bat b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/kerberos/deleteUserSpn.bat deleted file mode 100755 index ff086e0dc8b..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/kerberos/deleteUserSpn.bat +++ /dev/null @@ -1,5 +0,0 @@ -set USER=%1 -set SERVICE_NAME=%2 -set HOSTNAME=%3 - -setspn -D %SERVICE_NAME%/%HOSTNAME% %USER% diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/kerberos/localhost.keytab b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/kerberos/localhost.keytab deleted file mode 100644 index d1cf66bb189..00000000000 Binary files a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/kerberos/localhost.keytab and /dev/null differ diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/kerberos/removeWinUsers.vbs b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/kerberos/removeWinUsers.vbs deleted file mode 100755 index 3d3afaa4e0d..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/kerberos/removeWinUsers.vbs +++ /dev/null @@ -1,139 +0,0 @@ -Dim ComputerName, userGroup, objGroup, objUser, ArgObj, user, password, group, inputFile, isUserType, isFileType, isDeleteGroup, host - -Set ArgObj = WScript.Arguments - -If Wscript.Arguments.Count = 0 Then - call usage() -End If - -isUserType = false -isFileType = false -'set initial value for group in case -user & -password are specified without group name. -group = "none" -index = 0 -for each arg In ArgObj - 'wsh.echo "index: "&index - if arg = "-user" then - isUserType = true - if isFileType = true then - wsh.echo "-user and -file cannot be used together" - call usage() - end if - user = getArgValue(index) - wsh.echo "user: ***" - elseif arg = "-password" then - password = getArgValue(index) - wsh.echo "password: ***" - elseif arg = "-group" then - group = getArgValue(index) - wsh.echo "group: " + group - elseif arg = "-file" then - isFileType = true - if isUserType = true then - wsh.echo "-user and -file cannot be used together" - call usage() - end if - inputFile = getArgValue(index) - wsh.echo "file: " + inputFile - elseif arg = "-deleteGroups" then - isDeleteGroup = true - wsh.echo "deleteGroup: " &isDeleteGroup - elseif arg = "-host" then - host = getArgValue(index) - wsh.echo "host: ***" - end if - index = index + 1 -next - -if isDeleteGroup = false then - wsh.echo "No groups will be deleted since -deleteGroups was not specified" -end if - -rem Set objService = GetObject("winmgmts://.") -rem Set oCmdLib = CreateObject( "Microsoft.CmdLib" ) -rem ComputerName = oCmdLib.gethostname (objService) -ComputerName = host -wsh.echo "Computername: " + ComputerName - -Set userGroup = GetObject("WinNT://"&Computername&"/Users,group") -Set fso=CreateObject("Scripting.FileSystemObject") -Set Computer= GetObject("WinNT://"&Computername&",computer") - -If (isUserType) Then - call removeUser (user, group) -ElseIf (isFileType) Then - Set UserFile = fso.OpenTextFile(inputFile,1) - lineNo=0 - - do while UserFile.AtEndOfStream <> True - Result = "" - - Data = UserFile.Readline - lineNo = lineNo + 1 - wsh.echo "Line# "&Chr(13)&lineNo& ": " + Data - UserAttributes = Split(Data, " ") - - user = UserAttributes(0) - if isDeleteGroup = true then - group = UserAttributes(2) - else - group = "none" - end if - - call removeUser(user, group) - - loop - - UserFile.close -End If - -wsh.echo "Done." - -Function removeUser(ByRef UserName, ByRef GroupName) - 'wsh.echo ">>removeUser" - userDeleted = false - groupDeleted = false - for each UserObject In Computer - if UCASE(UserObject.name) = UCASE(UserName) then - Computer.Delete "user", UserName - wsh.echo "User " + UserName + " deleted." - userDeleted = true - end if - next - if GroupName <> "none" then - for each GroupObject In Computer - if UCASE(GroupObject.name) = UCASE(GroupName) then - Computer.Delete "group", GroupName - wsh.echo "Group " + GroupName + " deleted." - groupDeleted = true - end if - next - - if groupDeleted = false then - wsh.echo "group " + GroupName + " not found" - end if - end if - if userDeleted = false then - wsh.echo "user " + UserName + " not found" - end if - 'wsh.echo "< (index + 1) then - getArgValue = ArgObj(index + 1) - 'Verify a value was given instead of another -option - dashIndex = InStr(value, "-") - if dashIndex = 1 then - call usage() - end if - else - call usage() - end if -End Function - -Function usage() - Wscript.Echo "Usage: removeWinUsers.bat" - Wscript.Echo " -file -deleteGroups| -user -password [-group ]" - Wscript.Quit(1) -End Function \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/kerberos/setUserSpn.bat b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/kerberos/setUserSpn.bat deleted file mode 100755 index ee84045ccc9..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/kerberos/setUserSpn.bat +++ /dev/null @@ -1,5 +0,0 @@ -set USER=%1 -set SERVICE_NAME=%2 -set HOSTNAME=%3 - -setspn -A %SERVICE_NAME%/%HOSTNAME% %USER% diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/resources/security/kerberos/jaas.conf b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/resources/security/kerberos/jaas.conf deleted file mode 100755 index 14705ef5647..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/resources/security/kerberos/jaas.conf +++ /dev/null @@ -1,14 +0,0 @@ -ibmKrb5Login { - com.ibm.security.auth.module.Krb5LoginModule required - debug="true"; - }; - -sunKrb5Login { - com.sun.security.auth.module.Krb5LoginModule required - debug="true"; - }; - -sunKrb5LoginRefreshKrb5Config { - com.sun.security.auth.module.Krb5LoginModule required - debug="true" refreshKrb5Config="true"; - }; diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/resources/security/key.jks b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/resources/security/key.jks deleted file mode 100755 index 88e73828621..00000000000 Binary files a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/resources/security/key.jks and /dev/null differ diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/resources/security/ltpa.keys b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/resources/security/ltpa.keys deleted file mode 100755 index e0e7d511ac3..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/resources/security/ltpa.keys +++ /dev/null @@ -1,8 +0,0 @@ -#Sun Jan 15 15:01:21 CST 2012 -com.ibm.websphere.CreationDate=Sun Jan 15 15\:01\:21 CST 2012 -com.ibm.websphere.CreationHost=localhost -com.ibm.websphere.ltpa.Realm=PreGeneratedLTPAKeys -com.ibm.websphere.ltpa.version=1.0 -com.ibm.websphere.ltpa.3DESKey=xpUAUsH4SZc+VuiAqzL+Tz+MfBmb+6vv3/cGjIn+mR4\= -com.ibm.websphere.ltpa.PublicKey=AMan4Qo5MKIeYf26TJbTZwRdYai7rWRVXDwy/6XI1iq+CVxny1O74rE4cn7wXalID05hKwm/HUxvFd72Y3dABzL1bTUpl1uE6SQNePrcdrQC8rmtichsdvY0baiGYexURYP7fbHF5Z70RfQGCPYnuZTB9jsHdh4HJlrOlsx6K2mJAQAB -com.ibm.websphere.ltpa.PrivateKey=TkjZeR/1L6khA7UKNjBRI1T+nbwEWXv1AWVSOCEgpKfLvw8iAkIc7+8I2zfc3j88XciTxDuagepUDoWCXHJ1ithSptZSLnHBASD7Ki1dLTKY7jszPXmIIwoa8YaQFtuuNeSJ7r6r8krSB5ml5sk7aTF0Sed8TFrx1aDEQRIZCovZV8BQX29bBZC99gTqk3chCpcOVRqcxvQRGzdP0PenvaA9afeflV5t4Iw8errfmHjedNVDog90ZVVAeecO+ZLqn7yAHh98ZTdV9IEVyqnFI7XQljrMJsNt3zl/tB7ktQ6VuyxJmlQdDbmvJ+F6DZeR9lVC991a/Ks0i1VKVOrwhPxJYLX2Xz7MWpLu09pwapo\= diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/application_definition/basicauth_war.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/application_definition/basicauth_war.xml deleted file mode 100644 index d07c773302f..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/application_definition/basicauth_war.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/application_definition/formlogin_war.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/application_definition/formlogin_war.xml deleted file mode 100644 index ddda097b963..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/application_definition/formlogin_war.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/application_definition/spnegoTokenHelperFvt_location.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/application_definition/spnegoTokenHelperFvt_location.xml deleted file mode 100644 index db9b4a7ca87..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/application_definition/spnegoTokenHelperFvt_location.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/application_definition/spnegoauth_war.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/application_definition/spnegoauth_war.xml deleted file mode 100644 index 4e85ccf0c44..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/application_definition/spnegoauth_war.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/configs/basicRegistry.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/configs/basicRegistry.xml deleted file mode 100644 index bd844e2f959..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/configs/basicRegistry.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/configs/fatTestPorts.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/configs/fatTestPorts.xml deleted file mode 100644 index 4eeb682be8f..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/configs/fatTestPorts.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/configs/host_info.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/configs/host_info.xml deleted file mode 100644 index 3ccecd83fdf..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/configs/host_info.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/configs/keystore.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/configs/keystore.xml deleted file mode 100644 index b0c0899bb84..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/configs/keystore.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/config/s4u2proxyEnable_s4u2selfNotEnable_defaultConstrained.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/config/s4u2proxyEnable_s4u2selfNotEnable_defaultConstrained.xml deleted file mode 100644 index beb49615313..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/config/s4u2proxyEnable_s4u2selfNotEnable_defaultConstrained.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/config/s4u2proxyNotEnable_s4u2selfEnable_defaultConstrained.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/config/s4u2proxyNotEnable_s4u2selfEnable_defaultConstrained.xml deleted file mode 100644 index 282b6f4e646..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/config/s4u2proxyNotEnable_s4u2selfEnable_defaultConstrained.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/config/s4u2proxyNotEnable_s4u2selfNotEnable_defaultConstrained.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/config/s4u2proxyNotEnable_s4u2selfNotEnable_defaultConstrained.xml deleted file mode 100644 index d54e5715869..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/config/s4u2proxyNotEnable_s4u2selfNotEnable_defaultConstrained.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/jaas_config/jaasConfig_jdk11.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/jaas_config/jaasConfig_jdk11.xml deleted file mode 100644 index 0936d398da0..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/jaas_config/jaasConfig_jdk11.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/jaas_config/jaasConfig_jdk8.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/jaas_config/jaasConfig_jdk8.xml deleted file mode 100644 index ca91d9b18ff..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/jaas_config/jaasConfig_jdk8.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/jaas_config/jaasLoginContextEntry.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/jaas_config/jaasLoginContextEntry.xml deleted file mode 100644 index 8edbb2d8cdd..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/jaas_config/jaasLoginContextEntry.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2ProxyEnabled_false.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2ProxyEnabled_false.xml deleted file mode 100755 index 29be8648804..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2ProxyEnabled_false.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2ProxyEnabled_false_jdk11.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2ProxyEnabled_false_jdk11.xml deleted file mode 100644 index db052cd6e44..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2ProxyEnabled_false_jdk11.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2Proxy_BasicAuth.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2Proxy_BasicAuth.xml deleted file mode 100755 index a291e20d923..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2Proxy_BasicAuth.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2Proxy_BasicAuth_jdk11.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2Proxy_BasicAuth_jdk11.xml deleted file mode 100644 index dbaab720379..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2Proxy_BasicAuth_jdk11.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2Proxy_noFeature.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2Proxy_noFeature.xml deleted file mode 100755 index 158c68392f4..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2Proxy_noFeature.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2Proxy_noFeature_jdk11.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2Proxy_noFeature_jdk11.xml deleted file mode 100644 index 66c8aba503f..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2Proxy_noFeature_jdk11.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2Proxy_serverSpnego.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2Proxy_serverSpnego.xml deleted file mode 100755 index ada4e785b82..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2Proxy_serverSpnego.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2Proxy_serverSpnego_jdk11.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2Proxy_serverSpnego_jdk11.xml deleted file mode 100644 index 12a10cb61b4..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/S4U2Proxy_serverSpnego_jdk11.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/no_spnegoFeature.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/no_spnegoFeature.xml deleted file mode 100644 index 450bed31753..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/no_spnegoFeature.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/serverSpnego.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/serverSpnego.xml deleted file mode 100644 index 38f98367bc6..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2proxy_servers/serverSpnego.xml +++ /dev/null @@ -1,86 +0,0 @@ - - - - - appSecurity-2.0 - jsp-2.3 - servlet-3.1 - spnego-1.0 - securitylibertyinternals-1.0 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/config/S4U2SelfJaasConfig.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/config/S4U2SelfJaasConfig.xml deleted file mode 100644 index d32dcfd0b0c..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/config/S4U2SelfJaasConfig.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/config/S4U2SelfJaasConfig_jdk11.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/config/S4U2SelfJaasConfig_jdk11.xml deleted file mode 100644 index 95a14ba9153..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/config/S4U2SelfJaasConfig_jdk11.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/config/S4U2SelfStandard_config.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/config/S4U2SelfStandard_config.xml deleted file mode 100644 index e8dff019e17..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/config/S4U2SelfStandard_config.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/no_spnegoFeature.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/no_spnegoFeature.xml deleted file mode 100644 index 450bed31753..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/no_spnegoFeature.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverNoConstrainedDelegationFeature.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverNoConstrainedDelegationFeature.xml deleted file mode 100644 index 2494e7d4b52..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverNoConstrainedDelegationFeature.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - appSecurity-2.0 - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverNoConstrainedDelegationFeature_jdk11.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverNoConstrainedDelegationFeature_jdk11.xml deleted file mode 100644 index da2ae8b6f8e..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverNoConstrainedDelegationFeature_jdk11.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - appSecurity-2.0 - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverS4U2BasicAuth.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverS4U2BasicAuth.xml deleted file mode 100644 index c8ccff706c4..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverS4U2BasicAuth.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverS4U2BasicAuth_jdk11.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverS4U2BasicAuth_jdk11.xml deleted file mode 100644 index 1c2776b2e8b..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverS4U2BasicAuth_jdk11.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverS4U2Self.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverS4U2Self.xml deleted file mode 100644 index b724a1c935c..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverS4U2Self.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverS4U2SelfNotEnabled.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverS4U2SelfNotEnabled.xml deleted file mode 100644 index 58f25885a89..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverS4U2SelfNotEnabled.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverS4U2SelfNotEnabled_jdk11.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverS4U2SelfNotEnabled_jdk11.xml deleted file mode 100644 index a95289e1310..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverS4U2SelfNotEnabled_jdk11.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverS4U2Self_jdk11.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverS4U2Self_jdk11.xml deleted file mode 100644 index c05426c740a..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverS4U2Self_jdk11.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverSpnego.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverSpnego.xml deleted file mode 100644 index d763e7e0af9..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverSpnego.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverSpnego_jdk11.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverSpnego_jdk11.xml deleted file mode 100644 index b5a3a6b3298..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/constrained_delegation/s4u2self_servers/serverSpnego_jdk11.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/features/constrained_delegation.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/features/constrained_delegation.xml deleted file mode 100644 index ddef8c7bcef..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/features/constrained_delegation.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - jsp-2.3 - servlet-3.1 - securitylibertyinternals-1.0 - constrainedDelegation-1.0 - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/features/no_spnego_feature.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/features/no_spnego_feature.xml deleted file mode 100644 index 560dd159e81..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/features/no_spnego_feature.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - appSecurity-2.0 - jsp-2.3 - servlet-3.1 - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/features/security_feature.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/features/security_feature.xml deleted file mode 100644 index 84c72b056a8..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/features/security_feature.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - appSecurity-2.0 - jsp-2.3 - securitylibertyinternals-1.0 - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/features/security_spnego_features.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/features/security_spnego_features.xml deleted file mode 100644 index d864804a767..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/features/security_spnego_features.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/features/security_spnego_no_servlet31_features.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/features/security_spnego_no_servlet31_features.xml deleted file mode 100644 index add0a5a708f..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/features/security_spnego_no_servlet31_features.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/features/servlet_3_1_feature.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/features/servlet_3_1_feature.xml deleted file mode 100644 index 2544637f3d6..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/features/servlet_3_1_feature.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - servlet-3.1 - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/features/spnego_feature.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/features/spnego_feature.xml deleted file mode 100644 index 183f1d4665a..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/features/spnego_feature.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - spnego-1.0 - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/jaas_loginmodule_serversettings/jdk11_jaasLoginModule.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/jaas_loginmodule_serversettings/jdk11_jaasLoginModule.xml deleted file mode 100644 index 7f827b94c48..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/jaas_loginmodule_serversettings/jdk11_jaasLoginModule.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/jaas_loginmodule_serversettings/jdk8_jaasLoginModule.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/jaas_loginmodule_serversettings/jdk8_jaasLoginModule.xml deleted file mode 100644 index 16845d821d0..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/jaas_loginmodule_serversettings/jdk8_jaasLoginModule.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/jwt/serversettings/standard_config_withJwtSsoFeature.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/jwt/serversettings/standard_config_withJwtSsoFeature.xml deleted file mode 100644 index 30a7289ab61..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/jwt/serversettings/standard_config_withJwtSsoFeature.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - jwtSso-1.0 - - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/authfilters/simpleservlet_contains.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/authfilters/simpleservlet_contains.xml deleted file mode 100644 index b09c900c0f7..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/authfilters/simpleservlet_contains.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/authfilters/spnegoTokenHelper_simpleServlet_contains.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/authfilters/spnegoTokenHelper_simpleServlet_contains.xml deleted file mode 100644 index 5506ddb0779..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/authfilters/spnegoTokenHelper_simpleServlet_contains.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/configs/allowLocalhost_false.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/configs/allowLocalhost_false.xml deleted file mode 100644 index 9861be1ced8..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/configs/allowLocalhost_false.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/configs/spnego_myauthfilter.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/configs/spnego_myauthfilter.xml deleted file mode 100644 index 4f7f966520e..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/configs/spnego_myauthfilter.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/configs/trimkerberosrealm_true.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/configs/trimkerberosrealm_true.xml deleted file mode 100644 index bf623ff8cf4..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/configs/trimkerberosrealm_true.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/no_spnegoFeature.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/no_spnegoFeature.xml deleted file mode 100644 index fa1644da4fe..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/no_spnegoFeature.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterBadURLPattern.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterBadURLPattern.xml deleted file mode 100644 index 8aa3b369a73..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterBadURLPattern.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterMatchTypeNotContain.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterMatchTypeNotContain.xml deleted file mode 100644 index 6035fcbd6a9..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterMatchTypeNotContain.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterRefNoElementSpecified.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterRefNoElementSpecified.xml deleted file mode 100644 index 827a927396e..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterRefNoElementSpecified.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterRefNoIdAttributeSpecified.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterRefNoIdAttributeSpecified.xml deleted file mode 100644 index 2a6b8544e25..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterRefNoIdAttributeSpecified.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterRemoteAddressWithMalformedIp.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterRemoteAddressWithMalformedIp.xml deleted file mode 100644 index f4398e67924..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterRemoteAddressWithMalformedIp.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterWebAppContains.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterWebAppContains.xml deleted file mode 100644 index 93cd12ee92c..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterWebAppContains.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterWebAppNotContain.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterWebAppNotContain.xml deleted file mode 100644 index 6be8ed55b82..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverAuthFilterWebAppNotContain.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverKrbConfigNotFound_PathNotFound.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverKrbConfigNotFound_PathNotFound.xml deleted file mode 100644 index 60bce0a2763..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverKrbConfigNotFound_PathNotFound.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverKrbConfigNotSpecified.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverKrbConfigNotSpecified.xml deleted file mode 100644 index ee30c90b5a0..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverKrbConfigNotSpecified.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverKrbKeytabNotFound_PathNotFound.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverKrbKeytabNotFound_PathNotFound.xml deleted file mode 100644 index 4d1c83bbbb6..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverKrbKeytabNotFound_PathNotFound.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverKrbKeytabNotSpecified.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverKrbKeytabNotSpecified.xml deleted file mode 100644 index 67e39f14533..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverKrbKeytabNotSpecified.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverMultipleAuthFiltersUseBad.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverMultipleAuthFiltersUseBad.xml deleted file mode 100644 index 94a3733dfc9..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverMultipleAuthFiltersUseBad.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverMultipleAuthFiltersUseGood.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverMultipleAuthFiltersUseGood.xml deleted file mode 100644 index 94d74923a0f..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverMultipleAuthFiltersUseGood.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverNoSpnegoFeature.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverNoSpnegoFeature.xml deleted file mode 100644 index 34dc4c1a41e..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverNoSpnegoFeature.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverRequestURLBadUrlPattern.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverRequestURLBadUrlPattern.xml deleted file mode 100644 index 96aa7ecc60a..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverRequestURLBadUrlPattern.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverSpnegoNoAuthFilter.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverSpnegoNoAuthFilter.xml deleted file mode 100644 index 42bd730590f..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverSpnegoNoAuthFilter.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverSpnegoWithInvalidSPNAttribute.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverSpnegoWithInvalidSPNAttribute.xml deleted file mode 100644 index c2f35ef76ca..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverSpnegoWithInvalidSPNAttribute.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverSpnegoWithSPNAttribute.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverSpnegoWithSPNAttribute.xml deleted file mode 100644 index 97343a8a01a..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/serverSpnegoWithSPNAttribute.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/spnegoDefaultConfig.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/spnegoDefaultConfig.xml deleted file mode 100644 index 1d5f7f43e46..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/dynamic_configs/spnegoDefaultConfig.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/serversettings/no_spnegoFeature.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/serversettings/no_spnegoFeature.xml deleted file mode 100644 index 450bed31753..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/serversettings/no_spnegoFeature.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/serversettings/serverSpnego.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/serversettings/serverSpnego.xml deleted file mode 100644 index fa03ab11894..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/serversettings/serverSpnego.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/serversettings/serverSpnego_jdk11.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/serversettings/serverSpnego_jdk11.xml deleted file mode 100644 index 665ba42ae8f..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/serversettings/serverSpnego_jdk11.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/serversettings/standard_config.xml b/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/serversettings/standard_config.xml deleted file mode 100644 index 410bd547ef1..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/server_modules/spnego/serversettings/standard_config.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat/publish/files/kerberos/createWinKeytabFile.bat b/dev/com.ibm.ws.security.spnego_fat/publish/files/kerberos/createWinKeytabFile.bat deleted file mode 100755 index 2334c842997..00000000000 --- a/dev/com.ibm.ws.security.spnego_fat/publish/files/kerberos/createWinKeytabFile.bat +++ /dev/null @@ -1,35 +0,0 @@ -set USER=%1 -set PASSWORD=%2 -set SERVICE_NAME=%3 -set HOSTNAME=%4 -set KEYTAB=%5 -set REALM=%6 -set KDC=%7 - -set OP1=%8 -set OP2=%9 -shift -shift -shift -shift -shift -shift -shift -shift -shift -set OP3=%1 -set OP4=%2 -set OP5=%3 -set OP6=%4 -set OP7=%5 -set OP8=%6 -set OP9=%7 -set OP10=%8 -set OP11=%9 -shift -set OP12=%9 - -cscript removeWinUsers.vbs -user %USER% -host %KDC% -cscript createWinUser.vbs -user %USER% -password %PASSWORD% -host %KDC% %OP1% %OP2% %OP3% %OP4% %OP5% %OP6% %OP7% %OP8% %OP9% %OP10% %OP11% %OP12% -setspn -a %SERVICE_NAME%/%HOSTNAME% %USER% -ktpass -out %KEYTAB% -in localhost_HTTP_krb5.keytab -princ %SERVICE_NAME%/%HOSTNAME%@%REALM% -mapUser %USER%@%REALM% -mapOp set -pass %PASSWORD% -crypto RC4-HMAC-NT -kvno 0 -ptype KRB5_NT_PRINCIPAL \ No newline at end of file diff --git a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/kerberos/createWinKeytabFile.bat b/dev/com.ibm.ws.security.spnego_fat/publish/files/kerberos/createWinKeytabFileOL.bat similarity index 98% rename from dev/com.ibm.ws.security.spnego_fat.2/publish/files/kerberos/createWinKeytabFile.bat rename to dev/com.ibm.ws.security.spnego_fat/publish/files/kerberos/createWinKeytabFileOL.bat index 2334c842997..5fcc0425936 100755 --- a/dev/com.ibm.ws.security.spnego_fat.2/publish/files/kerberos/createWinKeytabFile.bat +++ b/dev/com.ibm.ws.security.spnego_fat/publish/files/kerberos/createWinKeytabFileOL.bat @@ -32,4 +32,4 @@ set OP12=%9 cscript removeWinUsers.vbs -user %USER% -host %KDC% cscript createWinUser.vbs -user %USER% -password %PASSWORD% -host %KDC% %OP1% %OP2% %OP3% %OP4% %OP5% %OP6% %OP7% %OP8% %OP9% %OP10% %OP11% %OP12% setspn -a %SERVICE_NAME%/%HOSTNAME% %USER% -ktpass -out %KEYTAB% -in localhost_HTTP_krb5.keytab -princ %SERVICE_NAME%/%HOSTNAME%@%REALM% -mapUser %USER%@%REALM% -mapOp set -pass %PASSWORD% -crypto RC4-HMAC-NT -kvno 0 -ptype KRB5_NT_PRINCIPAL \ No newline at end of file +ktpass -out %KEYTAB% -in localhost_HTTP_krb5.keytab -princ %SERVICE_NAME%/%HOSTNAME%@%REALM% -mapUser %USER%@%REALM% -mapOp set -pass %PASSWORD% -crypto RC4-HMAC-NT -kvno 0 -ptype KRB5_NT_PRINCIPAL +Answer \ No newline at end of file