-
Notifications
You must be signed in to change notification settings - Fork 15
/
Phishing_Investigation_-_Generic_v2.yml
2345 lines (2335 loc) · 58.6 KB
/
Phishing_Investigation_-_Generic_v2.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
id: Phishing Investigation - Generic v2
version: 1
contentitemexportablefields:
contentitemfields:
packID: Phishing
packName: Phishing
itemVersion: 3.2.0
fromServerVersion: 6.0.0
toServerVersion: ""
definitionid: ""
vcShouldKeepItemLegacyProdMachine: false
name: Phishing Investigation - Generic v2
description: |-
Use this playbook to investigate and remediate a potential phishing incident. The playbook simultaneously engages with the user that triggered the incident, while investigating the incident itself.
The final remediation tasks are always decided by a human analyst.
starttaskid: "0"
tasks:
"0":
id: "0"
taskid: ac4755be-b17d-4464-8224-15aee51d29de
type: start
task:
id: ac4755be-b17d-4464-8224-15aee51d29de
version: -1
name: ""
iscommand: false
brand: ""
nexttasks:
'#none#':
- "39"
separatecontext: false
continueonerrortype: ""
view: |-
{
"position": {
"x": 592.5,
"y": -90
}
}
note: false
timertriggers: []
ignoreworker: false
skipunavailable: false
quietmode: 0
isoversize: false
isautoswitchedtoquietmode: false
"2":
id: "2"
taskid: b8fe1f1e-c1ae-499e-83d7-f466009b5790
type: regular
task:
id: b8fe1f1e-c1ae-499e-83d7-f466009b5790
version: -1
name: Assign to analyst
description: Assign the incident to an analyst based on the analyst's organizational
role.
scriptName: AssignAnalystToIncident
type: regular
iscommand: false
brand: ""
nexttasks:
'#none#':
- "15"
scriptarguments:
onCall:
complex:
root: inputs.OnCall
roles:
complex:
root: inputs.Role
reputationcalc: 1
separatecontext: false
continueonerrortype: ""
view: |-
{
"position": {
"x": -260,
"y": 2350
}
}
note: false
timertriggers: []
ignoreworker: false
skipunavailable: false
quietmode: 0
isoversize: false
isautoswitchedtoquietmode: false
"7":
id: "7"
taskid: d6dfa5b6-7756-4f6f-8e97-c9c7bcd67ad7
type: regular
task:
id: d6dfa5b6-7756-4f6f-8e97-c9c7bcd67ad7
version: -1
name: Manually review the incident
description: Review the incident to determine if the email that the user reported
is malicious.
type: regular
iscommand: false
brand: ""
nexttasks:
'#none#':
- "33"
separatecontext: false
continueonerrortype: ""
view: |-
{
"position": {
"x": -770,
"y": 2845
}
}
note: false
timertriggers: []
ignoreworker: false
skipunavailable: false
quietmode: 0
isoversize: false
isautoswitchedtoquietmode: false
"8":
id: "8"
taskid: 11da73b5-8815-42ea-89e6-d17ed25787d9
type: regular
task:
id: 11da73b5-8815-42ea-89e6-d17ed25787d9
version: -1
name: Close investigation
description: Close the investigation.
script: Builtin|||closeInvestigation
type: regular
iscommand: true
brand: Builtin
nexttasks:
'#none#':
- "29"
reputationcalc: 1
separatecontext: false
continueonerrortype: ""
view: |-
{
"position": {
"x": -897.5,
"y": 4590
}
}
note: false
timertriggers: []
ignoreworker: false
skipunavailable: false
quietmode: 0
isoversize: false
isautoswitchedtoquietmode: false
"11":
id: "11"
taskid: 61327623-b9c8-4683-892e-82ed6a2005f7
type: title
task:
id: 61327623-b9c8-4683-892e-82ed6a2005f7
version: -1
name: Triage
type: title
iscommand: false
brand: ""
nexttasks:
'#none#':
- "26"
separatecontext: false
continueonerrortype: ""
view: |-
{
"position": {
"x": 7.5,
"y": 195
}
}
note: false
timertriggers: []
ignoreworker: false
skipunavailable: false
quietmode: 0
isoversize: false
isautoswitchedtoquietmode: false
"12":
id: "12"
taskid: eda53266-2df9-40a6-8f16-bc4bf3bb8e76
type: regular
task:
id: eda53266-2df9-40a6-8f16-bc4bf3bb8e76
version: -1
name: Store the email address of the reporting user
description: Store the email address of the user that reported the incident.
scriptName: Set
type: regular
iscommand: false
brand: ""
nexttasks:
'#none#':
- "53"
- "85"
scriptarguments:
key:
simple: ReporterAddress
value:
complex:
root: ExtractedIndicators.Email
accessor: '[0]'
reputationcalc: 1
separatecontext: false
continueonerrortype: ""
view: |-
{
"position": {
"x": 1182.5,
"y": 515
}
}
note: false
timertriggers: []
ignoreworker: false
skipunavailable: false
quietmode: 0
isoversize: false
isautoswitchedtoquietmode: false
"13":
id: "13"
taskid: 09a01f5c-142b-48cf-8c92-4205ca9a6d42
type: regular
task:
id: 09a01f5c-142b-48cf-8c92-4205ca9a6d42
version: -1
name: Acknowledge incident was received
description: |
Send an auto-response to user that reported the incident, informing them the incident was received and being handled.
script: '|||send-mail'
type: regular
iscommand: true
brand: ""
nexttasks:
'#none#':
- "56"
scriptarguments:
body:
simple: "Hi ${.=function(val) { if(!(val.Account.length > 1)) return val.ReporterAddress;
var reporter = val.ReporterAddress; var account = val.Account && val.Account.filter(function(acc)
{ return acc.DisplayName && (acc.Email === reporter || Array.isArray(acc.Email)
&& acc.Email.indexOf(reporter) > -1) }); return account && account[0] &&
account[0].DisplayName[0] || reporter || ''; }(val)},\nWe've received your
email and are investigating.\nPlease do not touch the email until further
notice.\n\nCordially, \n Your friendly neighborhood security team"
subject:
simple: 'Re: Phishing Investigation - ${incident.name}'
to:
complex:
root: ReporterAddress
reputationcalc: 1
separatecontext: false
continueonerrortype: ""
view: |-
{
"position": {
"x": 1182.5,
"y": 880
}
}
note: false
timertriggers: []
ignoreworker: false
skipunavailable: false
quietmode: 0
isoversize: false
isautoswitchedtoquietmode: false
"15":
id: "15"
taskid: 64bf93c6-6ceb-4d1b-8f21-8fbfb1f046c8
type: condition
task:
id: 64bf93c6-6ceb-4d1b-8f21-8fbfb1f046c8
version: -1
name: Is the email malicious?
description: Determines if the email is malicious based on the calculated severity.
type: condition
iscommand: false
brand: ""
nexttasks:
'#default#':
- "31"
Malicious:
- "30"
separatecontext: false
conditions:
- label: Malicious
condition:
- - operator: greaterThanOrEqual
left:
value:
simple: incident.severity
iscontext: true
right:
value:
simple: "2"
continueonerrortype: ""
view: |-
{
"position": {
"x": -260,
"y": 2525
}
}
note: false
timertriggers: []
ignoreworker: false
skipunavailable: false
quietmode: 0
isoversize: false
isautoswitchedtoquietmode: false
"16":
id: "16"
taskid: 511c7226-fa33-4a95-88b7-709566ab4f90
type: regular
task:
id: 511c7226-fa33-4a95-88b7-709566ab4f90
version: -1
name: Update the user that the reported email is safe
description: Send an email to the user explaining that the email they reported
is safe.
script: '|||send-mail'
type: regular
iscommand: true
brand: ""
nexttasks:
'#none#':
- "8"
scriptarguments:
body:
simple: |-
Hi ${.=function(val) { if(!(val.Account.length > 1)) return val.ReporterAddress; var reporter = val.ReporterAddress; var account = val.Account && val.Account.filter(function(acc) { return acc.DisplayName && (acc.Email === reporter || Array.isArray(acc.Email) && acc.Email.indexOf(reporter) > -1) }); return account && account[0] && account[0].DisplayName[0] || reporter || ''; }(val)},
We've concluded that the email you forwarded to us is safe.
Thank you for your alertness and your participation in keeping our organization secure.
Cordially,
Your security team
subject:
simple: 'Re: Phishing Investigation - ${incident.name}'
to:
simple: ${ReporterAddress}
reputationcalc: 1
separatecontext: false
continueonerrortype: ""
view: |-
{
"position": {
"x": -1087.5,
"y": 3210
}
}
note: false
timertriggers:
- fieldname: detectionsla
action: stop
ignoreworker: false
skipunavailable: false
quietmode: 0
isoversize: false
isautoswitchedtoquietmode: false
"17":
id: "17"
taskid: f9a62c93-67f8-41f2-8cd5-6a6a700ed9b4
type: regular
task:
id: f9a62c93-67f8-41f2-8cd5-6a6a700ed9b4
version: -1
name: Update the user that the reported email is malicious
description: Send an email to the user explaining that the email they reported
is malicious.
script: '|||send-mail'
type: regular
iscommand: true
brand: ""
nexttasks:
'#none#':
- "27"
scriptarguments:
body:
simple: |-
Hi ${.=function(val) { if(!(val.Account.length > 1)) return val.ReporterAddress; var reporter = val.ReporterAddress; var account = val.Account && val.Account.filter(function(acc) { return acc.DisplayName && (acc.Email === reporter || Array.isArray(acc.Email) && acc.Email.indexOf(reporter) > -1) }); return account && account[0] && account[0].DisplayName[0] || reporter || ''; }(val)},
We've concluded that the email you forwarded to us is malicious. No further action is required on your part. Good job on detecting and forwarding it to us!
All the best,
Your security team
subject:
simple: 'Re: Phishing Investigation - ${incident.name}'
to:
simple: ${ReporterAddress}
separatecontext: false
continueonerrortype: ""
view: |-
{
"position": {
"x": 120,
"y": 3390
}
}
note: false
timertriggers:
- fieldname: detectionsla
action: stop
ignoreworker: false
skipunavailable: false
quietmode: 0
isoversize: false
isautoswitchedtoquietmode: false
"18":
id: "18"
taskid: dda5420c-7de7-4f2d-8da5-09f3ed8a12b9
type: title
task:
id: dda5420c-7de7-4f2d-8da5-09f3ed8a12b9
version: -1
name: Engage with User
type: title
iscommand: false
brand: ""
nexttasks:
'#none#':
- "134"
separatecontext: false
continueonerrortype: ""
view: |-
{
"position": {
"x": 1182.5,
"y": 195
}
}
note: false
timertriggers: []
ignoreworker: false
skipunavailable: false
quietmode: 0
isoversize: false
isautoswitchedtoquietmode: false
"22":
id: "22"
taskid: be406ffc-c93b-4890-830c-2536ffbedc6e
type: playbook
task:
id: be406ffc-c93b-4890-830c-2536ffbedc6e
version: -1
name: Detonate File - Generic
playbookName: Detonate File - Generic
type: playbook
iscommand: false
brand: ""
nexttasks:
'#none#':
- "52"
separatecontext: true
continueonerrortype: ""
view: |-
{
"position": {
"x": 240,
"y": 530
}
}
note: false
timertriggers: []
ignoreworker: false
skipunavailable: false
quietmode: 0
isoversize: false
isautoswitchedtoquietmode: false
"26":
id: "26"
taskid: 151f9ed5-3b43-4380-8ced-9892eb91104d
type: playbook
task:
id: 151f9ed5-3b43-4380-8ced-9892eb91104d
version: -1
name: Process Email - Generic
playbookName: Process Email - Generic
type: playbook
iscommand: false
brand: ""
nexttasks:
'#none#':
- "55"
- "22"
- "88"
separatecontext: true
continueonerrortype: ""
view: |-
{
"position": {
"x": 7.5,
"y": 340
}
}
note: false
timertriggers: []
ignoreworker: false
skipunavailable: false
quietmode: 0
isoversize: false
isautoswitchedtoquietmode: false
"27":
id: "27"
taskid: 421eef34-f338-4c46-89cf-844afa2a2e48
type: title
task:
id: 421eef34-f338-4c46-89cf-844afa2a2e48
version: -1
name: Remediation
type: title
iscommand: false
brand: ""
nexttasks:
'#none#':
- "97"
- "98"
- "99"
separatecontext: false
continueonerrortype: ""
view: |-
{
"position": {
"x": 352.5,
"y": 3640
}
}
note: false
timertriggers:
- fieldname: remediationsla
action: start
ignoreworker: false
skipunavailable: false
quietmode: 0
isoversize: false
isautoswitchedtoquietmode: false
"28":
id: "28"
taskid: 6838736c-c177-4b2a-883e-43e36cc896bb
type: playbook
task:
id: 6838736c-c177-4b2a-883e-43e36cc896bb
version: -1
name: Search And Delete Emails - Generic v2
description: This playbook searches and delete emails with similar attributes
of a malicious email using EWS or Office 365.
playbookName: Search And Delete Emails - Generic v2
type: playbook
iscommand: false
brand: ""
nexttasks:
'#none#':
- "43"
scriptarguments:
AttachmentName:
complex:
root: incident
accessor: attachmentname
From:
complex:
root: incident
accessor: emailfrom
? |
O365AllowNotFoundExchangeLocations
: complex:
root: inputs.O365AllowNotFoundSearchLocations
O365DeleteType:
complex:
root: inputs.O365DeleteType
O365Description:
simple: Search for potential phishing
O365ExchangeLocation:
simple: All
O365ExchangeLocationExclusion:
complex:
root: inputs.O365ExchangeLocationExclusion
O365KQL:
simple: from:${incident.emailfrom} AND subject:${incident.emailsubject}
SearchAndDeleteIntegration:
complex:
root: inputs.SearchAndDeleteIntegration
Subject:
complex:
root: incident
accessor: emailsubject
To:
complex:
root: incident
accessor: emailto
separatecontext: true
continueonerrortype: ""
loop:
iscommand: false
exitCondition: ""
wait: 1
max: 100
view: |-
{
"position": {
"x": 352.5,
"y": 4175
}
}
note: false
timertriggers: []
ignoreworker: false
skipunavailable: false
quietmode: 0
isoversize: false
isautoswitchedtoquietmode: false
"29":
id: "29"
taskid: fc429ec3-8231-46f6-8b25-2c7a06d2f005
type: title
task:
id: fc429ec3-8231-46f6-8b25-2c7a06d2f005
version: -1
name: Done
type: title
iscommand: false
brand: ""
separatecontext: false
continueonerrortype: ""
view: |-
{
"position": {
"x": -897.5,
"y": 4775
}
}
note: false
timertriggers: []
ignoreworker: false
skipunavailable: false
quietmode: 0
isoversize: false
isautoswitchedtoquietmode: false
"30":
id: "30"
taskid: c2119cb4-091b-433a-8aeb-dac70d4a296e
type: title
task:
id: c2119cb4-091b-433a-8aeb-dac70d4a296e
version: -1
name: Email Is Malicious
type: title
iscommand: false
brand: ""
nexttasks:
'#none#':
- "123"
separatecontext: false
continueonerrortype: ""
view: |-
{
"position": {
"x": 162.5,
"y": 2700
}
}
note: false
timertriggers: []
ignoreworker: false
skipunavailable: false
quietmode: 0
isoversize: false
isautoswitchedtoquietmode: false
"31":
id: "31"
taskid: d560749b-2218-466f-856e-18986e9a1885
type: title
task:
id: d560749b-2218-466f-856e-18986e9a1885
version: -1
name: Undetermined
type: title
iscommand: false
brand: ""
nexttasks:
'#none#':
- "7"
separatecontext: false
continueonerrortype: ""
view: |-
{
"position": {
"x": -770,
"y": 2700
}
}
note: false
timertriggers: []
ignoreworker: false
skipunavailable: false
quietmode: 0
isoversize: false
isautoswitchedtoquietmode: false
"33":
id: "33"
taskid: 231bb05f-9f96-4a43-82a4-70b3ef434bf8
type: condition
task:
id: 231bb05f-9f96-4a43-82a4-70b3ef434bf8
version: -1
name: Is the email malicious?
description: Is the email that the user reported malicious?
type: condition
iscommand: false
brand: ""
nexttasks:
"No":
- "16"
"Yes":
- "123"
separatecontext: false
continueonerrortype: ""
view: |-
{
"position": {
"x": -770,
"y": 3010
}
}
note: false
timertriggers: []
ignoreworker: false
skipunavailable: false
quietmode: 0
isoversize: false
isautoswitchedtoquietmode: false
"34":
id: "34"
taskid: 945915a4-395f-444f-8500-c80791cddcfd
type: regular
task:
id: 945915a4-395f-444f-8500-c80791cddcfd
version: -1
name: Manually remediate the incident
description: "Consider the following:\n1. Search for and delete similar emails\n2.
Inform the organization about the threat\n3. Hunt the relevant IOCs\n4. Update
proxies and firewalls as necessary\n5. Block the malicious sender/ domain
in the mail-gateway "
type: regular
iscommand: false
brand: ""
nexttasks:
'#none#':
- "43"
separatecontext: false
continueonerrortype: ""
view: |-
{
"position": {
"x": -657.5,
"y": 3970
}
}
note: false
timertriggers: []
ignoreworker: false
skipunavailable: false
quietmode: 0
isoversize: false
isautoswitchedtoquietmode: false
"36":
id: "36"
taskid: 7047c1ab-98bf-4a58-805b-7788d6e8a96a
type: condition
task:
id: 7047c1ab-98bf-4a58-805b-7788d6e8a96a
version: -1
name: Should emails be searched and deleted?
description: Checks whether the "SearchAndDelete" playbook input is set to True.
type: condition
iscommand: false
brand: ""
nexttasks:
'#default#':
- "43"
"Yes":
- "28"
separatecontext: false
conditions:
- label: "Yes"
condition:
- - operator: isEqualString
left:
value:
simple: inputs.SearchAndDelete
iscontext: true
right:
value:
simple: "True"
ignorecase: true
continueonerrortype: ""
view: |-
{
"position": {
"x": 352.5,
"y": 3980
}
}
note: false
timertriggers: []
ignoreworker: false
skipunavailable: false
quietmode: 0
isoversize: false
isautoswitchedtoquietmode: false
"37":
id: "37"
taskid: d8d3a1c3-6d94-4359-8bda-0e0be77c2f71
type: condition
task:
id: d8d3a1c3-6d94-4359-8bda-0e0be77c2f71
version: -1
name: Should indicators be blocked automatically?
description: Checks whether the "BlockIndicators" playbook input is set to True.
type: condition
iscommand: false
brand: ""
nexttasks:
'#default#':
- "43"
"yes":
- "91"
separatecontext: false
conditions:
- label: "yes"
condition:
- - operator: isExists
left:
value:
complex:
root: inputs.BlockIndicators
filters:
- - operator: isEqualString
left:
value:
simple: inputs.BlockIndicators
iscontext: true
right:
value:
simple: "True"
ignorecase: true
iscontext: true
continueonerrortype: ""
view: |-
{
"position": {
"x": 1000,
"y": 3980
}
}
note: false
timertriggers: []
ignoreworker: false
skipunavailable: false
quietmode: 0
isoversize: false
isautoswitchedtoquietmode: false
"39":
id: "39"
taskid: 151326c6-7adc-48bf-8710-6b0b01d86f48
type: title
task:
id: 151326c6-7adc-48bf-8710-6b0b01d86f48
version: -1
name: Start Detection Timer
type: title
iscommand: false
brand: ""
nexttasks:
'#none#':
- "18"
- "11"
separatecontext: false
continueonerrortype: ""
view: |-
{
"position": {
"x": 592.5,
"y": 40
}
}
note: false
timertriggers:
- fieldname: detectionsla
action: start
ignoreworker: false
skipunavailable: false
quietmode: 0
isoversize: false
isautoswitchedtoquietmode: false
"43":
id: "43"
taskid: 17f9d1ad-24e9-4ddc-813f-15ff190032a1
type: title
task:
id: 17f9d1ad-24e9-4ddc-813f-15ff190032a1
version: -1
name: Stop Remediation Timer
type: title
iscommand: false
brand: ""
nexttasks:
'#none#':
- "8"
separatecontext: false
continueonerrortype: ""
view: |-
{
"position": {
"x": 690,
"y": 4440
}
}
note: false
timertriggers:
- fieldname: remediationsla
action: stop
ignoreworker: false
skipunavailable: false
quietmode: 0
isoversize: false
isautoswitchedtoquietmode: false
"52":
id: "52"
taskid: 29d97b94-fad1-490d-8ddb-b0e16c107da8
type: title
task:
id: 29d97b94-fad1-490d-8ddb-b0e16c107da8
version: -1
name: Indicator Enrichment
type: title
iscommand: false
brand: ""
nexttasks:
'#none#':
- "92"
separatecontext: false
continueonerrortype: ""
view: |-
{
"position": {
"x": -260,
"y": 725
}
}
note: false
timertriggers: []
ignoreworker: false
skipunavailable: false
quietmode: 0
isoversize: false
isautoswitchedtoquietmode: false
"53":
id: "53"
taskid: 9efe139c-3485-464d-8122-1a3bc8587888
type: playbook
task:
id: 9efe139c-3485-464d-8122-1a3bc8587888
version: -1
name: Email Address Enrichment - Generic v2.1
playbookName: Email Address Enrichment - Generic v2.1
type: playbook
iscommand: false
brand: ""
nexttasks:
'#none#':
- "13"
scriptarguments:
Domain:
simple: ' '
Email:
complex:
root: ReporterAddress
transformers:
- operator: uniq
separatecontext: true
continueonerrortype: ""
loop:
iscommand: false
exitCondition: ""
wait: 1
max: 0
view: |-
{
"position": {
"x": 1182.5,
"y": 700
}
}
note: false
timertriggers: []
ignoreworker: false