IBM Qradar CE V7.3.3 Integration with nextcloud - integration

i have been working on my research about how effective IBM Qradar SIEM tools to protect private cloud against APT attack. I use Nextcloud as my private test cloud, that have been installed on ubuntu server. i want to ask about how to integrate Nextcloud with IBM Qradar, so Qradar can receive logs from Nextcloud and can parse the event.

Nextcloud uses JSON and SIEM solutions can parse JSON by using regex. Here an example.
Regex for parsing single key: values out of JSON in Javascript

Related

Azure MySQL Flexible Server and private endpoint

I have tried to config private endpoint for my Azure MySQL Flexible Server, but the resource is not found portal. Yes the resource is registered.
If I use Azure Database for MariaDB, I could config private endpoint.
Is the option not available for Azure MySQL Flexible Server? Some note in documentation for Azure MySQL Flexible Server state that you should use other then the small type. I have tried these alternative also, but without any luck!
Any suggestions?
I have tried premium version with General instance, but without any luck. I have tried the same alternati but for MariaDB, no problems to create endpoint.

Using Azure CLI to manage API Management (APIM) Users, Products, Certificates, APIs

It seems that this page contains all the functionality that Azure CLI supports in regard to Azure API Management. But it doesn't show how to manage entities such as users, products, certificates, subscriptions, and APIs using Azure CLI.
Does Azure CLI lack these functionalities or is there a way to manage those entities using Azure CLI? Can Azure CLI be considered as a replacement for ARM templates in the case of APIM?
Azure CLI is missing those. Please raise on aka.ms/apimwish
According to my research, the Azure CLI API management command is in preview. SO it will miss some commands. For more details, please refer to the document. So if you want to manage Azure API management entities such as users, products, certificates, subscriptions, and APIs, I suggest you use Azure PowerShell to do that : https://learn.microsoft.com/en-us/powershell/module/az.apimanagement/?view=azps-3.0.0.
The Azure CLI currently seems to support this, see here for Microsoft docs. Make sure you upgrade your CLI to the latest version to be able to leverage this.
To get the CLI docs:
az apim --help

Bluemix using Node-RED bind to existing ClearDB MySQL service

I am using Node-RED on IBM Bluemix. I am trying to connect to MySQL hosted by ClearDB, but I cannot find a suitable node in the database category.
How can I bind to existing ClearDB service that I already have bound to another app?
You can take a look at this MySQL node for Node-RED in the flow and node library, it is an extension. The steps to add additional node types to the editor is explained in the Node-RED documentation in general, however it does not directly apply to Bluemix. For your Bluemix environment you would need to access and modify the environment. See this post on how to deploy your customized Node-RED environment to Bluemix.

MySQL service broker

MSSQL Service Broker: Is there a similar technology in MySQL?
If not, any suggest how to handle async task that can be achieved using Service Broker in MSSQL?
The client side platform is .NET.
I recommend taking a look at RabbitMQ. It's a standalone message queue server that implements a "broker" pattern that's extremely similar to SQL Server Service Broker. You can install it on Windows or any Linux. And there is a very decent .NET client library.

Connect web server with database and J2ME

I do a mobile application which the user can use it get the required place’s number. The user must select the appropriate city and category to get the place’s information. All the information stored in the database.
What I want to know that ..
1) What is the benefit from the web service?
2) How to connect the web service and MySQl database?
3) How to connect the web service and mobile application to get the information from the database?
1) Benefits. You didn't mentioned other options, but if you are talking about some custom server-side implementation, the benefits are numerous:
It's easy to connect to web service from J2ME.
Multiple connection sessions at one time.
You can use web service from different applications and different technologies.
No issues with authentication and authorization.
You just call method from ws and in response you get easy-to-parse XML.
2) Web service - MySQL:
You have to create a Tomcat or IIS web service.
From web service code connect to MySQL, call a query and return the result.
For Tomcat and Java web service:
Getting started with Web Services Using Apache Axis
Developing and Deploying Java Web Services with MySQL on Apache Tomcat and Axis on Windows
JDBC for MySQL
For IIS and C#/.NET web service:
CodeProject:Your first C# Web Service by Chris Maunder
How to connect to MySQL 5.0. via C# .NET and the MySQL Connector/Net
3) J2ME - web service (with JAX-RPC)
1. generate stub from web service WDDL using J2ME Wireless Toolkit
2. add stub to your project, import stub namespace, set connection properties and call stub methods
How to build and run a J2ME Web service application?
Web Services APIs for J2ME, Part 1: Remote service invocation API