New pages
- 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")
- 17:08, 10 October 2025 IBM QRadar SOAR: Configuring SAML (hist | edit) [946 bytes] Ebasso (talk | contribs) (Created page with " = Configure proxy o main host = 1) Connect to CLI, using '''resadmin''' user 2) Run command <nowiki> sudo resutil samledit -alias soarsaml \ -certfile ./qradarsoar.pem \ -org MYORGANIZATION \ -entityid https://soar.company.com/saml2/soarsaml \ -loginurl https://login.microsoftonline.com/3.....5/saml2 \ -logouturl https://login.microsoftonline.com/3.....5/saml2</nowiki> sudo resutil saml show sudo systemctl restart resilient = Articles = * [https://www.i...")
- 18:03, 25 September 2025 IBM QRadar SOAR: Configuring HTTP Proxy settings (hist | edit) [1,057 bytes] Ebasso (talk | contribs) (Created page with " = Configure proxy o main host = 1) Connect to CLI, using '''resadmin''' user 2) Run command sudo resutil configset -key proxyhost -s <ip address> sudo resutil configset -key proxyport -i <port> 3) Edit file /etc/systemd/system/k3s.service.env and set = Configure proxy on app host = manageAppHost proxy --https-proxy-url http://<ip address> manageAppHost proxy --http-proxy-url http://<ip address> = Ver também = * Artigos sobre IBM QRadar *...")
- 17:50, 25 September 2025 IBM QRadar SOAR: Configuring HTTP Address and TLS/SSL settings (hist | edit) [1,532 bytes] Ebasso (talk | contribs) (Created page with " = Managing Keystore with Keytool and Resutil = 1) Connect to CLI, using '''resadmin''' user 2) Backup keystore <syntaxhighlight lang="bash"> cd /crypt/certs cp keystore keystore_backupYYYYMMDD </syntaxhighlight> 3) Use the following command to list all entries in the keystore with detailed information: <syntaxhighlight lang="bash"> keytool -list -v -keystore keystore -storepass "$(sudo resutil keyvaultget -name keystore)" </syntaxhighlight> 4) Delete an alias fr...")
- 17:29, 25 September 2025 PostgreSQL: Usando ferramentas em container (PGAdmin/Cloudbeaver) para administrar o PostgreSQL (hist | edit) [3,040 bytes] Ebasso (talk | contribs) (Created page with "= Instalar o Podman = 1) Atualizar o sistema e instalar o Podman <syntaxhighlight lang="bash"> sudo dnf update -y sudo dnf install -y podman podman-docker sudo systemctl enable --now podman sudo systemctl start podman sudo systemctl status podman </syntaxhighlight> 2) Criar usuário para os containers <syntaxhighlight lang="bash"> sudo groupadd -r -g 1000 containers sudo useradd -r -u 1000 -g containers -d /var/containers -s /sbin/nologin -m containers sudo mkdir...")
- 17:18, 25 September 2025 PostgreSQL: Instalando o PostgreSQL 15 no RedHat Linux (hist | edit) [2,413 bytes] Ebasso (talk | contribs) (Created page with "= Instalar o PostgreSQL = == Instalar o módulo == <syntaxhighlight lang="bash"> sudo dnf module install postgresql:15/server </syntaxhighlight> == Inicializar o cluster de banco de dados == <syntaxhighlight lang="bash"> sudo postgresql-setup --initdb </syntaxhighlight> == Habilitar e iniciar o serviço == <syntaxhighlight lang="bash"> systemctl enable postgresql systemctl start postgresql </syntaxhighlight> = Criar o banco de dados e o usuário = == Criar o usuári...")
- 17:10, 25 September 2025 PostgreSQL (hist | edit) [450 bytes] Ebasso (talk | contribs) (Created page with " * PostgreSQL: Instalando o PostgreSQL 15 no RedHat Linux == Ver também == * Mais Artigos sobre outras Tecnologias * Mais Artigos sobre Apache HTTP Server * Mais Artigos sobre Linux / UNIX / AIX Category:Linux Category:PostgreSQL Category:Databases Category:Tecnologias")