I can not start IBM HTTP server 9.0x after installing CA Web Agent 12.52

No comment

I can not start IBM HTTP server 9.0x after installing CA Web Agent 12.52 on RH7.6. When I run startup command I am getting the following error [root@ssoker-rhwasnd bin]# ./apachectl -k starthttpd: Syntax error on line 123 of /opt/IBM/HTTPServer/conf/httpd.conf: Cannot load /opt/CA/webagent/bin/libmod_sm22.so into server: /opt/CA/webagent/bin/libmod_sm22.so: undefined symbol: unixd_config   I sourced web agent and run […]

CA SSO SDK read cookies

No comment

Hi All,     Is it possible for Siteminder SDK to read a cookie available in browser? we want to use com.netegrity.policyserver.smapi, using active response using OnAuthAccess redirect response.   Please let me know if someone has done this kind of SDK implementation and if possible please share the sample code.   Regards Vikas Tiwari Source: […]

Issue with the domain of SMSession Cookie

No comment

I have this issue here where the user requests for a resource from the webagent after generating the smsession cookie through the HTML based login form.   The user request for https://mydomain.com/app1/path/ It goes through logon server and creates a smsession cookie in the domain .mydomain2.com When the request reaches the webagent i see in […]

CA SSO OpenID Connect Provider – Agentless SSO

No comment

If you have implemented CA SSO 12.8 SP02 as OIDC provider and IIS as OIDC client, please share the steps to implement and issues faced during the setup. Also confirm, is any wrapper class is required at application side (OIDC client) to process the Access token/JWT apart from web.config changes. Source: New feed {pubDate}

CVE-2019-0232 vulnerability impact CA SSO?

No comment

Hi CA Communities,   Our client is asking if the following CVE impacts CA SSO as they are using Access Gateway as well as Sharepoint agent.    https://nvd.nist.gov/vuln/detail/CVE-2019-0232   From the looks of it, it seems to impact only if CGI is enabled.   I see this in Tomcat/conf/web.xml Since they are commented away, am […]

Auth/AZ Using CA SPS Returning Login Failed

No comment

Team,   We are trying to set up the Authentication and AZ Call using CA SPS, we followed this Link: https://docops.ca.com/ca-single-sign-on/12-52-sp1/en/configuring/ca-siteminder-sps-configuration/configuring-the-authentication-and-authorization-web-services/. We were able to setup everything, and when testing the URL, we are getting Login Failed. I am using: /authazws/AuthRestService/login/lbmpoc/affwebservices/redirectjsp/redirect.jsp as my end point, and sending: <loginRequest> <binaryCreds></binaryCreds> <password>User1(</password> <userName>User1</userName> <action>GET</action>      </loginRequest>   I am getting :[04/22/2019][20:07:58][26387][140128887912192][1b4acf42-b2e128b3-ccd28f6e-a8351b0c-b1c1aed0-8d6][ProcessResponses][Calling […]

SAML response sent without certificate

No comment

Hi,   I recently upgraded my infra to 12.8 post which I am facing an issue wherein the SAML response being sent to the SP ACS url does not contain certificate. Even though the configurations done in Admin UI has certificate mapped with it and set as Sign Assertion. PFB the logs from FWSTrace,   […]

Regarding password change using Post method

No comment

I have written below java code to change the password in siteminder.   import org.apache.commons.httpclient.params.HostParams;import org.apache.commons.httpclient.params.HttpParams;import org.apache.http.HttpEntity;import org.apache.http.HttpResponse;import org.apache.http.NameValuePair;import org.apache.http.client.HttpClient;import org.apache.http.client.entity.UrlEncodedFormEntity;import org.apache.http.client.methods.HttpPost;import org.apache.http.impl.client.HttpClientBuilder;import org.apache.http.message.BasicNameValuePair;import org.apache.http.util.EntityUtils;import org.jfree.util.Log; import com.sun.net.ssl.SSLContext; import java.io.IOException;import java.io.UnsupportedEncodingException;import java.security.NoSuchAlgorithmException;import java.util.ArrayList;import java.util.List; public class SMPost { public static void main(String[] args) { HttpClient client = HttpClientBuilder.create().build(); HttpPost post = new HttpPost(“https://cscgppmrd003.amer.csc.com/siteminderagent/forms/smpwservices.fcc?SMAUTHREASON=34&SMAGENTNAME=amer_gp_cscgppmrd003_apache_agent&TARGET=https://gpl.tst.csc.com/webtest/&username=rsoni29&PASSWORD=G@ecis22g&NEWPASSWORD=G@ecis22a&CONFIRMATION=G@ecis22a“); // Create […]