We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b161663 commit 37d4426Copy full SHA for 37d4426
1 file changed
KQL/forg365-phaas-detection-using-silent-push.kql
@@ -0,0 +1,22 @@
1
+// Forg365 PhaaS Detection Using Silent Push
2
+// Author: KQLWizard (Steven Lim)
3
+//
4
+let Forg365BackendNode = dynamic([
5
+"104.21.73.235",
6
7
+"188.114.96.11",
8
+"104.21.17.182",
9
+"188.114.96.2",
10
+"143.198.0.184",
11
12
13
14
15
16
+"188.114.96.11"
17
+]);
18
+EntraIdSignInEvents
19
+| where Timestamp > ago(1h)
20
+| where EndpointCall == "Cmsi:Cmsi"
21
+| where ErrorCode == "0"
22
+| where IPAddress has_any(Forg365BackendNode)
0 commit comments