New pages
- 11:39, 30 May 2025 IBM QRadar SOAR: Send Emails in SOAR Using the fn outbound email App inline template (hist | edit) [993 bytes] Ebasso (talk | contribs) (Created page with "= How to Send Emails in IBM QRadar SOAR Using the <code>fn_outbound_email</code> App = IBM QRadar SOAR allows automated email sending through the '''fn_outbound_email''' app. This guide explains how to configure and use this functionality within playbooks, utilizing custom templates for email content. More details here: [https://ibmresilient.github.io/resilient-community-apps/fn_outbound_email/README.html IBM Resilient Community Apps - fn_outbound_email] The code is...")
- 11:29, 30 May 2025 IBM QRadar SOAR: Send Emails in SOAR Using the fn outbound email App (hist | edit) [2,105 bytes] Ebasso (talk | contribs) (Created page with "= How to Send Emails in IBM QRadar SOAR Using the <code>fn_outbound_email</code> App = IBM QRadar SOAR allows automated email sending through the '''fn_outbound_email''' app. This guide explains how to configure and use this functionality within playbooks, utilizing custom templates for email content. More details here: [https://ibmresilient.github.io/resilient-community-apps/fn_outbound_email/README.html IBM Resilient Community Apps - fn_outbound_email] == Prerequisi...")
- 00:36, 15 May 2025 IBM Maximo: Opções do MAS CLI (hist | edit) [2,963 bytes] Ebasso (talk | contribs) (Created page with " Caso você deseja outras opções de instalação veja abaixo: = MAS Core = mas install --mas-catalog-version v9-250501-amd64 --ibm-entitlement-key $IBM_ENTITLEMENT_KEY \ --mas-channel 9.0.x --mas-instance-id inst1 --mas-workspace-id ws01 --mas-workspace-name "MAS Workspace 01" \ --non-prod \ --storage-class-rwo "ocs-storagecluster-ceph-rbd" --storage-class-rwx "ocs-storagecluster-cephfs" \ --storage-pipeline "ocs-storagecluster-cephfs" --storage-accessmode "...")
- 19:54, 14 May 2025 IBM Sterling B2B: Useful Database Queries for Monitoring and Statistics (hist | edit) [2,509 bytes] Ebasso (talk | contribs) (Created page with "This page documents commonly used SQL queries for gathering communication and processing statistics from IBM Sterling databases (Oracle, DB2, and MS SQL Server). == (Oracle) List Largest Tables and Update Statistics == Checking the largest tables and updating table statistics. select table_name, round((num_rows*avg_row_len)/1048576) tbsize, num_rows, last_analyzed from all_tables where owner='XXXXXXX' and num_rows>0 order by num_rows desc == 1. Communication Ses...")
- 13:35, 22 April 2025 IBM QRadar: Monitorando um arquivo de log e enviando via syslog (hist | edit) [1,305 bytes] Ebasso (talk | contribs) (Created page with " = Configurando o Filtro no rsyslog = == 1. Criar Arquivo de Configuração == Edite ou crie um novo arquivo no diretório de configuração do rsyslog: sudo vi /etc/rsyslog.d/meu_app_logs.conf == 2. Adicionar Configuração com Filtro por Tag == Insira o seguinte conteúdo no arquivo criado: module(load="imfile") # Garante que o módulo esteja carregado # Monitorar o arquivo de log input(type="imfile" File="/caminho/para/seu/logfile.log" Tag=...")
- 01:44, 17 April 2025 IBM QRadar SOAR: Configuring SMTP settings (hist | edit) [569 bytes] Ebasso (talk | contribs) (Created page with " 1) Connect to CLI, using '''resadmin''' user 2) Run command <small>sudo resutil smtpedit –email [email protected] -name ”Resilient System” -host centos9.company.com -port 25 –nostarttls</small> = Ver também = * Artigos sobre IBM QRadar * Artigos sobre Cloud * Mais Artigos sobre Cloud / WebDev / Tecnologias Category:IBM QRadar Category:IBM QRadar SOAR")
- 01:03, 17 April 2025 IBM QRadar SOAR: Create Users using command line (hist | edit) [412 bytes] Ebasso (talk | contribs) (Created page with " 1) Connect to CLI, using '''resadmin''' user 2) Run command sudo resutil newuser -email "[email protected]" -first Harry -last Potter -role "Incident Creator" -org "Hogwarts" = Ver também = * Artigos sobre IBM QRadar * Artigos sobre Cloud * Mais Artigos sobre Cloud / WebDev / Tecnologias Category:IBM QRadar Category:IBM QRadar SOAR")
- 23:17, 15 April 2025 IBM QRadar: Unlocking locked hosts (hist | edit) [644 bytes] Ebasso (talk | contribs) (Created page with "1) Using SSH, log in to your system as the root user 2) Unlock specific hosts by typing the following command <small>/opt/qradar/bin/runjava.sh com.ibm.si.security_model.authentication.AuthenticationLockoutCommandLineTool --remove-ip <host_IP_address1></small> 3) Unlock all hosts by typing the following command <small>/opt/qradar/bin/runjava.sh com.ibm.si.security_model.authentication.AuthenticationLockoutCommandLineTool --remove-all-ips</small> = Ver também =...")
- 23:13, 15 April 2025 IBM QRadar SOAR: Reset password from Administrator of Web Console (hist | edit) [366 bytes] Ebasso (talk | contribs) (Created page with " 1) Connect to CLI, using '''resadmin''' user 2) Run command sudo resutil resetuser -email [email protected] -setpassword = Ver também = * Artigos sobre IBM QRadar * Artigos sobre Cloud * Mais Artigos sobre Cloud / WebDev / Tecnologias Category:IBM QRadar Category:IBM QRadar SOAR")
- 19:46, 8 April 2025 RedHat Openshift: Configurando o Bastion Host (hist | edit) [963 bytes] Ebasso (talk | contribs) (Created page with "O Bastion é uma máquina que não faz parte do OpenShift e é usada para executar os comandos de instalação e manutenção do cluster. Configuração: {| class="wikitable" |+ Configuração da VM Bastion ! Configuração !! Valor |- | SO || Linux RHEL 9.4 |- | Arquitetura || x86-64 |- | Hostname || bastion-01.ebasso.local |- | IP || 192.168.252.2 |- | Memória || 04 GB |- | CPU || 02 Vcpus |- | Disco /home || 265GB |} Criar os diretórios abaixo para armazenar os...")
- 15:14, 19 March 2025 IBM QRadar: AQL Queries (hist | edit) [2,394 bytes] Ebasso (talk | contribs) (Created page with "The query below calculates the total uncompressed payload size stored on disk for each log source type in the last hour. SELECT LOGSOURCETYPENAME(deviceType) AS LogSource, MIN(STRLEN(UTF8(payload))) AS Minimum, MAX(STRLEN(UTF8(payload))) AS Maximum, AVG(STRLEN(UTF8(payload))) AS AverageSize, STDEV(STRLEN(UTF8(payload))) AS STD, COUNT(logsourceid) AS EventCount, LONG(EventCount * AverageSize) / (1024 * 1024) as TotalSizeUncompressedMB FROM events GROUP B...")
- 14:54, 19 March 2025 IBM Sterling Connect:Direct: Trocando a chave TLS do C:D (hist | edit) [3,087 bytes] Ebasso (talk | contribs) (Created page with "= Trocando a chave SSL do Connect:Direct = Vamos criar uma chave 2024/2025 como exemplo: keytool -genkeypair -alias cdnode01_24_25 -keyalg RSA -keysize 2048 -validity 10 -keystore cdkeystore.p12 -storetype PKCS12 \ -sigalg SHA384withRSA -dname "CN=cdnode01.ebasso.net, O=EbassoNet, ST=Goias, C=BR" Enter keystore password: Re-enter new password: Generating 2,048 bit RSA key pair and self-signed certificate (SHA384withRSA) with a validity of 10 days for: CN=cdn...")