Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

User ID's Monitoring #335

Open
PuneethRaya opened this issue Apr 15, 2021 · 8 comments
Open

User ID's Monitoring #335

PuneethRaya opened this issue Apr 15, 2021 · 8 comments

Comments

@PuneethRaya
Copy link

Hello Team,

In our workstations , we have set of applications access from the browser. We want to monitor if any one logged in the respective applications with one particular user ID. Is there any way to monitor and get an alerts by using custom scripts and any other way? Any solution will be really appreciable.

@A-dd-Y
Copy link

A-dd-Y commented Apr 15, 2021

@PuneethRaya Hi Puneeth, ATP doesn't log web authentication logs however, if your web application redirect to url that contain "user ID" after successful login you can use below query to check user machine's AD login info.

DeviceNetworkEvents
| where RemoteUrl has "user id"
| summarize count() by InitiatingProcessAccountUpn
| sort by count_

@PuneethRaya
Copy link
Author

Thank you very much!!
We need alerting mechanism whenever successful Login. Will this query helps to achieve this? if i create advanced hunting query.

@A-dd-Y
Copy link

A-dd-Y commented Apr 15, 2021

@PuneethRaya Sure, Just save your hunting query as detection rule.

Add Timestamp and ReportId in your project, something like below..

DeviceNetworkEvents
| where RemoteUrl has "user id"
| project Timestamp, ReportId, InitiatingProcessAccountUpn

img

@PuneethRaya
Copy link
Author

Wonderful!!one more last request... Is it possible get in output which web URL successful authentication happened ?

@PuneethRaya
Copy link
Author

DeviceNetworkEvents
| where RemoteUrl has "user ID "
| project Timestamp, ReportId, InitiatingProcessAccountUpn, RemoteUrl

This helped me !!thank you !!

@PuneethRaya
Copy link
Author

Is there any way to restrict post authentication user shouldn't perform any activity/block or at least sending an auto email to the that particular AD users?

@A-dd-Y
Copy link

A-dd-Y commented Apr 16, 2021

@PuneethRaya hey, when you save your query as a detection rule, you can configure your email for alert notification.

after that you can forward that email to that particular user based on the email content.

@tali-ash
Copy link
Collaborator

tali-ash commented Apr 18, 2021

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants