-
Notifications
You must be signed in to change notification settings - Fork 1
/
PAW-PATRULES_EMOTET_IP.rules
2698 lines (2697 loc) Β· 951 KB
/
PAW-PATRULES_EMOTET_IP.rules
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
# KXK00OOkxxkO00KX0
# ,NXKxo:,'... ...';cdOXN:
# l;. ..,:ldxkOOOOOOkkxol:,.. .o
# dk lOOOOOOkkkkkkkkkkkOOOOOOx dk
# KNXOc. :0OkkkkkkkkkkkkkkkkkkkkkO0l. :kXNX
# x. .'ckOOkkkkkkkkkkkookkkkkkkkkkOOOl,. .k
# d. o0Okkkkkkkkkkkkk. okkkkkkkkkkOO0k x
# l. c0kkkkkkko. .ckk .kd..'xkkkkkk0x .o
# ;, ;0kkkkkkkc ;ko. .dk. :kkkkkk0l ':
# .l .OOkkkkkkkl. .lkocldkkl. 'xkkkkkOO, c.
# l o0kkkk:..'dkkk. .;okkkkkkkkk0x l
# .: .OOkkk; xk, .:kkkkkO0; ;.
# ;. :0kkkko;,cko :kkkk0d .:
# : oOkkkkkkkk .dkkk0k. :
# : dOkkkkkkk .:odxkkkkkOk. ;
# ; oOkkkkkkx:,,ckkkkkkkkkkOx. ,
# '. ;OOkkkkkkkkkkkkkkkkkOOc '
# ' .lOOkkkkkkkkkkkkkOOd. .
# . .lOOkkkkkkkkkOOo' ..
# ' .;dOOOkOOOx:. .
# .. .,lxo;. ..
# .. ..
#
# ____ ___ __ ____ _ _
#| _ \ / \ \ / / | _ \ __ _| |_ _ __ _ _| | ___ ___
#| |_) / _ \ \ /\ / / | |_) / _` | __| '__| | | | |/ _ \/ __|
#| __/ ___ \ V V / | __/ (_| | |_| | | |_| | | __/\__ \
#|_| /_/ \_\_/\_/ |_| \__,_|\__|_| \__,_|_|\___||___/
#
# IDS Rules for Suricata
# π Charles BLANC-ROLIN β ΅ - https://pawpatrules.fr - https://www.apssis.com - https://github.com/woundride
# Licence CC BY-NC-SA 4.0 : https://creativecommons.org/licenses/by-nc-sa/4.0/
# β Emotet - IP
alert ip any any -> 177.144.135.2 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306864; rev:7; classtype:trojan-activity;)
alert ip any any -> 104.247.221.104 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306865; rev:7; classtype:trojan-activity;)
alert ip any any -> 201.213.32.59 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306866; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.147.137.153 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306867; rev:7; classtype:trojan-activity;)
alert ip any any -> 178.79.163.131 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306868; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.17.195.202 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306869; rev:7; classtype:trojan-activity;)
alert ip any any -> 212.71.237.140 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306870; rev:7; classtype:trojan-activity;)
alert ip any any -> 68.183.190.199 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306871; rev:7; classtype:trojan-activity;)
alert ip any any -> 12.162.84.2 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306872; rev:7; classtype:trojan-activity;)
alert ip any any -> 186.250.52.226 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306873; rev:7; classtype:trojan-activity;)
alert ip any any -> 181.129.96.162 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306874; rev:7; classtype:trojan-activity;)
alert ip any any -> 185.94.252.12 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306875; rev:7; classtype:trojan-activity;)
alert ip any any -> 77.55.211.77 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306876; rev:7; classtype:trojan-activity;)
alert ip any any -> 177.72.13.80 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306877; rev:7; classtype:trojan-activity;)
alert ip any any -> 70.32.115.157 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306878; rev:7; classtype:trojan-activity;)
alert ip any any -> 114.109.179.60 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306879; rev:7; classtype:trojan-activity;)
alert ip any any -> 68.183.170.114 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306880; rev:7; classtype:trojan-activity;)
alert ip any any -> 5.196.35.138 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306881; rev:7; classtype:trojan-activity;)
alert ip any any -> 87.106.46.107 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306882; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.163.1.31 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306883; rev:7; classtype:trojan-activity;)
alert ip any any -> 177.66.190.130 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306884; rev:7; classtype:trojan-activity;)
alert ip any any -> 137.74.106.111 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306885; rev:7; classtype:trojan-activity;)
alert ip any any -> 203.25.159.3 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306886; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.181.235.46 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306887; rev:7; classtype:trojan-activity;)
alert ip any any -> 207.255.37.143 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306888; rev:7; classtype:trojan-activity;)
alert ip any any -> 111.67.12.221 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306889; rev:7; classtype:trojan-activity;)
alert ip any any -> 187.51.47.26 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306890; rev:7; classtype:trojan-activity;)
alert ip any any -> 46.28.111.142 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306891; rev:7; classtype:trojan-activity;)
alert ip any any -> 80.249.176.206 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306892; rev:7; classtype:trojan-activity;)
alert ip any any -> 181.31.211.181 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306893; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.194.242.254 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306894; rev:7; classtype:trojan-activity;)
alert ip any any -> 217.199.160.224 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306895; rev:7; classtype:trojan-activity;)
alert ip any any -> 219.92.13.25 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306896; rev:7; classtype:trojan-activity;)
alert ip any any -> 70.32.84.74 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306897; rev:7; classtype:trojan-activity;)
alert ip any any -> 104.131.103.37 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306898; rev:7; classtype:trojan-activity;)
alert ip any any -> 104.131.41.185 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306899; rev:7; classtype:trojan-activity;)
alert ip any any -> 83.169.21.32 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306900; rev:7; classtype:trojan-activity;)
alert ip any any -> 170.81.48.2 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306901; rev:7; classtype:trojan-activity;)
alert ip any any -> 186.70.127.199 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306902; rev:7; classtype:trojan-activity;)
alert ip any any -> 91.236.4.234 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306903; rev:7; classtype:trojan-activity;)
alert ip any any -> 204.225.249.100 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306904; rev:7; classtype:trojan-activity;)
alert ip any any -> 185.94.252.27 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306905; rev:7; classtype:trojan-activity;)
alert ip any any -> 82.196.15.205 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306906; rev:7; classtype:trojan-activity;)
alert ip any any -> 89.32.150.160 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306907; rev:7; classtype:trojan-activity;)
alert ip any any -> 50.28.51.143 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306908; rev:7; classtype:trojan-activity;)
alert ip any any -> 185.94.252.13 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306909; rev:7; classtype:trojan-activity;)
alert ip any any -> 2.47.112.152 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306910; rev:7; classtype:trojan-activity;)
alert ip any any -> 149.62.173.247 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306911; rev:7; classtype:trojan-activity;)
alert ip any any -> 46.214.11.172 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306912; rev:7; classtype:trojan-activity;)
alert ip any any -> 177.139.131.143 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306913; rev:7; classtype:trojan-activity;)
alert ip any any -> 61.92.159.208 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306914; rev:7; classtype:trojan-activity;)
alert ip any any -> 217.13.106.14 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306915; rev:7; classtype:trojan-activity;)
alert ip any any -> 181.120.79.227 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306916; rev:7; classtype:trojan-activity;)
alert ip any any -> 192.241.143.52 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306917; rev:7; classtype:trojan-activity;)
alert ip any any -> 189.218.165.63 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306918; rev:7; classtype:trojan-activity;)
alert ip any any -> 113.190.254.245 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306919; rev:7; classtype:trojan-activity;)
alert ip any any -> 192.241.146.84 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306920; rev:7; classtype:trojan-activity;)
alert ip any any -> 77.90.136.129 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306921; rev:7; classtype:trojan-activity;)
alert ip any any -> 202.62.39.111 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306922; rev:7; classtype:trojan-activity;)
alert ip any any -> 72.47.248.48 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306923; rev:7; classtype:trojan-activity;)
alert ip any any -> 172.104.169.32 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306924; rev:7; classtype:trojan-activity;)
alert ip any any -> 187.162.248.237 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306925; rev:7; classtype:trojan-activity;)
alert ip any any -> 143.0.87.101 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306926; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.229.148.144 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306927; rev:7; classtype:trojan-activity;)
alert ip any any -> 51.255.165.160 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306928; rev:7; classtype:trojan-activity;)
alert ip any any -> 104.236.161.64 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306929; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.6.193.152 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306930; rev:7; classtype:trojan-activity;)
alert ip any any -> 45.161.242.102 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306931; rev:7; classtype:trojan-activity;)
alert ip any any -> 94.176.234.118 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://tria.ge/reports/200715-72rvmcnh5a/behavioral1; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_17, updated_at 2022_03_19; sid:3306932; rev:7; classtype:trojan-activity;)
alert ip any any -> 14.99.112.138 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306933; rev:7; classtype:trojan-activity;)
alert ip any any -> 93.156.165.186 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306934; rev:7; classtype:trojan-activity;)
alert ip any any -> 137.59.187.107 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306935; rev:7; classtype:trojan-activity;)
alert ip any any -> 162.216.0.182 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306936; rev:7; classtype:trojan-activity;)
alert ip any any -> 85.204.116.188 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306937; rev:7; classtype:trojan-activity;)
alert ip any any -> 92.63.105.67 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306938; rev:7; classtype:trojan-activity;)
alert ip any any -> 162.216.0.181 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306939; rev:7; classtype:trojan-activity;)
alert ip any any -> 162.216.0.175 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306940; rev:7; classtype:trojan-activity;)
alert ip any any -> 181.164.110.7 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306941; rev:7; classtype:trojan-activity;)
alert ip any any -> 45.155.173.211 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306942; rev:7; classtype:trojan-activity;)
alert ip any any -> 85.204.116.144 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306943; rev:7; classtype:trojan-activity;)
alert ip any any -> 109.117.53.230 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306944; rev:7; classtype:trojan-activity;)
alert ip any any -> 82.146.46.209 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306945; rev:7; classtype:trojan-activity;)
alert ip any any -> 195.123.221.122 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306946; rev:7; classtype:trojan-activity;)
alert ip any any -> 86.104.194.82 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306947; rev:7; classtype:trojan-activity;)
alert ip any any -> 5.188.133.193 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306948; rev:7; classtype:trojan-activity;)
alert ip any any -> 162.216.0.186 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306949; rev:7; classtype:trojan-activity;)
alert ip any any -> 5.182.211.223 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306950; rev:7; classtype:trojan-activity;)
alert ip any any -> 194.5.249.157 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306951; rev:7; classtype:trojan-activity;)
alert ip any any -> 181.167.96.215 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306952; rev:7; classtype:trojan-activity;)
alert ip any any -> 74.207.230.187 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306953; rev:7; classtype:trojan-activity;)
alert ip any any -> 124.45.106.173 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306954; rev:7; classtype:trojan-activity;)
alert ip any any -> 212.51.142.238 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,https://bazaar.abuse.ch/sample/0f1cf81744b674c2984678733bc436938e73a8b25068020964dd925ceef572a9/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_11_25; sid:3306955; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.3.183.19 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306956; rev:7; classtype:trojan-activity;)
alert ip any any -> 85.204.116.192 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306957; rev:7; classtype:trojan-activity;)
alert ip any any -> 173.171.132.82 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306958; rev:7; classtype:trojan-activity;)
alert ip any any -> 186.159.1.217 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306959; rev:7; classtype:trojan-activity;)
alert ip any any -> 200.21.51.30 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306960; rev:7; classtype:trojan-activity;)
alert ip any any -> 170.238.117.187 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306961; rev:7; classtype:trojan-activity;)
alert ip any any -> 212.112.113.235 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306962; rev:7; classtype:trojan-activity;)
alert ip any any -> 46.105.131.87 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306963; rev:7; classtype:trojan-activity;)
alert ip any any -> 131.161.253.190 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306964; rev:7; classtype:trojan-activity;)
alert ip any any -> 217.160.19.232 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306965; rev:7; classtype:trojan-activity;)
alert ip any any -> 181.129.134.18 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306966; rev:7; classtype:trojan-activity;)
alert ip any any -> 181.112.157.42 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306967; rev:7; classtype:trojan-activity;)
alert ip any any -> 181.129.104.139 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306968; rev:7; classtype:trojan-activity;)
alert ip any any -> 50.116.86.205 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306969; rev:7; classtype:trojan-activity;)
alert ip any any -> 80.211.32.88 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306970; rev:7; classtype:trojan-activity;)
alert ip any any -> 121.100.19.18 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306971; rev:7; classtype:trojan-activity;)
alert ip any any -> 201.173.217.124 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306972; rev:7; classtype:trojan-activity;)
alert ip any any -> 78.189.165.52 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306973; rev:7; classtype:trojan-activity;)
alert ip any any -> 203.176.135.102 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306974; rev:7; classtype:trojan-activity;)
alert ip any any -> 144.139.91.187 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306975; rev:7; classtype:trojan-activity;)
alert ip any any -> 79.7.158.208 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306976; rev:7; classtype:trojan-activity;)
alert ip any any -> 139.130.242.43 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306977; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.55.181.54 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306978; rev:7; classtype:trojan-activity;)
alert ip any any -> 41.60.200.34 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306979; rev:7; classtype:trojan-activity;)
alert ip any any -> 37.187.72.193 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306980; rev:7; classtype:trojan-activity;)
alert ip any any -> 211.20.154.102 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306981; rev:7; classtype:trojan-activity;)
alert ip any any -> 81.214.253.80 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306982; rev:7; classtype:trojan-activity;)
alert ip any any -> 162.241.92.219 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306983; rev:7; classtype:trojan-activity;)
alert ip any any -> 77.74.78.80 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306984; rev:7; classtype:trojan-activity;)
alert ip any any -> 203.153.216.182 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306985; rev:7; classtype:trojan-activity;)
alert ip any any -> 175.207.12.52 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306986; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.3.183.18 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306987; rev:7; classtype:trojan-activity;)
alert ip any any -> 72.44.93.233 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306988; rev:7; classtype:trojan-activity;)
alert ip any any -> 110.145.77.103 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306989; rev:7; classtype:trojan-activity;)
alert ip any any -> 113.161.148.81 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306990; rev:7; classtype:trojan-activity;)
alert ip any any -> 113.160.180.109 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306991; rev:7; classtype:trojan-activity;)
alert ip any any -> 115.79.195.246 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306992; rev:7; classtype:trojan-activity;)
alert ip any any -> 93.51.50.171 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306993; rev:7; classtype:trojan-activity;)
alert ip any any -> 91.231.166.124 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306994; rev:7; classtype:trojan-activity;)
alert ip any any -> 200.41.121.90 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306995; rev:7; classtype:trojan-activity;)
alert ip any any -> 45.118.136.92 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306996; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.160.53.126 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306997; rev:7; classtype:trojan-activity;)
alert ip any any -> 96.9.73.73 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306998; rev:7; classtype:trojan-activity;)
alert ip any any -> 96.9.77.142 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3306999; rev:7; classtype:trojan-activity;)
alert ip any any -> 177.74.232.124 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3307000; rev:7; classtype:trojan-activity;)
alert ip any any -> 36.89.106.69 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3307001; rev:7; classtype:trojan-activity;)
alert ip any any -> 113.160.130.116 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3307002; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.108.228.62 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3307003; rev:7; classtype:trojan-activity;)
alert ip any any -> 181.30.69.50 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3307004; rev:7; classtype:trojan-activity;)
alert ip any any -> 103.12.161.194 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3307005; rev:7; classtype:trojan-activity;)
alert ip any any -> 96.9.77.56 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3307006; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.136.178.52 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3307007; rev:7; classtype:trojan-activity;)
alert ip any any -> 110.93.15.98 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3307008; rev:7; classtype:trojan-activity;)
alert ip any any -> 122.50.6.122 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3307009; rev:7; classtype:trojan-activity;)
alert ip any any -> 36.91.45.10 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3307010; rev:7; classtype:trojan-activity;)
alert ip any any -> 103.111.83.246 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3307011; rev:7; classtype:trojan-activity;)
alert ip any any -> 182.253.113.67 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3307012; rev:7; classtype:trojan-activity;)
alert ip any any -> 36.66.218.117 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3307013; rev:7; classtype:trojan-activity;)
alert ip any any -> 36.89.243.241 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3307014; rev:7; classtype:trojan-activity;)
alert ip any any -> 80.210.32.67 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3307015; rev:7; classtype:trojan-activity;)
alert ip any any -> 36.89.182.225 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3307016; rev:7; classtype:trojan-activity;)
alert ip any any -> 173.91.22.41 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3307017; rev:7; classtype:trojan-activity;)
alert ip any any -> 108.48.41.69 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3307018; rev:7; classtype:trojan-activity;)
alert ip any any -> 200.55.243.138 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3307019; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.55.233.156 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_21, updated_at 2022_03_19; sid:3307020; rev:7; classtype:trojan-activity;)
alert ip any any -> 188.40.203.209 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_22, updated_at 2022_03_19; sid:3307021; rev:7; classtype:trojan-activity;)
alert ip any any -> 80.82.68.32 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_22, updated_at 2022_03_19; sid:3307022; rev:7; classtype:trojan-activity;)
alert ip any any -> 85.204.116.198 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_22, updated_at 2022_03_19; sid:3307023; rev:7; classtype:trojan-activity;)
alert ip any any -> 195.123.239.53 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_22, updated_at 2022_03_19; sid:3307024; rev:7; classtype:trojan-activity;)
alert ip any any -> 162.216.0.190 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_22, updated_at 2022_03_19; sid:3307025; rev:7; classtype:trojan-activity;)
alert ip any any -> 188.40.203.215 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_22, updated_at 2022_03_19; sid:3307026; rev:7; classtype:trojan-activity;)
alert ip any any -> 185.14.31.135 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_22, updated_at 2022_03_19; sid:3307027; rev:7; classtype:trojan-activity;)
alert ip any any -> 195.123.221.121 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_22, updated_at 2022_03_19; sid:3307028; rev:7; classtype:trojan-activity;)
alert ip any any -> 78.108.216.13 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_22, updated_at 2022_03_19; sid:3307029; rev:7; classtype:trojan-activity;)
alert ip any any -> 93.189.42.114 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_22, updated_at 2022_03_19; sid:3307030; rev:7; classtype:trojan-activity;)
alert ip any any -> 46.17.107.116 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_22, updated_at 2022_03_19; sid:3307031; rev:7; classtype:trojan-activity;)
alert ip any any -> 108.26.231.214 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_22, updated_at 2022_03_19; sid:3307032; rev:7; classtype:trojan-activity;)
alert ip any any -> 209.182.216.177 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_22, updated_at 2022_03_19; sid:3307033; rev:7; classtype:trojan-activity;)
alert ip any any -> 94.49.254.194 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_22, updated_at 2022_03_19; sid:3307034; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.96.118.251 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_22, updated_at 2022_03_19; sid:3307035; rev:7; classtype:trojan-activity;)
alert ip any any -> 105.209.239.55 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_22, updated_at 2022_03_19; sid:3307036; rev:7; classtype:trojan-activity;)
alert ip any any -> 78.189.111.208 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://twitter.com/abuse_ch/status/1284480150189543424; reference: url,https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_22, updated_at 2022_03_19; sid:3307037; rev:7; classtype:trojan-activity;)
alert ip any any -> 162.241.149.128 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/250018/0/html; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_23, updated_at 2022_03_19; sid:3307038; rev:7; classtype:trojan-activity;)
alert ip any any -> 87.106.231.60 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/250018/0/html; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_23, updated_at 2022_03_19; sid:3307039; rev:7; classtype:trojan-activity;)
alert ip any any -> 192.210.217.94 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https:// www.joesandbox.com/analysis/250018/0/html; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_23, updated_at 2022_03_19; sid:3307040; rev:7; classtype:trojan-activity;)
alert ip any any -> 74.208.173.91 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/250018/0/html; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_23, updated_at 2022_03_19; sid:3307041; rev:7; classtype:trojan-activity;)
alert ip any any -> 110.44.113.2 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/250018/0/html; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_23, updated_at 2022_03_19; sid:3307042; rev:7; classtype:trojan-activity;)
alert ip any any -> 37.46.129.215 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/250018/0/html; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_23, updated_at 2022_03_19; sid:3307043; rev:7; classtype:trojan-activity;)
alert ip any any -> 185.142.236.163 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/250018/0/html; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_23, updated_at 2022_03_19; sid:3307044; rev:7; classtype:trojan-activity;)
alert ip any any -> 37.208.106.146 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/250018/0/html; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_23, updated_at 2022_03_19; sid:3307045; rev:7; classtype:trojan-activity;)
alert ip any any -> 140.207.113.106 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/250018/0/html; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_23, updated_at 2022_03_19; sid:3307046; rev:7; classtype:trojan-activity;)
alert ip any any -> 195.201.56.70 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/250018/0/html; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_23, updated_at 2022_03_19; sid:3307047; rev:7; classtype:trojan-activity;)
alert ip any any -> 46.49.124.53 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/250018/0/html; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_23, updated_at 2022_03_19; sid:3307048; rev:7; classtype:trojan-activity;)
alert ip any any -> 91.83.93.103 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/250018/0/html; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_23, updated_at 2022_03_19; sid:3307049; rev:7; classtype:trojan-activity;)
alert ip any any -> 143.95.101.72 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/250018/0/html; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_23, updated_at 2022_03_19; sid:3307050; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.63.7.166 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/250018/0/html; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_23, updated_at 2022_03_19; sid:3307051; rev:7; classtype:trojan-activity;)
alert ip any any -> 50.116.78.109 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/250018/0/html; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_23, updated_at 2022_03_19; sid:3307052; rev:7; classtype:trojan-activity;)
alert ip any any -> 179.5.118.12 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/250018/0/html; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_23, updated_at 2022_03_19; sid:3307053; rev:7; classtype:trojan-activity;)
alert ip any any -> 181.134.9.162 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/250018/0/html; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_23, updated_at 2022_03_19; sid:3307054; rev:7; classtype:trojan-activity;)
alert ip any any -> 192.163.221.191 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/250018/0/html; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_23, updated_at 2022_03_19; sid:3307055; rev:7; classtype:trojan-activity;)
alert ip any any -> 163.172.107.70 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/250018/0/html; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_23, updated_at 2022_03_19; sid:3307056; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.251.235.239 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/250018/0/html; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_23, updated_at 2022_03_19; sid:3307057; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.111.215.4 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/250018/0/html; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_23, updated_at 2022_03_19; sid:3307058; rev:7; classtype:trojan-activity;)
alert ip any any -> 201.212.78.182 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/250018/0/html; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_23, updated_at 2022_03_19; sid:3307059; rev:7; classtype:trojan-activity;)
alert ip any any -> 216.75.37.196 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/250018/0/html; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_23, updated_at 2022_03_19; sid:3307060; rev:7; classtype:trojan-activity;)
alert ip any any -> 24.249.135.121 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/253598/0/html#domains; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_07_29, updated_at 2022_03_19; sid:3307061; rev:7; classtype:trojan-activity;)
alert ip any any -> 104.236.246.93 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_08_22, updated_at 2022_03_19; sid:3307062; rev:7; classtype:trojan-activity;)
alert ip any any -> 188.83.220.2 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_08_22, updated_at 2022_03_19; sid:3307063; rev:7; classtype:trojan-activity;)
alert ip any any -> 83.169.36.251 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_08_22, updated_at 2022_03_19; sid:3307064; rev:7; classtype:trojan-activity;)
alert ip any any -> 203.153.216.189 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_08_22, updated_at 2022_03_19; sid:3307065; rev:7; classtype:trojan-activity;)
alert ip any any -> 189.212.199.126 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_08_22, updated_at 2022_03_19; sid:3307066; rev:7; classtype:trojan-activity;)
alert ip any any -> 222.214.218.37 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_08_22, updated_at 2022_03_19; sid:3307067; rev:7; classtype:trojan-activity;)
alert ip any any -> 93.147.212.206 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_08_22, updated_at 2022_03_19; sid:3307068; rev:7; classtype:trojan-activity;)
alert ip any any -> 91.211.88.52 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_08_22, updated_at 2022_03_19; sid:3307069; rev:7; classtype:trojan-activity;)
alert ip any any -> 153.163.83.106 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_08_22, updated_at 2022_03_19; sid:3307070; rev:7; classtype:trojan-activity;)
alert ip any any -> 87.106.136.232 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_08_22, updated_at 2022_03_19; sid:3307071; rev:7; classtype:trojan-activity;)
alert ip any any -> 204.197.146.48 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_08_22, updated_at 2022_03_19; sid:3307072; rev:7; classtype:trojan-activity;)
alert ip any any -> 69.30.203.214 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_08_22, updated_at 2022_03_19; sid:3307073; rev:7; classtype:trojan-activity;)
alert ip any any -> 116.202.234.183 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_08_22, updated_at 2022_03_19; sid:3307074; rev:7; classtype:trojan-activity;)
alert ip any any -> 137.119.36.33 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_08_22, updated_at 2022_03_19; sid:3307075; rev:7; classtype:trojan-activity;)
alert ip any any -> 5.196.74.210 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_08_22, updated_at 2022_03_19; sid:3307076; rev:7; classtype:trojan-activity;)
alert ip any any -> 173.62.217.22 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_08_22, updated_at 2022_03_19; sid:3307077; rev:7; classtype:trojan-activity;)
alert ip any any -> 181.30.61.163 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_08_22, updated_at 2022_03_19; sid:3307078; rev:7; classtype:trojan-activity;)
alert ip any any -> 103.83.81.141 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_08_22, updated_at 2022_03_19; sid:3307079; rev:7; classtype:trojan-activity;)
alert ip any any -> 162.249.220.190 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_08_22, updated_at 2022_03_19; sid:3307080; rev:7; classtype:trojan-activity;)
alert ip any any -> 24.179.13.119 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_08_22, updated_at 2022_03_19; sid:3307081; rev:7; classtype:trojan-activity;)
alert ip any any -> 64.183.73.122 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_08_24, updated_at 2022_03_19; sid:3307082; rev:7; classtype:trojan-activity;)
alert ip any any -> 192.187.99.90 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_08_24, updated_at 2022_03_19; sid:3307083; rev:7; classtype:trojan-activity;)
alert ip any any -> 75.139.38.211 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_08_24, updated_at 2022_03_19; sid:3307084; rev:7; classtype:trojan-activity;)
alert ip any any -> 73.116.193.136 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_08_24, updated_at 2022_03_19; sid:3307085; rev:7; classtype:trojan-activity;)
alert ip any any -> 201.171.150.41 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_08_24, updated_at 2022_03_19; sid:3307086; rev:7; classtype:trojan-activity;)
alert ip any any -> 149.202.153.251 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_08_24, updated_at 2022_03_19; sid:3307087; rev:7; classtype:trojan-activity;)
alert ip any any -> 162.241.134.130 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_08_25, updated_at 2022_03_19; sid:3307088; rev:7; classtype:trojan-activity;)
alert ip any any -> 37.70.8.161 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_08_25, updated_at 2022_03_19; sid:3307089; rev:7; classtype:trojan-activity;)
alert ip any any -> 173.81.218.65 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_08_26, updated_at 2022_03_19; sid:3307090; rev:7; classtype:trojan-activity;)
alert ip any any -> 65.156.53.186 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_08_26, updated_at 2022_03_19; sid:3307091; rev:7; classtype:trojan-activity;)
alert ip any any -> 88.249.181.198 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_08_26, updated_at 2022_03_19; sid:3307092; rev:7; classtype:trojan-activity;)
alert ip any any -> 87.118.70.45 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_08_26, updated_at 2022_03_19; sid:3307093; rev:7; classtype:trojan-activity;)
alert ip any any -> 71.197.211.156 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_08_26, updated_at 2022_03_19; sid:3307094; rev:7; classtype:trojan-activity;)
alert ip any any -> 45.55.36.51 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_08_26, updated_at 2022_03_19; sid:3307095; rev:7; classtype:trojan-activity;)
alert ip any any -> 109.74.5.95 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_08_26, updated_at 2022_03_19; sid:3307096; rev:7; classtype:trojan-activity;)
alert ip any any -> 112.185.64.233 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_08_26, updated_at 2022_03_19; sid:3307097; rev:7; classtype:trojan-activity;)
alert ip any any -> 68.188.112.97 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_08_26, updated_at 2022_03_19; sid:3307098; rev:7; classtype:trojan-activity;)
alert ip any any -> 168.235.67.138 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_07, updated_at 2022_03_19; sid:3307099; rev:7; classtype:trojan-activity;)
alert ip any any -> 118.110.236.121 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_07, updated_at 2022_03_19; sid:3307100; rev:7; classtype:trojan-activity;)
alert ip any any -> 149.202.5.139 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_07, updated_at 2022_03_19; sid:3307101; rev:7; classtype:trojan-activity;)
alert ip any any -> 153.92.4.96 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_07, updated_at 2022_03_19; sid:3307102; rev:7; classtype:trojan-activity;)
alert ip any any -> 51.75.163.68 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_07, updated_at 2022_03_19; sid:3307103; rev:7; classtype:trojan-activity;)
alert ip any any -> 140.186.212.146 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_07, updated_at 2022_03_19; sid:3307104; rev:7; classtype:trojan-activity;)
alert ip any any -> 85.214.28.226 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_07, updated_at 2022_03_19; sid:3307105; rev:7; classtype:trojan-activity;)
alert ip any any -> 50.121.220.50 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_07, updated_at 2022_03_19; sid:3307106; rev:7; classtype:trojan-activity;)
alert ip any any -> 210.1.219.238 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_09, updated_at 2022_03_19; sid:3307107; rev:7; classtype:trojan-activity;)
alert ip any any -> 73.84.105.76 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_09, updated_at 2022_03_19; sid:3307108; rev:7; classtype:trojan-activity;)
alert ip any any -> 173.94.215.84 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_09, updated_at 2022_03_19; sid:3307109; rev:7; classtype:trojan-activity;)
alert ip any any -> 85.25.207.108 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_09, updated_at 2022_03_19; sid:3307110; rev:7; classtype:trojan-activity;)
alert ip any any -> 178.128.14.92 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_09, updated_at 2022_03_19; sid:3307111; rev:7; classtype:trojan-activity;)
alert ip any any -> 67.68.210.95 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_09, updated_at 2022_03_19; sid:3307112; rev:7; classtype:trojan-activity;)
alert ip any any -> 192.158.216.73 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_09, updated_at 2022_03_19; sid:3307113; rev:7; classtype:trojan-activity;)
alert ip any any -> 185.215.227.107 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_09, updated_at 2022_03_19; sid:3307114; rev:7; classtype:trojan-activity;)
alert ip any any -> 54.37.42.48 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/browse/host/51.75.33.122/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_09, updated_at 2022_03_19; sid:3307115; rev:7; classtype:trojan-activity;)
alert ip any any -> 51.75.33.122 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/browse/host/54.37.42.48/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_09, updated_at 2022_03_19; sid:3307116; rev:7; classtype:trojan-activity;)
alert ip any any -> 51.38.124.206 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_09, updated_at 2022_03_19; sid:3307117; rev:7; classtype:trojan-activity;)
alert ip any any -> 51.254.140.91 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_09, updated_at 2022_03_19; sid:3307118; rev:7; classtype:trojan-activity;)
alert ip any any -> 118.2.218.1 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_09, updated_at 2022_03_19; sid:3307119; rev:7; classtype:trojan-activity;)
alert ip any any -> 5.9.227.244 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_09, updated_at 2022_03_19; sid:3307120; rev:7; classtype:trojan-activity;)
alert ip any any -> 217.199.175.216 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_09, updated_at 2022_03_19; sid:3307121; rev:7; classtype:trojan-activity;)
alert ip any any -> 46.101.212.195 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_09, updated_at 2022_03_19; sid:3307122; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.97.30.167 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_09, updated_at 2022_03_19; sid:3307123; rev:7; classtype:trojan-activity;)
alert ip any any -> 85.234.143.94 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_09, updated_at 2022_03_19; sid:3307124; rev:7; classtype:trojan-activity;)
alert ip any any -> 213.189.36.51 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_09, updated_at 2022_03_19; sid:3307125; rev:7; classtype:trojan-activity;)
alert ip any any -> 189.173.113.67 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_09, updated_at 2022_03_19; sid:3307126; rev:7; classtype:trojan-activity;)
alert ip any any -> 104.236.137.72 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_09, updated_at 2022_03_19; sid:3307127; rev:7; classtype:trojan-activity;)
alert ip any any -> 138.68.106.4 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_09, updated_at 2022_03_19; sid:3307128; rev:7; classtype:trojan-activity;)
alert ip any any -> 188.14.39.65 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_09, updated_at 2022_03_19; sid:3307129; rev:7; classtype:trojan-activity;)
alert ip any any -> 66.61.94.36 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_10, updated_at 2022_03_19; sid:3307130; rev:7; classtype:trojan-activity;)
alert ip any any -> 107.161.30.122 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_10, updated_at 2022_03_19; sid:3307131; rev:7; classtype:trojan-activity;)
alert ip any any -> 162.144.42.60 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_10, updated_at 2022_03_19; sid:3307132; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.136.179.102 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_10, updated_at 2022_03_19; sid:3307133; rev:7; classtype:trojan-activity;)
alert ip any any -> 94.102.209.63 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_10, updated_at 2022_03_19; sid:3307134; rev:7; classtype:trojan-activity;)
alert ip any any -> 97.107.135.148 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_10, updated_at 2022_03_19; sid:3307135; rev:7; classtype:trojan-activity;)
alert ip any any -> 103.86.49.11 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_10, updated_at 2022_03_19; sid:3307136; rev:7; classtype:trojan-activity;)
alert ip any any -> 107.5.122.110 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_10, updated_at 2022_03_19; sid:3307137; rev:7; classtype:trojan-activity;)
alert ip any any -> 45.55.219.163 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_10, updated_at 2022_03_19; sid:3307138; rev:7; classtype:trojan-activity;)
alert ip any any -> 91.83.93.99 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_10, updated_at 2022_03_19; sid:3307139; rev:7; classtype:trojan-activity;)
alert ip any any -> 172.91.208.86 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_10, updated_at 2022_03_19; sid:3307140; rev:7; classtype:trojan-activity;)
alert ip any any -> 203.130.0.67 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_10, updated_at 2022_03_19; sid:3307141; rev:7; classtype:trojan-activity;)
alert ip any any -> 78.24.219.147 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_13, updated_at 2022_03_19; sid:3307142; rev:7; classtype:trojan-activity;)
alert ip any any -> 46.105.131.79 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_13, updated_at 2022_03_19; sid:3307143; rev:7; classtype:trojan-activity;)
alert ip any any -> 162.241.242.173 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_13, updated_at 2022_03_19; sid:3307144; rev:7; classtype:trojan-activity;)
alert ip any any -> 98.13.75.196 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_13, updated_at 2022_03_19; sid:3307145; rev:7; classtype:trojan-activity;)
alert ip any any -> 46.105.131.68 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_13, updated_at 2022_03_19; sid:3307146; rev:7; classtype:trojan-activity;)
alert ip any any -> 181.188.149.134 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_13, updated_at 2022_03_19; sid:3307147; rev:7; classtype:trojan-activity;)
alert ip any any -> 200.58.171.51 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_13, updated_at 2022_03_19; sid:3307148; rev:7; classtype:trojan-activity;)
alert ip any any -> 198.57.203.63 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_13, updated_at 2022_03_19; sid:3307149; rev:7; classtype:trojan-activity;)
alert ip any any -> 143.0.245.169 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_13, updated_at 2022_03_19; sid:3307150; rev:7; classtype:trojan-activity;)
alert ip any any -> 5.67.96.120 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_13, updated_at 2022_03_19; sid:3307151; rev:7; classtype:trojan-activity;)
alert ip any any -> 50.81.3.113 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_13, updated_at 2022_03_19; sid:3307152; rev:7; classtype:trojan-activity;)
alert ip any any -> 68.171.118.7 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_13, updated_at 2022_03_19; sid:3307153; rev:7; classtype:trojan-activity;)
alert ip any any -> 79.98.24.39 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_13, updated_at 2022_03_19; sid:3307154; rev:7; classtype:trojan-activity;)
alert ip any any -> 61.19.246.238 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_13, updated_at 2022_03_19; sid:3307155; rev:7; classtype:trojan-activity;)
alert ip any any -> 139.59.60.244 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_13, updated_at 2022_03_19; sid:3307156; rev:7; classtype:trojan-activity;)
alert ip any any -> 98.109.204.230 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_13, updated_at 2022_03_19; sid:3307157; rev:7; classtype:trojan-activity;)
alert ip any any -> 37.139.21.175 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_13, updated_at 2022_03_19; sid:3307158; rev:7; classtype:trojan-activity;)
alert ip any any -> 85.152.162.105 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_13, updated_at 2022_03_19; sid:3307159; rev:7; classtype:trojan-activity;)
alert ip any any -> 95.179.229.244 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_13, updated_at 2022_03_19; sid:3307160; rev:7; classtype:trojan-activity;)
alert ip any any -> 24.43.99.75 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_13, updated_at 2022_03_19; sid:3307161; rev:7; classtype:trojan-activity;)
alert ip any any -> 181.230.116.163 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://any.run/malware-trends/emotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_13, updated_at 2022_03_19; sid:3307162; rev:7; classtype:trojan-activity;)
alert ip any any -> 38.88.126.202 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307163; rev:7; classtype:trojan-activity;)
alert ip any any -> 82.76.111.249 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307164; rev:7; classtype:trojan-activity;)
alert ip any any -> 184.66.18.83 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307165; rev:7; classtype:trojan-activity;)
alert ip any any -> 77.238.212.227 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307166; rev:7; classtype:trojan-activity;)
alert ip any any -> 199.203.62.165 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307167; rev:7; classtype:trojan-activity;)
alert ip any any -> 188.2.217.94 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307168; rev:7; classtype:trojan-activity;)
alert ip any any -> 178.250.54.208 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307169; rev:7; classtype:trojan-activity;)
alert ip any any -> 206.15.68.237 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307170; rev:7; classtype:trojan-activity;)
alert ip any any -> 65.36.62.20 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307171; rev:7; classtype:trojan-activity;)
alert ip any any -> 216.47.196.104 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307172; rev:7; classtype:trojan-activity;)
alert ip any any -> 219.92.8.17 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307173; rev:7; classtype:trojan-activity;)
alert ip any any -> 213.60.96.117 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307174; rev:7; classtype:trojan-activity;)
alert ip any any -> 72.167.223.217 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307175; rev:7; classtype:trojan-activity;)
alert ip any any -> 177.74.228.34 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307176; rev:7; classtype:trojan-activity;)
alert ip any any -> 186.103.141.250 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307177; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.163.31.26 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307178; rev:7; classtype:trojan-activity;)
alert ip any any -> 85.109.159.61 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307179; rev:7; classtype:trojan-activity;)
alert ip any any -> 213.197.182.158 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307180; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.2.31.172 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307181; rev:7; classtype:trojan-activity;)
alert ip any any -> 67.247.242.247 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307182; rev:7; classtype:trojan-activity;)
alert ip any any -> 64.201.88.132 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307183; rev:7; classtype:trojan-activity;)
alert ip any any -> 152.169.22.67 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307184; rev:7; classtype:trojan-activity;)
alert ip any any -> 24.135.1.177 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307185; rev:7; classtype:trojan-activity;)
alert ip any any -> 191.182.6.118 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307186; rev:7; classtype:trojan-activity;)
alert ip any any -> 51.159.23.217 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307187; rev:7; classtype:trojan-activity;)
alert ip any any -> 110.142.219.51 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307188; rev:7; classtype:trojan-activity;)
alert ip any any -> 68.69.155.181 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307189; rev:7; classtype:trojan-activity;)
alert ip any any -> 45.33.77.42 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307190; rev:7; classtype:trojan-activity;)
alert ip any any -> 95.9.180.128 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307191; rev:7; classtype:trojan-activity;)
alert ip any any -> 91.219.169.180 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307192; rev:7; classtype:trojan-activity;)
alert ip any any -> 188.135.15.49 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307193; rev:7; classtype:trojan-activity;)
alert ip any any -> 209.236.123.42 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307194; rev:7; classtype:trojan-activity;)
alert ip any any -> 177.73.0.98 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307195; rev:7; classtype:trojan-activity;)
alert ip any any -> 185.178.10.77 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307196; rev:7; classtype:trojan-activity;)
alert ip any any -> 216.10.40.16 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307197; rev:7; classtype:trojan-activity;)
alert ip any any -> 45.16.226.117 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307198; rev:7; classtype:trojan-activity;)
alert ip any any -> 91.121.54.71 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307199; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.190.148.27 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307200; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.24.243.186 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307201; rev:7; classtype:trojan-activity;)
alert ip any any -> 138.97.60.141 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307202; rev:7; classtype:trojan-activity;)
alert ip any any -> 73.213.208.163 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307203; rev:7; classtype:trojan-activity;)
alert ip any any -> 103.106.236.83 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307204; rev:7; classtype:trojan-activity;)
alert ip any any -> 45.173.88.33 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307205; rev:7; classtype:trojan-activity;)
alert ip any any -> 111.67.77.202 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307206; rev:7; classtype:trojan-activity;)
alert ip any any -> 58.171.153.81 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307207; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.115.18.139 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307208; rev:7; classtype:trojan-activity;)
alert ip any any -> 5.189.178.202 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307209; rev:7; classtype:trojan-activity;)
alert ip any any -> 189.2.177.210 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307210; rev:7; classtype:trojan-activity;)
alert ip any any -> 72.135.200.124 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://www.joesandbox.com/analysis/284824/0/html#threatEmotet; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307211; rev:7; classtype:trojan-activity;)
alert ip any any -> 219.74.18.66 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307212; rev:7; classtype:trojan-activity;)
alert ip any any -> 179.191.239.255 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307213; rev:7; classtype:trojan-activity;)
alert ip any any -> 101.50.232.218 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307214; rev:7; classtype:trojan-activity;)
alert ip any any -> 222.159.240.58 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307215; rev:7; classtype:trojan-activity;)
alert ip any any -> 223.17.215.76 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307216; rev:7; classtype:trojan-activity;)
alert ip any any -> 175.139.144.229 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307217; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.225.150.234 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307218; rev:7; classtype:trojan-activity;)
alert ip any any -> 188.219.31.12 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307219; rev:7; classtype:trojan-activity;)
alert ip any any -> 89.205.113.80 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307220; rev:7; classtype:trojan-activity;)
alert ip any any -> 94.200.114.161 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307221; rev:7; classtype:trojan-activity;)
alert ip any any -> 120.150.60.189 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307222; rev:7; classtype:trojan-activity;)
alert ip any any -> 181.122.154.240 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307223; rev:7; classtype:trojan-activity;)
alert ip any any -> 91.75.75.46 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307224; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.96.15.50 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307225; rev:7; classtype:trojan-activity;)
alert ip any any -> 134.209.193.138 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307226; rev:7; classtype:trojan-activity;)
alert ip any any -> 216.208.76.186 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307227; rev:7; classtype:trojan-activity;)
alert ip any any -> 24.26.151.3 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307228; rev:7; classtype:trojan-activity;)
alert ip any any -> 174.45.13.118 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307229; rev:7; classtype:trojan-activity;)
alert ip any any -> 84.39.182.7 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307230; rev:7; classtype:trojan-activity;)
alert ip any any -> 45.182.161.17 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307231; rev:7; classtype:trojan-activity;)
alert ip any any -> 1.54.67.22 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307232; rev:7; classtype:trojan-activity;)
alert ip any any -> 118.101.24.148 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307233; rev:7; classtype:trojan-activity;)
alert ip any any -> 197.232.36.108 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307234; rev:7; classtype:trojan-activity;)
alert ip any any -> 68.183.233.80 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307235; rev:7; classtype:trojan-activity;)
alert ip any any -> 37.52.87.0 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307236; rev:7; classtype:trojan-activity;)
alert ip any any -> 2.144.244.204 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307237; rev:7; classtype:trojan-activity;)
alert ip any any -> 82.239.200.118 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307238; rev:7; classtype:trojan-activity;)
alert ip any any -> 194.187.133.160 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307239; rev:7; classtype:trojan-activity;)
alert ip any any -> 189.39.32.161 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307240; rev:7; classtype:trojan-activity;)
alert ip any any -> 62.30.7.67 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307241; rev:7; classtype:trojan-activity;)
alert ip any any -> 113.203.250.121 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307242; rev:7; classtype:trojan-activity;)
alert ip any any -> 186.109.152.201 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307243; rev:7; classtype:trojan-activity;)
alert ip any any -> 220.254.198.228 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307244; rev:7; classtype:trojan-activity;)
alert ip any any -> 153.232.188.106 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307245; rev:7; classtype:trojan-activity;)
alert ip any any -> 197.221.158.162 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307246; rev:7; classtype:trojan-activity;)
alert ip any any -> 181.137.229.1 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307247; rev:7; classtype:trojan-activity;)
alert ip any any -> 200.114.213.233 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307248; rev:7; classtype:trojan-activity;)
alert ip any any -> 187.161.206.24 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307249; rev:7; classtype:trojan-activity;)
alert ip any any -> 168.0.97.6 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307250; rev:7; classtype:trojan-activity;)
alert ip any any -> 181.126.54.234 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307251; rev:7; classtype:trojan-activity;)
alert ip any any -> 81.129.198.57 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307252; rev:7; classtype:trojan-activity;)
alert ip any any -> 70.121.172.89 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307253; rev:7; classtype:trojan-activity;)
alert ip any any -> 60.125.114.64 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307254; rev:7; classtype:trojan-activity;)
alert ip any any -> 86.98.143.163 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307255; rev:7; classtype:trojan-activity;)
alert ip any any -> 118.70.15.19 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307256; rev:7; classtype:trojan-activity;)
alert ip any any -> 175.29.183.2 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307257; rev:7; classtype:trojan-activity;)
alert ip any any -> 197.249.6.179 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307258; rev:7; classtype:trojan-activity;)
alert ip any any -> 41.84.248.134 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307259; rev:7; classtype:trojan-activity;)
alert ip any any -> 185.33.0.233 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307260; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.128.173.10 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307261; rev:7; classtype:trojan-activity;)
alert ip any any -> 178.238.232.46 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307262; rev:7; classtype:trojan-activity;)
alert ip any any -> 174.137.65.18 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307263; rev:7; classtype:trojan-activity;)
alert ip any any -> 112.78.142.170 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307264; rev:7; classtype:trojan-activity;)
alert ip any any -> 82.163.245.38 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307265; rev:7; classtype:trojan-activity;)
alert ip any any -> 86.57.216.23 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307266; rev:7; classtype:trojan-activity;)
alert ip any any -> 177.94.227.143 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307267; rev:7; classtype:trojan-activity;)
alert ip any any -> 41.84.237.198 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307268; rev:7; classtype:trojan-activity;)
alert ip any any -> 202.4.57.96 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307269; rev:7; classtype:trojan-activity;)
alert ip any any -> 89.186.91.200 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307270; rev:7; classtype:trojan-activity;)
alert ip any any -> 186.109.104.67 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307271; rev:7; classtype:trojan-activity;)
alert ip any any -> 24.135.198.218 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307272; rev:7; classtype:trojan-activity;)
alert ip any any -> 5.153.250.14 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307273; rev:7; classtype:trojan-activity;)
alert ip any any -> 209.126.6.222 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307274; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.53.144.120 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307275; rev:7; classtype:trojan-activity;)
alert ip any any -> 179.62.238.49 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307276; rev:7; classtype:trojan-activity;)
alert ip any any -> 181.114.114.203 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307277; rev:7; classtype:trojan-activity;)
alert ip any any -> 41.106.96.12 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307278; rev:7; classtype:trojan-activity;)
alert ip any any -> 85.66.181.138 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307279; rev:7; classtype:trojan-activity;)
alert ip any any -> 71.57.180.213 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307280; rev:7; classtype:trojan-activity;)
alert ip any any -> 174.100.27.229 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307281; rev:7; classtype:trojan-activity;)
alert ip any any -> 2.58.16.85 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307282; rev:7; classtype:trojan-activity;)
alert ip any any -> 177.32.8.85 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307283; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.212.140.6 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307284; rev:7; classtype:trojan-activity;)
alert ip any any -> 197.83.232.19 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307285; rev:7; classtype:trojan-activity;)
alert ip any any -> 201.213.177.139 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307286; rev:7; classtype:trojan-activity;)
alert ip any any -> 212.93.117.170 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307287; rev:7; classtype:trojan-activity;)
alert ip any any -> 85.105.140.135 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307288; rev:7; classtype:trojan-activity;)
alert ip any any -> 203.117.253.142 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307289; rev:7; classtype:trojan-activity;)
alert ip any any -> 97.82.79.83 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307290; rev:7; classtype:trojan-activity;)
alert ip any any -> 207.144.103.227 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307291; rev:7; classtype:trojan-activity;)
alert ip any any -> 91.222.77.105 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307292; rev:7; classtype:trojan-activity;)
alert ip any any -> 24.233.112.152 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307293; rev:7; classtype:trojan-activity;)
alert ip any any -> 67.205.85.243 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307294; rev:7; classtype:trojan-activity;)
alert ip any any -> 192.210.135.126 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307295; rev:7; classtype:trojan-activity;)
alert ip any any -> 95.85.151.205 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307296; rev:7; classtype:trojan-activity;)
alert ip any any -> 213.176.36.147 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307297; rev:7; classtype:trojan-activity;)
alert ip any any -> 24.137.76.62 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307298; rev:7; classtype:trojan-activity;)
alert ip any any -> 209.143.35.232 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307299; rev:7; classtype:trojan-activity;)
alert ip any any -> 51.75.33.120 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307300; rev:7; classtype:trojan-activity;)
alert ip any any -> 105.213.67.88 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307301; rev:7; classtype:trojan-activity;)
alert ip any any -> 159.203.232.29 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307302; rev:7; classtype:trojan-activity;)
alert ip any any -> 88.217.172.164 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307303; rev:7; classtype:trojan-activity;)
alert ip any any -> 176.216.226.44 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307304; rev:7; classtype:trojan-activity;)
alert ip any any -> 174.102.48.180 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307305; rev:7; classtype:trojan-activity;)
alert ip any any -> 167.86.90.214 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307306; rev:7; classtype:trojan-activity;)
alert ip any any -> 186.32.90.103 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307307; rev:7; classtype:trojan-activity;)
alert ip any any -> 24.148.98.177 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307308; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.190.15.20 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307309; rev:7; classtype:trojan-activity;)
alert ip any any -> 92.24.51.238 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307310; rev:7; classtype:trojan-activity;)
alert ip any any -> 107.185.211.16 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307311; rev:7; classtype:trojan-activity;)
alert ip any any -> 115.78.11.155 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307312; rev:7; classtype:trojan-activity;)
alert ip any any -> 181.211.11.242 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307313; rev:7; classtype:trojan-activity;)
alert ip any any -> 96.8.113.4 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307314; rev:7; classtype:trojan-activity;)
alert ip any any -> 182.176.95.147 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307315; rev:7; classtype:trojan-activity;)
alert ip any any -> 176.9.93.82 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307316; rev:7; classtype:trojan-activity;)
alert ip any any -> 185.208.226.142 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307317; rev:7; classtype:trojan-activity;)
alert ip any any -> 182.187.139.200 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307318; rev:7; classtype:trojan-activity;)
alert ip any any -> 188.166.25.84 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307319; rev:7; classtype:trojan-activity;)
alert ip any any -> 81.198.69.61 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307320; rev:7; classtype:trojan-activity;)
alert ip any any -> 147.91.184.91 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307321; rev:7; classtype:trojan-activity;)
alert ip any any -> 94.206.45.18 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307322; rev:7; classtype:trojan-activity;)
alert ip any any -> 66.228.49.173 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307323; rev:7; classtype:trojan-activity;)
alert ip any any -> 104.131.103.128 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307324; rev:7; classtype:trojan-activity;)
alert ip any any -> 139.99.157.213 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307325; rev:7; classtype:trojan-activity;)
alert ip any any -> 202.5.47.71 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307326; rev:7; classtype:trojan-activity;)
alert ip any any -> 176.10.250.88 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307327; rev:7; classtype:trojan-activity;)
alert ip any any -> 74.120.55.163 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307328; rev:7; classtype:trojan-activity;)
alert ip any any -> 213.181.91.224 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307329; rev:7; classtype:trojan-activity;)
alert ip any any -> 116.125.120.88 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307330; rev:7; classtype:trojan-activity;)
alert ip any any -> 114.173.201.110 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307331; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.31.53.131 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307332; rev:7; classtype:trojan-activity;)
alert ip any any -> 97.104.107.190 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307333; rev:7; classtype:trojan-activity;)
alert ip any any -> 145.236.8.174 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307334; rev:7; classtype:trojan-activity;)
alert ip any any -> 157.147.76.151 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307335; rev:7; classtype:trojan-activity;)
alert ip any any -> 47.146.32.175 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307336; rev:7; classtype:trojan-activity;)
alert ip any any -> 72.12.127.184 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307337; rev:7; classtype:trojan-activity;)
alert ip any any -> 189.194.58.119 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307338; rev:7; classtype:trojan-activity;)
alert ip any any -> 153.220.182.49 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307339; rev:7; classtype:trojan-activity;)
alert ip any any -> 67.241.24.163 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307340; rev:7; classtype:trojan-activity;)
alert ip any any -> 47.144.21.12 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307341; rev:7; classtype:trojan-activity;)
alert ip any any -> 114.146.222.200 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307342; rev:7; classtype:trojan-activity;)
alert ip any any -> 183.101.175.193 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307343; rev:7; classtype:trojan-activity;)
alert ip any any -> 187.64.128.197 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307344; rev:7; classtype:trojan-activity;)
alert ip any any -> 115.165.3.213 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307345; rev:7; classtype:trojan-activity;)
alert ip any any -> 92.23.34.86 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307346; rev:7; classtype:trojan-activity;)
alert ip any any -> 201.213.156.176 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307347; rev:7; classtype:trojan-activity;)
alert ip any any -> 65.111.120.223 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307348; rev:7; classtype:trojan-activity;)
alert ip any any -> 85.59.136.180 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307349; rev:7; classtype:trojan-activity;)
alert ip any any -> 62.108.54.22 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307350; rev:7; classtype:trojan-activity;)
alert ip any any -> 47.146.117.214 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307351; rev:7; classtype:trojan-activity;)
alert ip any any -> 201.235.10.215 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307352; rev:7; classtype:trojan-activity;)
alert ip any any -> 93.151.186.85 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307353; rev:7; classtype:trojan-activity;)
alert ip any any -> 181.143.101.19 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307354; rev:7; classtype:trojan-activity;)
alert ip any any -> 189.146.1.78 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307355; rev:7; classtype:trojan-activity;)
alert ip any any -> 83.110.223.58 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307356; rev:7; classtype:trojan-activity;)
alert ip any any -> 189.1.185.98 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307357; rev:7; classtype:trojan-activity;)
alert ip any any -> 177.37.81.212 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307358; rev:7; classtype:trojan-activity;)
alert ip any any -> 76.27.179.47 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307359; rev:7; classtype:trojan-activity;)
alert ip any any -> 179.60.229.168 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307360; rev:7; classtype:trojan-activity;)
alert ip any any -> 24.157.25.203 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307361; rev:7; classtype:trojan-activity;)
alert ip any any -> 201.214.108.231 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307362; rev:7; classtype:trojan-activity;)
alert ip any any -> 191.99.160.58 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307363; rev:7; classtype:trojan-activity;)
alert ip any any -> 47.153.182.47 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307364; rev:7; classtype:trojan-activity;)
alert ip any any -> 24.234.133.205 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307365; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.164.75.175 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307366; rev:7; classtype:trojan-activity;)
alert ip any any -> 153.204.32.49 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307367; rev:7; classtype:trojan-activity;)
alert ip any any -> 187.207.207.16 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307368; rev:7; classtype:trojan-activity;)
alert ip any any -> 187.106.41.99 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307369; rev:7; classtype:trojan-activity;)
alert ip any any -> 212.231.60.98 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307370; rev:7; classtype:trojan-activity;)
alert ip any any -> 201.170.77.7 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307371; rev:7; classtype:trojan-activity;)
alert ip any any -> 70.167.215.250 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307372; rev:7; classtype:trojan-activity;)
alert ip any any -> 71.50.31.38 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307373; rev:7; classtype:trojan-activity;)
alert ip any any -> 71.208.216.10 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307374; rev:7; classtype:trojan-activity;)
alert ip any any -> 212.156.133.218 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307375; rev:7; classtype:trojan-activity;)
alert ip any any -> 95.9.185.228 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307376; rev:7; classtype:trojan-activity;)
alert ip any any -> 116.203.32.252 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307377; rev:7; classtype:trojan-activity;)
alert ip any any -> 153.126.210.205 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307378; rev:7; classtype:trojan-activity;)
alert ip any any -> 41.215.92.157 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307379; rev:7; classtype:trojan-activity;)
alert ip any any -> 24.1.189.87 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307380; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.144.18.198 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307381; rev:7; classtype:trojan-activity;)
alert ip any any -> 185.86.148.68 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307382; rev:7; classtype:trojan-activity;)
alert ip any any -> 79.45.112.220 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307383; rev:7; classtype:trojan-activity;)
alert ip any any -> 162.154.38.103 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307384; rev:7; classtype:trojan-activity;)
alert ip any any -> 95.216.118.202 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307385; rev:7; classtype:trojan-activity;)
alert ip any any -> 84.21.179.51 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307386; rev:7; classtype:trojan-activity;)
alert ip any any -> 195.76.232.114 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307387; rev:7; classtype:trojan-activity;)
alert ip any any -> 85.94.170.73 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307388; rev:7; classtype:trojan-activity;)
alert ip any any -> 196.179.249.218 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307389; rev:7; classtype:trojan-activity;)
alert ip any any -> 78.12.27.172 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307390; rev:7; classtype:trojan-activity;)
alert ip any any -> 193.80.169.64 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307391; rev:7; classtype:trojan-activity;)
alert ip any any -> 114.145.241.208 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307392; rev:7; classtype:trojan-activity;)
alert ip any any -> 68.44.137.144 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307393; rev:7; classtype:trojan-activity;)
alert ip any any -> 70.48.238.90 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307394; rev:7; classtype:trojan-activity;)
alert ip any any -> 67.235.68.222 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307395; rev:7; classtype:trojan-activity;)
alert ip any any -> 189.154.128.205 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307396; rev:7; classtype:trojan-activity;)
alert ip any any -> 220.213.79.166 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307397; rev:7; classtype:trojan-activity;)
alert ip any any -> 82.223.70.24 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307398; rev:7; classtype:trojan-activity;)
alert ip any any -> 142.105.151.124 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307399; rev:7; classtype:trojan-activity;)
alert ip any any -> 101.187.104.105 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307400; rev:7; classtype:trojan-activity;)
alert ip any any -> 180.222.165.169 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307401; rev:7; classtype:trojan-activity;)
alert ip any any -> 177.230.81.0 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307402; rev:7; classtype:trojan-activity;)
alert ip any any -> 186.208.123.210 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307403; rev:7; classtype:trojan-activity;)
alert ip any any -> 41.203.62.170 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307404; rev:7; classtype:trojan-activity;)
alert ip any any -> 110.143.8.89 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307405; rev:7; classtype:trojan-activity;)
alert ip any any -> 184.57.130.8 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307406; rev:7; classtype:trojan-activity;)
alert ip any any -> 177.0.241.28 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307407; rev:7; classtype:trojan-activity;)
alert ip any any -> 82.240.207.95 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307408; rev:7; classtype:trojan-activity;)
alert ip any any -> 177.38.15.151 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307409; rev:7; classtype:trojan-activity;)
alert ip any any -> 78.192.181.26 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307410; rev:7; classtype:trojan-activity;)
alert ip any any -> 80.102.134.174 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307411; rev:7; classtype:trojan-activity;)
alert ip any any -> 117.4.120.226 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307412; rev:7; classtype:trojan-activity;)
alert ip any any -> 200.126.237.113 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307413; rev:7; classtype:trojan-activity;)
alert ip any any -> 47.150.248.161 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307414; rev:7; classtype:trojan-activity;)
alert ip any any -> 186.80.169.128 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307415; rev:7; classtype:trojan-activity;)
alert ip any any -> 103.97.95.221 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307416; rev:7; classtype:trojan-activity;)
alert ip any any -> 102.22.62.71 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307417; rev:7; classtype:trojan-activity;)
alert ip any any -> 60.117.26.28 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307418; rev:7; classtype:trojan-activity;)
alert ip any any -> 186.33.141.88 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307419; rev:7; classtype:trojan-activity;)
alert ip any any -> 31.146.61.34 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307420; rev:7; classtype:trojan-activity;)
alert ip any any -> 14.161.6.60 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307421; rev:7; classtype:trojan-activity;)
alert ip any any -> 185.155.20.82 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307422; rev:7; classtype:trojan-activity;)
alert ip any any -> 58.177.172.160 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307423; rev:7; classtype:trojan-activity;)
alert ip any any -> 62.84.75.50 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307424; rev:7; classtype:trojan-activity;)
alert ip any any -> 50.35.17.13 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307425; rev:7; classtype:trojan-activity;)
alert ip any any -> 201.155.204.151 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307426; rev:7; classtype:trojan-activity;)
alert ip any any -> 220.132.16.114 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307427; rev:7; classtype:trojan-activity;)
alert ip any any -> 210.56.10.58 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307428; rev:7; classtype:trojan-activity;)
alert ip any any -> 42.200.178.117 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307429; rev:7; classtype:trojan-activity;)
alert ip any any -> 164.77.130.222 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307430; rev:7; classtype:trojan-activity;)
alert ip any any -> 199.83.161.218 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307431; rev:7; classtype:trojan-activity;)
alert ip any any -> 211.184.5.163 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307432; rev:7; classtype:trojan-activity;)
alert ip any any -> 87.252.100.28 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307433; rev:7; classtype:trojan-activity;)
alert ip any any -> 101.187.97.173 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307434; rev:7; classtype:trojan-activity;)
alert ip any any -> 156.67.114.199 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307435; rev:7; classtype:trojan-activity;)
alert ip any any -> 74.130.137.231 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307436; rev:7; classtype:trojan-activity;)
alert ip any any -> 220.128.125.18 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307437; rev:7; classtype:trojan-activity;)
alert ip any any -> 89.108.158.234 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307438; rev:7; classtype:trojan-activity;)
alert ip any any -> 104.32.141.43 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307439; rev:7; classtype:trojan-activity;)
alert ip any any -> 59.20.65.102 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307440; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.111.215.3 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307441; rev:7; classtype:trojan-activity;)
alert ip any any -> 212.174.19.87 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307442; rev:7; classtype:trojan-activity;)
alert ip any any -> 24.196.13.216 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307443; rev:7; classtype:trojan-activity;)
alert ip any any -> 72.10.33.195 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307444; rev:7; classtype:trojan-activity;)
alert ip any any -> 181.225.24.251 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307445; rev:7; classtype:trojan-activity;)
alert ip any any -> 94.206.82.254 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307446; rev:7; classtype:trojan-activity;)
alert ip any any -> 152.170.196.157 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307447; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.13.215.114 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307448; rev:7; classtype:trojan-activity;)
alert ip any any -> 81.215.14.128 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307449; rev:7; classtype:trojan-activity;)
alert ip any any -> 110.37.226.196 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307450; rev:7; classtype:trojan-activity;)
alert ip any any -> 113.160.88.86 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307451; rev:7; classtype:trojan-activity;)
alert ip any any -> 87.127.197.7 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307452; rev:7; classtype:trojan-activity;)
alert ip any any -> 189.1.185.248 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307453; rev:7; classtype:trojan-activity;)
alert ip any any -> 78.186.174.210 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307454; rev:7; classtype:trojan-activity;)
alert ip any any -> 200.73.228.225 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307455; rev:7; classtype:trojan-activity;)
alert ip any any -> 186.250.113.201 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307456; rev:7; classtype:trojan-activity;)
alert ip any any -> 110.145.124.178 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307457; rev:7; classtype:trojan-activity;)
alert ip any any -> 71.126.247.90 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307458; rev:7; classtype:trojan-activity;)
alert ip any any -> 172.221.229.86 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307459; rev:7; classtype:trojan-activity;)
alert ip any any -> 113.61.66.94 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307460; rev:7; classtype:trojan-activity;)
alert ip any any -> 182.71.222.187 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307461; rev:7; classtype:trojan-activity;)
alert ip any any -> 64.207.176.4 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307462; rev:7; classtype:trojan-activity;)
alert ip any any -> 149.210.171.237 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307463; rev:7; classtype:trojan-activity;)
alert ip any any -> 213.107.110.252 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307464; rev:7; classtype:trojan-activity;)
alert ip any any -> 173.73.87.96 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307465; rev:7; classtype:trojan-activity;)
alert ip any any -> 213.60.19.245 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307466; rev:7; classtype:trojan-activity;)
alert ip any any -> 78.188.33.71 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307467; rev:7; classtype:trojan-activity;)
alert ip any any -> 173.24.68.195 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307468; rev:7; classtype:trojan-activity;)
alert ip any any -> 94.76.247.61 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307469; rev:7; classtype:trojan-activity;)
alert ip any any -> 45.55.179.121 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307470; rev:7; classtype:trojan-activity;)
alert ip any any -> 104.236.28.47 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307471; rev:7; classtype:trojan-activity;)
alert ip any any -> 62.138.26.28 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307472; rev:7; classtype:trojan-activity;)
alert ip any any -> 105.27.155.182 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307473; rev:7; classtype:trojan-activity;)
alert ip any any -> 95.66.182.136 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307474; rev:7; classtype:trojan-activity;)
alert ip any any -> 113.52.123.226 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307475; rev:7; classtype:trojan-activity;)
alert ip any any -> 65.184.222.119 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307476; rev:7; classtype:trojan-activity;)
alert ip any any -> 177.188.121.26 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307477; rev:7; classtype:trojan-activity;)
alert ip any any -> 108.190.109.107 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307478; rev:7; classtype:trojan-activity;)
alert ip any any -> 74.208.45.104 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307479; rev:7; classtype:trojan-activity;)
alert ip any any -> 78.188.170.128 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307480; rev:7; classtype:trojan-activity;)
alert ip any any -> 31.16.195.72 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307481; rev:7; classtype:trojan-activity;)
alert ip any any -> 175.139.209.3 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307482; rev:7; classtype:trojan-activity;)
alert ip any any -> 184.162.115.11 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307483; rev:7; classtype:trojan-activity;)
alert ip any any -> 218.255.173.106 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307484; rev:7; classtype:trojan-activity;)
alert ip any any -> 200.69.224.73 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307485; rev:7; classtype:trojan-activity;)
alert ip any any -> 207.177.72.129 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307486; rev:7; classtype:trojan-activity;)
alert ip any any -> 223.197.185.60 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307487; rev:7; classtype:trojan-activity;)
alert ip any any -> 23.92.16.164 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307488; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.146.205.227 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307489; rev:7; classtype:trojan-activity;)
alert ip any any -> 222.144.13.169 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307490; rev:7; classtype:trojan-activity;)
alert ip any any -> 108.6.140.26 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307491; rev:7; classtype:trojan-activity;)
alert ip any any -> 115.65.111.148 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307492; rev:7; classtype:trojan-activity;)
alert ip any any -> 45.55.65.123 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307493; rev:7; classtype:trojan-activity;)
alert ip any any -> 75.114.235.105 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307494; rev:7; classtype:trojan-activity;)
alert ip any any -> 82.165.15.188 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307495; rev:7; classtype:trojan-activity;)
alert ip any any -> 186.200.205.170 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307496; rev:7; classtype:trojan-activity;)
alert ip any any -> 175.181.7.188 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307497; rev:7; classtype:trojan-activity;)
alert ip any any -> 152.168.248.128 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307498; rev:7; classtype:trojan-activity;)
alert ip any any -> 68.114.229.171 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307499; rev:7; classtype:trojan-activity;)
alert ip any any -> 178.20.74.212 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307500; rev:7; classtype:trojan-activity;)
alert ip any any -> 176.9.43.37 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307501; rev:7; classtype:trojan-activity;)
alert ip any any -> 90.69.145.210 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307502; rev:7; classtype:trojan-activity;)
alert ip any any -> 153.137.36.142 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307503; rev:7; classtype:trojan-activity;)
alert ip any any -> 74.130.83.133 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307504; rev:7; classtype:trojan-activity;)
alert ip any any -> 76.104.80.47 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307505; rev:7; classtype:trojan-activity;)
alert ip any any -> 60.250.78.22 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307506; rev:7; classtype:trojan-activity;)
alert ip any any -> 201.236.135.104 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307507; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.143.39.231 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307508; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.114.244.182 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307509; rev:7; classtype:trojan-activity;)
alert ip any any -> 100.6.23.40 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307510; rev:7; classtype:trojan-activity;)
alert ip any any -> 122.176.116.57 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307511; rev:7; classtype:trojan-activity;)
alert ip any any -> 181.13.24.82 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307512; rev:7; classtype:trojan-activity;)
alert ip any any -> 73.239.11.159 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307513; rev:7; classtype:trojan-activity;)
alert ip any any -> 120.151.135.224 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307514; rev:7; classtype:trojan-activity;)
alert ip any any -> 201.213.100.141 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307515; rev:7; classtype:trojan-activity;)
alert ip any any -> 139.47.135.215 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307516; rev:7; classtype:trojan-activity;)
alert ip any any -> 186.177.165.196 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307517; rev:7; classtype:trojan-activity;)
alert ip any any -> 197.89.27.26 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307518; rev:7; classtype:trojan-activity;)
alert ip any any -> 72.186.137.156 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307519; rev:7; classtype:trojan-activity;)
alert ip any any -> 58.171.38.26 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307520; rev:7; classtype:trojan-activity;)
alert ip any any -> 70.184.69.146 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307521; rev:7; classtype:trojan-activity;)
alert ip any any -> 78.189.180.107 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307522; rev:7; classtype:trojan-activity;)
alert ip any any -> 183.82.123.60 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307523; rev:7; classtype:trojan-activity;)
alert ip any any -> 60.130.173.117 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307524; rev:7; classtype:trojan-activity;)
alert ip any any -> 78.189.60.109 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307525; rev:7; classtype:trojan-activity;)
alert ip any any -> 186.15.52.123 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307526; rev:7; classtype:trojan-activity;)
alert ip any any -> 2.47.112.72 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307527; rev:7; classtype:trojan-activity;)
alert ip any any -> 59.120.5.154 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307528; rev:7; classtype:trojan-activity;)
alert ip any any -> 66.7.242.50 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307529; rev:7; classtype:trojan-activity;)
alert ip any any -> 152.231.89.226 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307530; rev:7; classtype:trojan-activity;)
alert ip any any -> 154.73.137.131 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307531; rev:7; classtype:trojan-activity;)
alert ip any any -> 91.250.96.22 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307532; rev:7; classtype:trojan-activity;)
alert ip any any -> 27.109.153.201 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307533; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.191.82.216 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307534; rev:7; classtype:trojan-activity;)
alert ip any any -> 183.91.3.63 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307535; rev:7; classtype:trojan-activity;)
alert ip any any -> 24.164.79.147 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307536; rev:7; classtype:trojan-activity;)
alert ip any any -> 188.0.135.237 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307537; rev:7; classtype:trojan-activity;)
alert ip any any -> 5.32.55.214 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307538; rev:7; classtype:trojan-activity;)
alert ip any any -> 186.86.247.171 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307539; rev:7; classtype:trojan-activity;)
alert ip any any -> 78.210.132.35 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307540; rev:7; classtype:trojan-activity;)
alert ip any any -> 1.221.254.82 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307541; rev:7; classtype:trojan-activity;)
alert ip any any -> 196.6.119.137 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307542; rev:7; classtype:trojan-activity;)
alert ip any any -> 187.54.225.76 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307543; rev:7; classtype:trojan-activity;)
alert ip any any -> 209.146.22.34 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307544; rev:7; classtype:trojan-activity;)
alert ip any any -> 73.217.39.73 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307545; rev:7; classtype:trojan-activity;)
alert ip any any -> 178.153.176.124 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307546; rev:7; classtype:trojan-activity;)
alert ip any any -> 189.203.177.41 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307547; rev:7; classtype:trojan-activity;)
alert ip any any -> 181.231.220.232 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307548; rev:7; classtype:trojan-activity;)
alert ip any any -> 94.200.126.42 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307549; rev:7; classtype:trojan-activity;)
alert ip any any -> 105.209.235.113 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307550; rev:7; classtype:trojan-activity;)
alert ip any any -> 200.45.187.90 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307551; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.219.149.236 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307552; rev:7; classtype:trojan-activity;)
alert ip any any -> 200.116.145.225 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307553; rev:7; classtype:trojan-activity;)
alert ip any any -> 178.237.139.83 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307554; rev:7; classtype:trojan-activity;)
alert ip any any -> 210.6.85.121 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307555; rev:7; classtype:trojan-activity;)
alert ip any any -> 136.243.250.34 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307556; rev:7; classtype:trojan-activity;)
alert ip any any -> 47.153.183.211 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307557; rev:7; classtype:trojan-activity;)
alert ip any any -> 188.251.213.180 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307558; rev:7; classtype:trojan-activity;)
alert ip any any -> 216.251.83.79 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307559; rev:7; classtype:trojan-activity;)
alert ip any any -> 93.144.226.57 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307560; rev:7; classtype:trojan-activity;)
alert ip any any -> 200.123.183.137 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307561; rev:7; classtype:trojan-activity;)
alert ip any any -> 59.148.227.190 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307562; rev:7; classtype:trojan-activity;)
alert ip any any -> 98.156.206.153 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307563; rev:7; classtype:trojan-activity;)
alert ip any any -> 85.100.122.211 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307564; rev:7; classtype:trojan-activity;)
alert ip any any -> 24.94.237.248 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307565; rev:7; classtype:trojan-activity;)
alert ip any any -> 24.105.202.216 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307566; rev:7; classtype:trojan-activity;)
alert ip any any -> 184.167.148.162 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307567; rev:7; classtype:trojan-activity;)
alert ip any any -> 66.25.34.20 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307568; rev:7; classtype:trojan-activity;)
alert ip any any -> 177.144.130.105 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307569; rev:7; classtype:trojan-activity;)
alert ip any any -> 1.215.28.101 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307570; rev:7; classtype:trojan-activity;)
alert ip any any -> 37.70.131.107 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307571; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.100.153.162 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307572; rev:7; classtype:trojan-activity;)
alert ip any any -> 2.237.76.249 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307573; rev:7; classtype:trojan-activity;)
alert ip any any -> 61.197.110.214 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307574; rev:7; classtype:trojan-activity;)
alert ip any any -> 73.11.153.178 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307575; rev:7; classtype:trojan-activity;)
alert ip any any -> 99.252.27.6 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307576; rev:7; classtype:trojan-activity;)
alert ip any any -> 85.152.174.56 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307577; rev:7; classtype:trojan-activity;)
alert ip any any -> 181.167.35.84 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307578; rev:7; classtype:trojan-activity;)
alert ip any any -> 80.11.158.65 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307579; rev:7; classtype:trojan-activity;)
alert ip any any -> 179.13.185.19 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307580; rev:7; classtype:trojan-activity;)
alert ip any any -> 47.6.15.79 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307581; rev:7; classtype:trojan-activity;)
alert ip any any -> 168.235.82.183 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307582; rev:7; classtype:trojan-activity;)
alert ip any any -> 64.53.242.181 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307583; rev:7; classtype:trojan-activity;)
alert ip any any -> 110.143.84.202 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307584; rev:7; classtype:trojan-activity;)
alert ip any any -> 2.42.173.240 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307585; rev:7; classtype:trojan-activity;)
alert ip any any -> 47.156.70.145 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307586; rev:7; classtype:trojan-activity;)
alert ip any any -> 110.142.38.16 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307587; rev:7; classtype:trojan-activity;)
alert ip any any -> 66.34.201.20 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307588; rev:7; classtype:trojan-activity;)
alert ip any any -> 5.88.27.67 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307589; rev:7; classtype:trojan-activity;)
alert ip any any -> 76.221.133.146 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307590; rev:7; classtype:trojan-activity;)
alert ip any any -> 82.8.232.51 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307591; rev:7; classtype:trojan-activity;)
alert ip any any -> 188.216.24.204 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307592; rev:7; classtype:trojan-activity;)
alert ip any any -> 130.45.45.31 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307593; rev:7; classtype:trojan-activity;)
alert ip any any -> 98.15.140.226 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307594; rev:7; classtype:trojan-activity;)
alert ip any any -> 58.171.42.66 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307595; rev:7; classtype:trojan-activity;)
alert ip any any -> 139.130.241.252 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307596; rev:7; classtype:trojan-activity;)
alert ip any any -> 186.68.48.204 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307597; rev:7; classtype:trojan-activity;)
alert ip any any -> 96.126.121.64 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307598; rev:7; classtype:trojan-activity;)
alert ip any any -> 200.119.11.118 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307599; rev:7; classtype:trojan-activity;)
alert ip any any -> 77.241.53.234 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307600; rev:7; classtype:trojan-activity;)
alert ip any any -> 91.73.197.90 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307601; rev:7; classtype:trojan-activity;)
alert ip any any -> 108.179.206.219 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307602; rev:7; classtype:trojan-activity;)
alert ip any any -> 110.142.161.90 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307603; rev:7; classtype:trojan-activity;)
alert ip any any -> 63.246.252.234 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307604; rev:7; classtype:trojan-activity;)
alert ip any any -> 188.152.7.140 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307605; rev:7; classtype:trojan-activity;)
alert ip any any -> 80.29.54.20 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307606; rev:7; classtype:trojan-activity;)
alert ip any any -> 72.29.55.174 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307607; rev:7; classtype:trojan-activity;)
alert ip any any -> 47.146.42.234 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307608; rev:7; classtype:trojan-activity;)
alert ip any any -> 45.79.95.107 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307609; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.12.119.180 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307610; rev:7; classtype:trojan-activity;)
alert ip any any -> 195.244.215.206 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307611; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.186.164.23 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307612; rev:7; classtype:trojan-activity;)
alert ip any any -> 203.130.0.69 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307613; rev:7; classtype:trojan-activity;)
alert ip any any -> 206.81.10.215 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307614; rev:7; classtype:trojan-activity;)
alert ip any any -> 82.145.43.153 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307615; rev:7; classtype:trojan-activity;)
alert ip any any -> 209.97.168.52 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307616; rev:7; classtype:trojan-activity;)
alert ip any any -> 172.104.233.225 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307617; rev:7; classtype:trojan-activity;)
alert ip any any -> 83.169.33.157 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307618; rev:7; classtype:trojan-activity;)
alert ip any any -> 91.205.173.54 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307619; rev:7; classtype:trojan-activity;)
alert ip any any -> 105.226.188.128 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307620; rev:7; classtype:trojan-activity;)
alert ip any any -> 189.226.151.198 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307621; rev:7; classtype:trojan-activity;)
alert ip any any -> 173.212.220.251 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307622; rev:7; classtype:trojan-activity;)
alert ip any any -> 192.241.255.77 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307623; rev:7; classtype:trojan-activity;)
alert ip any any -> 152.169.32.143 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307624; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.128.222.14 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307625; rev:7; classtype:trojan-activity;)
alert ip any any -> 181.57.193.14 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307626; rev:7; classtype:trojan-activity;)
alert ip any any -> 191.100.24.201 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307627; rev:7; classtype:trojan-activity;)
alert ip any any -> 193.34.144.138 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307628; rev:7; classtype:trojan-activity;)
alert ip any any -> 170.130.31.177 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307629; rev:7; classtype:trojan-activity;)
alert ip any any -> 165.227.156.155 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307630; rev:7; classtype:trojan-activity;)
alert ip any any -> 171.101.153.86 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307631; rev:7; classtype:trojan-activity;)
alert ip any any -> 67.225.179.64 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307632; rev:7; classtype:trojan-activity;)
alert ip any any -> 105.228.98.115 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307633; rev:7; classtype:trojan-activity;)
alert ip any any -> 188.220.235.237 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307634; rev:7; classtype:trojan-activity;)
alert ip any any -> 187.147.152.244 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307635; rev:7; classtype:trojan-activity;)
alert ip any any -> 186.18.224.149 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307636; rev:7; classtype:trojan-activity;)
alert ip any any -> 111.119.233.65 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307637; rev:7; classtype:trojan-activity;)
alert ip any any -> 192.241.220.155 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307638; rev:7; classtype:trojan-activity;)
alert ip any any -> 183.102.238.69 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307639; rev:7; classtype:trojan-activity;)
alert ip any any -> 167.99.105.223 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307640; rev:7; classtype:trojan-activity;)
alert ip any any -> 181.198.203.45 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307641; rev:7; classtype:trojan-activity;)
alert ip any any -> 198.57.217.170 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307642; rev:7; classtype:trojan-activity;)
alert ip any any -> 124.150.175.133 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307643; rev:7; classtype:trojan-activity;)
alert ip any any -> 42.190.4.92 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307644; rev:7; classtype:trojan-activity;)
alert ip any any -> 211.229.116.130 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307645; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.146.131.105 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307646; rev:7; classtype:trojan-activity;)
alert ip any any -> 173.249.47.77 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307647; rev:7; classtype:trojan-activity;)
alert ip any any -> 189.218.243.150 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307648; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.217.1.149 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307649; rev:7; classtype:trojan-activity;)
alert ip any any -> 217.160.182.191 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307650; rev:7; classtype:trojan-activity;)
alert ip any any -> 181.16.17.210 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307651; rev:7; classtype:trojan-activity;)
alert ip any any -> 192.241.220.183 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307652; rev:7; classtype:trojan-activity;)
alert ip any any -> 94.177.216.217 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307653; rev:7; classtype:trojan-activity;)
alert ip any any -> 86.22.221.170 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307654; rev:7; classtype:trojan-activity;)
alert ip any any -> 154.120.227.206 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307655; rev:7; classtype:trojan-activity;)
alert ip any any -> 157.7.164.178 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307656; rev:7; classtype:trojan-activity;)
alert ip any any -> 167.71.10.37 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307657; rev:7; classtype:trojan-activity;)
alert ip any any -> 200.55.168.82 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307658; rev:7; classtype:trojan-activity;)
alert ip any any -> 133.167.80.63 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307659; rev:7; classtype:trojan-activity;)
alert ip any any -> 51.38.134.203 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307660; rev:7; classtype:trojan-activity;)
alert ip any any -> 5.189.148.98 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307661; rev:7; classtype:trojan-activity;)
alert ip any any -> 76.69.29.42 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307662; rev:7; classtype:trojan-activity;)
alert ip any any -> 201.196.15.79 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307663; rev:7; classtype:trojan-activity;)
alert ip any any -> 152.170.220.95 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307664; rev:7; classtype:trojan-activity;)
alert ip any any -> 186.1.41.111 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307665; rev:7; classtype:trojan-activity;)
alert ip any any -> 181.31.213.158 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307666; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.102.226.91 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307667; rev:7; classtype:trojan-activity;)
alert ip any any -> 189.129.231.76 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307668; rev:7; classtype:trojan-activity;)
alert ip any any -> 63.142.253.122 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307669; rev:7; classtype:trojan-activity;)
alert ip any any -> 158.69.130.55 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307670; rev:7; classtype:trojan-activity;)
alert ip any any -> 187.144.189.58 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307671; rev:7; classtype:trojan-activity;)
alert ip any any -> 187.147.50.167 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307672; rev:7; classtype:trojan-activity;)
alert ip any any -> 178.249.187.150 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307673; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.18.146.70 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307674; rev:7; classtype:trojan-activity;)
alert ip any any -> 178.254.6.27 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307675; rev:7; classtype:trojan-activity;)
alert ip any any -> 94.177.253.126 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307676; rev:7; classtype:trojan-activity;)
alert ip any any -> 103.97.95.218 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307677; rev:7; classtype:trojan-activity;)
alert ip any any -> 176.31.200.130 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307678; rev:7; classtype:trojan-activity;)
alert ip any any -> 142.44.162.209 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307679; rev:7; classtype:trojan-activity;)
alert ip any any -> 125.99.61.162 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307680; rev:7; classtype:trojan-activity;)
alert ip any any -> 183.82.97.25 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307681; rev:7; classtype:trojan-activity;)
alert ip any any -> 77.245.101.134 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307682; rev:7; classtype:trojan-activity;)
alert ip any any -> 80.85.87.122 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307683; rev:7; classtype:trojan-activity;)
alert ip any any -> 75.127.14.170 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307684; rev:7; classtype:trojan-activity;)
alert ip any any -> 200.58.83.179 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307685; rev:7; classtype:trojan-activity;)
alert ip any any -> 181.10.204.106 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307686; rev:7; classtype:trojan-activity;)
alert ip any any -> 212.71.234.16 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307687; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.230.60.129 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307688; rev:7; classtype:trojan-activity;)
alert ip any any -> 181.36.42.205 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307689; rev:7; classtype:trojan-activity;)
alert ip any any -> 159.65.241.220 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307690; rev:7; classtype:trojan-activity;)
alert ip any any -> 104.131.11.150 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307691; rev:7; classtype:trojan-activity;)
alert ip any any -> 200.80.198.34 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307692; rev:7; classtype:trojan-activity;)
alert ip any any -> 217.113.27.158 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307693; rev:7; classtype:trojan-activity;)
alert ip any any -> 169.239.182.217 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307694; rev:7; classtype:trojan-activity;)
alert ip any any -> 182.176.132.213 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307695; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.53.135.159 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307696; rev:7; classtype:trojan-activity;)
alert ip any any -> 200.90.201.77 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307697; rev:7; classtype:trojan-activity;)
alert ip any any -> 77.44.16.54 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307698; rev:7; classtype:trojan-activity;)
alert ip any any -> 88.215.2.29 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307699; rev:7; classtype:trojan-activity;)
alert ip any any -> 88.97.26.73 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307700; rev:7; classtype:trojan-activity;)
alert ip any any -> 187.188.166.192 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307701; rev:7; classtype:trojan-activity;)
alert ip any any -> 88.156.97.210 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307702; rev:7; classtype:trojan-activity;)
alert ip any any -> 65.49.60.163 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307703; rev:7; classtype:trojan-activity;)
alert ip any any -> 209.137.209.84 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307704; rev:7; classtype:trojan-activity;)
alert ip any any -> 187.189.210.143 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307705; rev:7; classtype:trojan-activity;)
alert ip any any -> 67.241.81.253 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307706; rev:7; classtype:trojan-activity;)
alert ip any any -> 91.92.191.134 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307707; rev:7; classtype:trojan-activity;)
alert ip any any -> 200.114.142.40 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307708; rev:7; classtype:trojan-activity;)
alert ip any any -> 162.243.125.212 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307709; rev:7; classtype:trojan-activity;)
alert ip any any -> 78.186.5.109 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307710; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.117.206.153 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307711; rev:7; classtype:trojan-activity;)
alert ip any any -> 189.209.217.49 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307712; rev:7; classtype:trojan-activity;)
alert ip any any -> 41.220.119.246 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307713; rev:7; classtype:trojan-activity;)
alert ip any any -> 71.11.157.249 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307714; rev:7; classtype:trojan-activity;)
alert ip any any -> 144.76.117.247 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307715; rev:7; classtype:trojan-activity;)
alert ip any any -> 59.103.164.174 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307716; rev:7; classtype:trojan-activity;)
alert ip any any -> 85.105.205.77 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307717; rev:7; classtype:trojan-activity;)
alert ip any any -> 24.194.252.25 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307718; rev:7; classtype:trojan-activity;)
alert ip any any -> 183.87.87.73 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307719; rev:7; classtype:trojan-activity;)
alert ip any any -> 62.75.187.192 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307720; rev:7; classtype:trojan-activity;)
alert ip any any -> 105.247.123.133 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307721; rev:7; classtype:trojan-activity;)
alert ip any any -> 192.163.199.254 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307722; rev:7; classtype:trojan-activity;)
alert ip any any -> 186.75.241.230 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307723; rev:7; classtype:trojan-activity;)
alert ip any any -> 219.94.254.93 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307724; rev:7; classtype:trojan-activity;)
alert ip any any -> 217.145.83.44 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307725; rev:7; classtype:trojan-activity;)
alert ip any any -> 181.143.194.138 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307726; rev:7; classtype:trojan-activity;)
alert ip any any -> 200.113.106.18 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307727; rev:7; classtype:trojan-activity;)
alert ip any any -> 69.163.33.82 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307728; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.106.97.230 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307729; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.195.129.227 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307730; rev:7; classtype:trojan-activity;)
alert ip any any -> 186.4.172.5 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307731; rev:7; classtype:trojan-activity;)
alert ip any any -> 94.205.247.10 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307732; rev:7; classtype:trojan-activity;)
alert ip any any -> 200.124.225.32 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307733; rev:7; classtype:trojan-activity;)
alert ip any any -> 200.71.148.138 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307734; rev:7; classtype:trojan-activity;)
alert ip any any -> 187.177.155.123 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307735; rev:7; classtype:trojan-activity;)
alert ip any any -> 200.123.150.89 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307736; rev:7; classtype:trojan-activity;)
alert ip any any -> 200.85.110.240 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307737; rev:7; classtype:trojan-activity;)
alert ip any any -> 144.139.247.220 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307738; rev:7; classtype:trojan-activity;)
alert ip any any -> 83.136.245.190 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307739; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.145.67.134 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307740; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.17.44.48 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307741; rev:7; classtype:trojan-activity;)
alert ip any any -> 45.123.3.54 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307742; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.117.126.169 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307743; rev:7; classtype:trojan-activity;)
alert ip any any -> 192.155.90.90 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307744; rev:7; classtype:trojan-activity;)
alert ip any any -> 165.227.213.173 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307745; rev:7; classtype:trojan-activity;)
alert ip any any -> 117.2.133.44 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307746; rev:7; classtype:trojan-activity;)
alert ip any any -> 200.57.102.71 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307747; rev:7; classtype:trojan-activity;)
alert ip any any -> 88.250.223.190 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307748; rev:7; classtype:trojan-activity;)
alert ip any any -> 201.163.74.202 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307749; rev:7; classtype:trojan-activity;)
alert ip any any -> 81.17.93.134 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307750; rev:7; classtype:trojan-activity;)
alert ip any any -> 5.196.161.148 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307751; rev:7; classtype:trojan-activity;)
alert ip any any -> 216.70.105.121 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307752; rev:7; classtype:trojan-activity;)
alert ip any any -> 66.85.74.178 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307753; rev:7; classtype:trojan-activity;)
alert ip any any -> 180.131.139.203 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307754; rev:7; classtype:trojan-activity;)
alert ip any any -> 188.241.155.6 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307755; rev:7; classtype:trojan-activity;)
alert ip any any -> 198.154.238.174 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307756; rev:7; classtype:trojan-activity;)
alert ip any any -> 85.25.192.71 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307757; rev:7; classtype:trojan-activity;)
alert ip any any -> 104.236.109.186 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307758; rev:7; classtype:trojan-activity;)
alert ip any any -> 216.240.36.142 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307759; rev:7; classtype:trojan-activity;)
alert ip any any -> 213.138.101.212 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307760; rev:7; classtype:trojan-activity;)
alert ip any any -> 173.212.192.45 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307761; rev:7; classtype:trojan-activity;)
alert ip any any -> 69.43.168.215 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307762; rev:7; classtype:trojan-activity;)
alert ip any any -> 162.144.254.125 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307763; rev:7; classtype:trojan-activity;)
alert ip any any -> 217.13.106.16 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307764; rev:7; classtype:trojan-activity;)
alert ip any any -> 104.227.137.35 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307765; rev:7; classtype:trojan-activity;)
alert ip any any -> 206.214.220.81 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307766; rev:7; classtype:trojan-activity;)
alert ip any any -> 199.119.78.54 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307767; rev:7; classtype:trojan-activity;)
alert ip any any -> 207.58.168.91 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307768; rev:7; classtype:trojan-activity;)
alert ip any any -> 194.88.246.242 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307769; rev:7; classtype:trojan-activity;)
alert ip any any -> 217.13.106.249 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307770; rev:7; classtype:trojan-activity;)
alert ip any any -> 41.72.140.140 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307771; rev:7; classtype:trojan-activity;)
alert ip any any -> 91.90.88.5 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307772; rev:7; classtype:trojan-activity;)
alert ip any any -> 194.88.246.9 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307773; rev:7; classtype:trojan-activity;)
alert ip any any -> 107.170.177.153 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307774; rev:7; classtype:trojan-activity;)
alert ip any any -> 216.71.120.100 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307775; rev:7; classtype:trojan-activity;)
alert ip any any -> 64.62.228.170 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307776; rev:7; classtype:trojan-activity;)
alert ip any any -> 198.1.78.129 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307777; rev:7; classtype:trojan-activity;)
alert ip any any -> 162.243.154.25 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307778; rev:7; classtype:trojan-activity;)
alert ip any any -> 173.230.145.224 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307779; rev:7; classtype:trojan-activity;)
alert ip any any -> 91.121.121.72 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307780; rev:7; classtype:trojan-activity;)
alert ip any any -> 69.43.168.206 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307781; rev:7; classtype:trojan-activity;)
alert ip any any -> 188.166.175.18 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307782; rev:7; classtype:trojan-activity;)
alert ip any any -> 192.81.128.131 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307783; rev:7; classtype:trojan-activity;)
alert ip any any -> 87.106.1.205 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307784; rev:7; classtype:trojan-activity;)
alert ip any any -> 203.150.19.63 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307785; rev:7; classtype:trojan-activity;)
alert ip any any -> 213.229.76.51 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307786; rev:7; classtype:trojan-activity;)
alert ip any any -> 192.210.199.181 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307787; rev:7; classtype:trojan-activity;)
alert ip any any -> 66.175.215.16 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://feodotracker.abuse.ch/blocklist/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307788; rev:7; classtype:trojan-activity;)
alert ip any any -> 185.183.16.47 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307789; rev:7; classtype:trojan-activity;)
alert ip any any -> 74.58.215.226 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307790; rev:7; classtype:trojan-activity;)
alert ip any any -> 153.162.105.97 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307791; rev:7; classtype:trojan-activity;)
alert ip any any -> 92.24.50.153 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307792; rev:7; classtype:trojan-activity;)
alert ip any any -> 74.136.144.133 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307793; rev:7; classtype:trojan-activity;)
alert ip any any -> 12.30.50.130 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307794; rev:7; classtype:trojan-activity;)
alert ip any any -> 120.138.30.150 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307795; rev:7; classtype:trojan-activity;)
alert ip any any -> 139.59.67.118 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307796; rev:7; classtype:trojan-activity;)
alert ip any any -> 94.23.216.33 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307797; rev:7; classtype:trojan-activity;)
alert ip any any -> 50.91.114.38 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307798; rev:7; classtype:trojan-activity;)
alert ip any any -> 121.124.124.40 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307799; rev:7; classtype:trojan-activity;)
alert ip any any -> 79.137.83.50 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307800; rev:7; classtype:trojan-activity;)
alert ip any any -> 70.180.43.7 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307801; rev:7; classtype:trojan-activity;)
alert ip any any -> 209.141.54.221 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307802; rev:7; classtype:trojan-activity;)
alert ip any any -> 62.75.141.82 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307803; rev:7; classtype:trojan-activity;)
alert ip any any -> 95.213.236.64 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307804; rev:7; classtype:trojan-activity;)
alert ip any any -> 139.162.108.71 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307805; rev:7; classtype:trojan-activity;)
alert ip any any -> 82.80.155.43 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307806; rev:7; classtype:trojan-activity;)
alert ip any any -> 89.216.122.92 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307807; rev:7; classtype:trojan-activity;)
alert ip any any -> 176.111.60.55 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307808; rev:7; classtype:trojan-activity;)
alert ip any any -> 157.245.99.39 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307809; rev:7; classtype:trojan-activity;)
alert ip any any -> 5.39.91.110 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307810; rev:7; classtype:trojan-activity;)
alert ip any any -> 185.94.252.104 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307811; rev:7; classtype:trojan-activity;)
alert ip any any -> 94.23.237.171 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307812; rev:7; classtype:trojan-activity;)
alert ip any any -> 139.99.158.11 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307813; rev:7; classtype:trojan-activity;)
alert ip any any -> 99.224.14.125 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307814; rev:7; classtype:trojan-activity;)
alert ip any any -> 87.106.139.101 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307815; rev:7; classtype:trojan-activity;)
alert ip any any -> 104.131.44.150 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307816; rev:7; classtype:trojan-activity;)
alert ip any any -> 117.247.235.44 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307817; rev:7; classtype:trojan-activity;)
alert ip any any -> 190.85.46.52 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307818; rev:7; classtype:trojan-activity;)
alert ip any any -> 85.25.208.71 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307819; rev:7; classtype:trojan-activity;)
alert ip any any -> 36.91.44.183 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307820; rev:7; classtype:trojan-activity;)
alert ip any any -> 76.18.16.210 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307821; rev:7; classtype:trojan-activity;)
alert ip any any -> 189.160.188.97 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307822; rev:7; classtype:trojan-activity;)
alert ip any any -> 113.193.239.51 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307823; rev:7; classtype:trojan-activity;)
alert ip any any -> 91.105.94.200 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307824; rev:7; classtype:trojan-activity;)
alert ip any any -> 138.201.45.2 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307825; rev:7; classtype:trojan-activity;)
alert ip any any -> 37.187.100.220 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307826; rev:7; classtype:trojan-activity;)
alert ip any any -> 89.2.145.86 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307827; rev:7; classtype:trojan-activity;)
alert ip any any -> 103.133.66.57 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307828; rev:7; classtype:trojan-activity;)
alert ip any any -> 200.120.241.238 any (msg:"πΎ - π¨ Outgoing connection β π possible β Emotet C2"; reference: url,reference: url,https://paste.cryptolaemus.com/; reference: url,https://malpedia.caad.fkie.fraunhofer.de/details/win.emotet; metadata:created_at 2020_09_14, updated_at 2022_03_19; sid:3307829; rev:7; classtype:trojan-activity;)