User Profile
printscreen
Brass Contributor
Joined 5 years ago
User Widgets
Recent Discussions
Pricing for Sentinel custom workbook
Hi! I've prepared a custom workbook around siginlogs table, does anyone have any idea if there would be any cost involved in deploying that custom workbook? If there is a cost involved, what would be the approximate cost, just to understand the cost figures.1.6KViews0likes1CommentSentinel incidents sync with other Microsoft security portals
Hi, I would like to know if Sentinel can automatically sync the incidents which are closed in other Microsoft security portals. If it syncs automatically, what is the delay for each? Does sentinel incidents get automatically synced with incidents in Defender? Does sentinel incidents get automatically synced with incidents in MDI? Does sentinel incidents get automatically synced with incidents in MCAS(Microsoft cloud apps security portal)? Does sentinel incidents get automatically synced with AAD risky users actions(like the risky users which we analyze and decide risk dismissal/compromised in AAD)? If anyone can help me with this information, it would be great! Thanks1.7KViews0likes4CommentsASR rules configuration in GPO
Hi! I'm aware that a few of the GUID values for ASR rules policy can be found here. I'm configuring attack surface reduction rules by using Group Policy, unfortunately, I couldn't find any GUID values for the other ASR policies(Web protection (Microsoft Edge Legacy), App and browser isolation etc..,) Are these the only 15 GUID values available for configuring ASR or am I missing something?9.3KViews1like1CommentRe: Center of Excellence - Error Starting Flows
Hi Barry - Thanks for your response. I figured out the reason behind this. I was able to turn on the flow from the default solution. And the other error reason was, we don't have a proper power apps licence which triggered the error. (failed to activate component error)Re: You cannot directly edit the components within a managed solution - CoE - Power apps
Hi - I figured out the reason behind this. I was able to turn on the flow from the default solution. I got that error because the solution from which I'm trying to turn it on was a managed solution. So, we need to go to an unmanaged solution and edit the flow as per our wish. If we observe closely, we can see some tiny lock symbol under managed column in my attached error snip in this post.You cannot directly edit the components within a managed solution - CoE - Power apps
Hi, I'm pretty new to Power apps. I'm just trying to set up the CoE(currently at set up core components). I'm following this process and got stuck at this step with the below error. I'm unable to turn on the things under solutions. Also, would be helpful if someone shares any detailed video/blogs regarding the CoE installation procedure. Any help would be appreciated? You cannot directly edit the components within a managed solution. If the managed properties for solution components are set to allow customization, you can edit them from another unmanaged solution.SolvedRe: Azure AD detection User added to group vs User added to role
ceesmandjes if you wish to list out the for roles & groups, then the appropriate operation names are 'Add member to role', 'Add member to group'. You can tweak the template rule which is mentioned above by adding these to the list, something like below (Note that, below is just a few first lines from default template rule as an example) let timeframe = 1h; let OperationList = dynamic(["Add member to role", "Add member to role", "Add member to group" ,"Add member to role in PIM requested (permanent)"]); let PrivilegedGroups = dynamic(["UserAccountAdmins","PrivilegedRoleAdmins","TenantAdmins"]); AuditLogs | where TimeGenerated >= ago(timeframe) | where LoggedByService =~ "Core Directory"8.1KViews0likes0CommentsRe: Technical details and integration
Maxou I could be able to answer few questions - - What datastore does Sentinel use? [Sentinel stores all logs which got ingested, in log analytics] - Does Sentinel allow to backup the data in Azure blob store and search it ? - Is it easy to get data out of Sentinel what is the cost? [you can remove sentinel easily, pls go thru this link] - How do we can collect logs and audit logs from PASS services like API management services , Azure cosmos , Synapse workspace and PowerBI Embedded? [you can easily collect any azure resource logs(in fact, a few non-Microsoft vendor logs too) through diagnostic settings. For example, if we consider APi managements service, go to Azure portal ->APIM-> Diagnostic settings-> click on '+ Add diagnostic settings'. Select appropriate logs and map the sentinel log analytic workspace there and save it) - Also how is the cost calculated if you increase the retention from 31 days to 90 days ? [With best of my knowledge, For Azure Sentinel enabled workspaces the data is retained for free for 90 days, Retention beyond 90 days will be charged per the standard Azure Monitor Log Analytics retention prices (as outlined here). Only if you do configure some changes in sentinel settings, you will find an option to increase data ingestion] I hop it helps.1.3KViews1like1CommentRe: AlienVault OTX TAXII Feed
Kevin Lovegrove Below is the Github direct link for AlientVault i believe, Ingesting Alien Vault OTX Threat Indicators into Azure Sentinel - Microsoft Tech Community and a very good article about the same Ingesting Alien Vault OTX Threat Indicators into Azure Sentinel - Microsoft Tech Community hope it helps7.9KViews0likes2CommentsRe: AlienVault OTX TAXII Feed
Kevin Lovegrove below are resources which i belive in Github repo for alientVault, Azure-Sentinel/Playbooks/Get-AlienVault_OTX at master · Azure/Azure-Sentinel · GitHub and a very good article about the same Ingesting Alien Vault OTX Threat Indicators into Azure Sentinel - Microsoft Tech Community Hope it helps7.8KViews0likes0CommentsRe: (KQL) calling a workspace() using a variable
jjsantanna Apologies, I got it wrong then, is this something below which you are looking at, does this helps? let x = union workspace('workspacename1').AzureActivity; let y = union workspace('workspacename2').SecurityEvent; x | project timespan(8d)5.1KViews0likes3CommentsRe: (KQL) calling a workspace() using a variable
jjsantanna We can do a cross workspace querying by using workspace name and union KQL statements. Something like this below, workspace('<<your workspacename>>').tablename | union workspace(''<<your workspacename>>').tablename | where CategoryValue = 'Administrative' If you would like to understand more details, pls refer this link: What’s New: Cross-workspace Analytics Rules - Microsoft Tech Community Hope it helps.5.1KViews0likes5CommentsHow to execute KQL queries in Sentinel Notebooks?
Hi. I have installed kqlmagic library and trying to connect to my log analytics workspace to execute the kql queries in Notebooks. Can anyone help me the different approaches on how to connect to the specific workspace and execute kql queries in Notebooks? I'm aware of this below approach on connecting to the specific workspace and executing kql queries, but I'm looking for another way? %kql loganalytics://tenant=TENANT_ID;clientid=CLIENT_ID;clientsecret=APP_ID;workspace=WORKSPACE_ID;alias='azsecdb'2.8KViews0likes2CommentsRe: Notebooks error while installing msticpy package
ESPANETYANN AnuragSrivastava GaryBushey Thanks for your response. I was able to install msticpy. DO you have any idea about using Powershell kernel in Notebooks, I'm following this article and reached up to this below step where I got stuck with the below error, if you have any idea about this, that would be appreciated. dotnet tool install -g --add-source "https://dotnet.myget.org/F/dotnet-try/api/v3/index.json" Microsoft.dotnet-interactive2.2KViews0likes1CommentNotebooks error while installing msticpy package
hi, I'm trying to get started with notebooks by using one of the default ones provided in Sentinel. But, when I was trying to execute, I'm continuously hitting with the below error, not sure if I'm missing anything, can anyone help me out here? The package 'msticpy' is not installed or has an incorrect version And I'm trying to install PowerShell kernel as per the steps mentioned in this article, but getting attached err in the terminal, there might be some silly mistake I'm doing, but unable to find what it is... Any help would be appreciated.Solved2.3KViews0likes5CommentsRe: How to mass apply a playbook to all analytic rules at once?
hey Javier-Soriano, Is there any option to do Powershell execution to mass apply the playbook to all rules? I was just messing myself and tried below by uploading a JSON file in CLI and the command will create an analytic rule, and in that, we can add a playbook, which worked perfectly. Import-AzSentinelAlertRule -WorkspaceName "rg-test" -SettingsFile "alertrule.json" But, I tried the same way to update by doing Update-AzSentinelAlertRule which didn't work saying as attached snip. Is there any specific rule update command which helps to update the playbook configuration?3.4KViews0likes3Comments
Groups
Recent Blog Articles
No content to show