New pages
- 21:13, 17 January 2026 IBM Sterling Connect:Direct : Certificate-Based Authentication Setup using C:D Web Services (hist | edit) [5,510 bytes] Ebasso (talk | contribs) (Created page with "== Part 1: REST Client Certificate Configuration == === Step 1.1: Export CDWS Server Certificate === First, obtain the CDWS server's certificate download it directly from the server <syntaxhighlight lang="bash"> # Download certificate from CDWS server openssl s_client -connect cdws-hostname:9443 -showcerts < /dev/null 2>/dev/null | \ openssl x509 -outform PEM > cdws-server.pem </syntaxhighlight> = Ver também = * IBM Sterling * IBM Sterling Connect:Direct...")
- 21:59, 10 December 2025 IBM QRadar SOAR: Working with Incidents Properties with REST API (hist | edit) [2,193 bytes] Ebasso (talk | contribs) (Created page with " = Ver também = * IBM QRadar SOAR: Working with Incidents with REST API * IBM QRadar SOAR: Working with Incidents Properties with REST API * Artigos sobre IBM QRadar * Artigos sobre Cloud * Mais Artigos sobre Cloud / WebDev / Tecnologias Category:IBM QRadar Category:IBM QRadar SOAR")
- 21:56, 10 December 2025 IBM QRadar SOAR: Working with Incidents with REST API (hist | edit) [1,955 bytes] Ebasso (talk | contribs) (Created page with " <nowiki> soar_base_url='https://soar.company.com/rest/orgs/<ORG_ID>' soar_auth= HTTPBasicAuth('api_key', 'api_secret'), def soar_get_incidents(): headers = { "Accept": "application/json", "Content-Type": "application/json" } url = f"{base_url}/incidents/query_paged" params = { "return_level": "full", "field_handle": ["virus_investigation_result", "virus_score"], "include_records_total": "false" } json_body = {"filters": [{"c...")
- 21:08, 27 November 2025 IBM QRadar: How to Execute AQL Queries via URL in QRadar’s New Console UI (hist | edit) [1,114 bytes] Ebasso (talk | contribs) (Created page with "This page explains how to construct a URL to run AQL queries directly in QRadar’s new Analyst Application interface using the <code>/console/ui/search</code> endpoint. == Base URL == <pre> https://<CONSOLE_IP>/console/ui/search </pre> == Key Parameters == * <code>execute=true</code> Ensures the query runs automatically when the page loads. * <code>query=<URL_ENCODED_QUERY_PARAMETERS></code> Contains the query parameters, including the AQL stateme...")
- 22:45, 19 November 2025 IBM QRadar SOAR: Debug applications on AppHost (hist | edit) [943 bytes] Ebasso (talk | contribs) (Created page with "Check after restart kubectl get pods -A | grep kube 800x82px sudo kubectl get pods -A -l apps.isc.ibm.com/app-type=app -L app.kubernetes.io/instance File:Soar-apphost-kube-output-02.png = Articles = * [https://www.ibm.com/support/pages/node/1161322 QRadar SOAR: Mapping SAML groups to IBM Security SOAR groups] * [https://www.ibm.com/support/pages/node/1162732 Troubleshooting SAML in IBM Security SOAR] * [https://...")
- 22:39, 19 November 2025 IBM QRadar SOAR: Restart AppHost (hist | edit) [876 bytes] Ebasso (talk | contribs) (Created page with " 1) Connect to CLI, using '''appadmin''' user 2) Run command <nowiki> sudo systemctl restart k3s sudo restartAppHost </nowiki> 3) Check after restart kubectl get pods -A | grep kube 800x82px = Articles = * [https://www.ibm.com/support/pages/node/1161322 QRadar SOAR: Mapping SAML groups to IBM Security SOAR groups] * [https://www.ibm.com/support/pages/node/1162732 Troubleshooting SAML in IBM Security SOAR] * [https://...")
- 02:07, 18 November 2025 IBM QRadar SOAR: Get current user on Playbook (hist | edit) [375 bytes] Ebasso (talk | contribs) (Created page with " <nowiki> note = """ {principal.id} {principal.name} """ incident.addNote(helper.createRichText(note))</nowiki> = Ver também = * Artigos sobre IBM QRadar * Artigos sobre Cloud * Mais Artigos sobre Cloud / WebDev / Tecnologias Category:IBM QRadar Category:IBM QRadar SOAR")