blob: 89d87f1de89a4bed0c8b04c255647d0829367cd3 (
plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
|
DAEMON-EVENT: init
DAEMON-EVENT: [Processed: 0 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 0 / 0|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 0]
new: [.....1] [ip4][..udp] [..37.40.101.196][53106] -> [...85.111.52.57][..427]
detected: [.....1] [ip4][..udp] [..37.40.101.196][53106] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 1 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 1|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 0]
new: [.....2] [ip4][..udp] [.27.134.169.220][45163] -> [...90.141.37.56][..427]
detected: [.....2] [ip4][..udp] [.27.134.169.220][45163] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [.....1] [ip4][..udp] [..37.40.101.196][53106] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [.....3] [ip4][..udp] [..44.99.113.150][40623] -> [.186.112.202.53][..427]
detected: [.....3] [ip4][..udp] [..44.99.113.150][40623] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [.....2] [ip4][..udp] [.27.134.169.220][45163] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 3 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 3|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 1]
new: [.....4] [ip4][..udp] [..44.99.113.150][34697] -> [..90.145.180.58][..427]
detected: [.....4] [ip4][..udp] [..44.99.113.150][34697] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [.....3] [ip4][..udp] [..44.99.113.150][40623] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [.....2] [ip4][..udp] [.27.134.169.220][45163] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [.....5] [ip4][..udp] [208.100.177.136][33246] -> [...90.141.37.56][..427]
detected: [.....5] [ip4][..udp] [208.100.177.136][33246] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [.....4] [ip4][..udp] [..44.99.113.150][34697] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 5 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 5|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 2]
new: [.....6] [ip4][..udp] [.45.124.147.156][33510] -> [...85.111.52.57][..427]
detected: [.....6] [ip4][..udp] [.45.124.147.156][33510] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [.....5] [ip4][..udp] [208.100.177.136][33246] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [.....4] [ip4][..udp] [..44.99.113.150][34697] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 6 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 6|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 2]
new: [.....7] [ip4][..udp] [.45.124.147.156][50663] -> [.165.114.202.61][..427]
detected: [.....7] [ip4][..udp] [.45.124.147.156][50663] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [.....8] [ip4][..udp] [.45.124.147.156][41268] -> [.165.114.202.61][..427]
detected: [.....8] [ip4][..udp] [.45.124.147.156][41268] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [.....6] [ip4][..udp] [.45.124.147.156][33510] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [.....9] [ip4][..udp] [.236.155.96.147][43154] -> [..90.147.171.51][..427]
detected: [.....9] [ip4][..udp] [.236.155.96.147][43154] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [.....8] [ip4][..udp] [.45.124.147.156][41268] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [.....7] [ip4][..udp] [.45.124.147.156][50663] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 10 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 9|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 2]
new: [....10] [ip4][..udp] [.45.124.147.156][57141] -> [..74.111.203.55][..427]
detected: [....10] [ip4][..udp] [.45.124.147.156][57141] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [.....9] [ip4][..udp] [.236.155.96.147][43154] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 11 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 10|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 2]
new: [....11] [ip4][..udp] [184.180.168.240][38061] -> [..165.144.84.62][..427]
detected: [....11] [ip4][..udp] [184.180.168.240][38061] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....10] [ip4][..udp] [.45.124.147.156][57141] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 12 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 11|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 2]
new: [....12] [ip4][..udp] [236.131.162.157][38756] -> [..69.109.187.54][..427]
detected: [....12] [ip4][..udp] [236.131.162.157][38756] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....11] [ip4][..udp] [184.180.168.240][38061] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 13 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 12|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 2]
new: [....13] [ip4][..udp] [.200.31.144.158][39908] -> [...85.111.52.57][..427]
detected: [....13] [ip4][..udp] [.200.31.144.158][39908] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....12] [ip4][..udp] [236.131.162.157][38756] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [....14] [ip4][..udp] [.200.31.144.158][40656] -> [..69.109.187.54][..427]
detected: [....14] [ip4][..udp] [.200.31.144.158][40656] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....13] [ip4][..udp] [.200.31.144.158][39908] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [....15] [ip4][..udp] [.200.31.144.158][37600] -> [.186.112.202.53][..427]
detected: [....15] [ip4][..udp] [.200.31.144.158][37600] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [....14] [ip4][..udp] [.200.31.144.158][40656] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 16 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 15|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 3]
new: [....16] [ip4][..udp] [..70.28.101.252][53651] -> [..90.147.171.51][..427]
detected: [....16] [ip4][..udp] [..70.28.101.252][53651] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....15] [ip4][..udp] [.200.31.144.158][37600] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....14] [ip4][..udp] [.200.31.144.158][40656] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 17 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 16|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 3]
new: [....17] [ip4][..udp] [.200.31.144.158][38913] -> [..74.111.203.55][..427]
detected: [....17] [ip4][..udp] [.200.31.144.158][38913] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....16] [ip4][..udp] [..70.28.101.252][53651] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [....18] [ip4][..udp] [.200.31.144.158][33453] -> [..90.111.212.50][..427]
detected: [....18] [ip4][..udp] [.200.31.144.158][33453] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [....17] [ip4][..udp] [.200.31.144.158][38913] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 19 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 18|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 4]
new: [....19] [ip4][..udp] [.200.31.144.158][60963] -> [...90.141.37.56][..427]
detected: [....19] [ip4][..udp] [.200.31.144.158][60963] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....17] [ip4][..udp] [.200.31.144.158][38913] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....18] [ip4][..udp] [.200.31.144.158][33453] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [....20] [ip4][..udp] [.200.31.144.158][41259] -> [..90.147.171.51][..427]
detected: [....20] [ip4][..udp] [.200.31.144.158][41259] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [....19] [ip4][..udp] [.200.31.144.158][60963] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 21 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 20|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 5]
new: [....21] [ip4][..udp] [...62.230.4.248][56007] -> [..165.144.84.62][..427]
detected: [....21] [ip4][..udp] [...62.230.4.248][56007] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....19] [ip4][..udp] [.200.31.144.158][60963] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....20] [ip4][..udp] [.200.31.144.158][41259] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 22 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 21|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 5]
new: [....22] [ip4][..udp] [.200.31.144.158][52741] -> [.165.114.202.61][..427]
detected: [....22] [ip4][..udp] [.200.31.144.158][52741] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....21] [ip4][..udp] [...62.230.4.248][56007] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [....23] [ip4][..udp] [.200.31.144.158][39516] -> [..90.145.180.58][..427]
detected: [....23] [ip4][..udp] [.200.31.144.158][39516] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....22] [ip4][..udp] [.200.31.144.158][52741] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [....24] [ip4][..udp] [.200.31.144.158][43074] -> [..165.144.84.62][..427]
detected: [....24] [ip4][..udp] [.200.31.144.158][43074] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [....23] [ip4][..udp] [.200.31.144.158][39516] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 25 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 24|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 6]
new: [....25] [ip4][..udp] [198.229.224.110][56395] -> [..90.145.180.58][..427]
detected: [....25] [ip4][..udp] [198.229.224.110][56395] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....24] [ip4][..udp] [.200.31.144.158][43074] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....23] [ip4][..udp] [.200.31.144.158][39516] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 26 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 25|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 6]
new: [....26] [ip4][..udp] [..67.159.16.150][27095] -> [..165.144.84.62][..427]
detected: [....26] [ip4][..udp] [..67.159.16.150][27095] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....25] [ip4][..udp] [198.229.224.110][56395] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 27 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 26|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 6]
new: [....27] [ip4][..udp] [.217.217.186.39][52663] -> [.186.112.202.53][..427]
detected: [....27] [ip4][..udp] [.217.217.186.39][52663] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....26] [ip4][..udp] [..67.159.16.150][27095] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [....28] [ip4][..udp] [..35.252.69.113][26160] -> [..69.109.187.54][..427]
detected: [....28] [ip4][..udp] [..35.252.69.113][26160] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....27] [ip4][..udp] [.217.217.186.39][52663] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 29 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 28|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 6]
new: [....29] [ip4][..udp] [.34.102.125.120][45441] -> [...90.141.37.56][..427]
detected: [....29] [ip4][..udp] [.34.102.125.120][45441] -> [...90.141.37.56][..427] [Service_Location_Protocol][GoogleCloud][RPC][Acceptable]
idle: [....28] [ip4][..udp] [..35.252.69.113][26160] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [....30] [ip4][..udp] [.27.134.169.220][58691] -> [..90.147.171.51][..427]
detected: [....30] [ip4][..udp] [.27.134.169.220][58691] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....29] [ip4][..udp] [.34.102.125.120][45441] -> [...90.141.37.56][..427] [Service_Location_Protocol][GoogleCloud][RPC][Acceptable]
DAEMON-EVENT: [Processed: 31 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 30|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 6]
new: [....31] [ip4][..udp] [134.180.144.149][33386] -> [.186.112.202.53][..427]
detected: [....31] [ip4][..udp] [134.180.144.149][33386] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....30] [ip4][..udp] [.27.134.169.220][58691] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 32 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 31|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 6]
new: [....32] [ip4][..udp] [.36.231.109.217][50939] -> [..90.145.180.58][..427]
detected: [....32] [ip4][..udp] [.36.231.109.217][50939] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....31] [ip4][..udp] [134.180.144.149][33386] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [....33] [ip4][..udp] [.227.199.90.122][41334] -> [..90.111.212.50][..427]
detected: [....33] [ip4][..udp] [.227.199.90.122][41334] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....32] [ip4][..udp] [.36.231.109.217][50939] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [....34] [ip4][..udp] [182.180.120.139][58970] -> [...85.111.52.57][..427]
detected: [....34] [ip4][..udp] [182.180.120.139][58970] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [....33] [ip4][..udp] [.227.199.90.122][41334] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 35 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 34|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 7]
new: [....35] [ip4][..udp] [200.180.144.114][55489] -> [..90.111.212.50][..427]
detected: [....35] [ip4][..udp] [200.180.144.114][55489] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....33] [ip4][..udp] [.227.199.90.122][41334] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....34] [ip4][..udp] [182.180.120.139][58970] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [....36] [ip4][..udp] [.70.180.111.241][60983] -> [.165.114.202.61][..427]
detected: [....36] [ip4][..udp] [.70.180.111.241][60983] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....35] [ip4][..udp] [200.180.144.114][55489] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [....37] [ip4][..udp] [236.131.162.157][38679] -> [...90.141.37.56][..427]
detected: [....37] [ip4][..udp] [236.131.162.157][38679] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [....36] [ip4][..udp] [.70.180.111.241][60983] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [....38] [ip4][..udp] [.47.123.189.155][56038] -> [..90.147.171.51][..427]
detected: [....38] [ip4][..udp] [.47.123.189.155][56038] -> [..90.147.171.51][..427] [Service_Location_Protocol][Alibaba][RPC][Acceptable]
idle: [....36] [ip4][..udp] [.70.180.111.241][60983] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [....37] [ip4][..udp] [236.131.162.157][38679] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 39 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 38|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 9]
new: [....39] [ip4][..udp] [.70.180.111.241][48096] -> [..74.111.203.55][..427]
detected: [....39] [ip4][..udp] [.70.180.111.241][48096] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....37] [ip4][..udp] [236.131.162.157][38679] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....38] [ip4][..udp] [.47.123.189.155][56038] -> [..90.147.171.51][..427] [Service_Location_Protocol][Alibaba][RPC][Acceptable]
new: [....40] [ip4][..udp] [182.180.120.139][46563] -> [..90.145.180.58][..427]
detected: [....40] [ip4][..udp] [182.180.120.139][46563] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....39] [ip4][..udp] [.70.180.111.241][48096] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 41 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 40|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 9]
new: [....41] [ip4][..udp] [..218.19.29.186][56315] -> [..90.111.212.50][..427]
detected: [....41] [ip4][..udp] [..218.19.29.186][56315] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....40] [ip4][..udp] [182.180.120.139][46563] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 42 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 41|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 9]
new: [....42] [ip4][..udp] [186.213.158.225][51349] -> [..69.109.187.54][..427]
detected: [....42] [ip4][..udp] [186.213.158.225][51349] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....41] [ip4][..udp] [..218.19.29.186][56315] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 43 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 42|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 9]
new: [....43] [ip4][..udp] [231.223.121.213][.7086] -> [...90.141.37.56][..427]
detected: [....43] [ip4][..udp] [231.223.121.213][.7086] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....42] [ip4][..udp] [186.213.158.225][51349] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 44 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 43|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 9]
new: [....44] [ip4][..udp] [..20.133.112.32][11510] -> [.165.114.202.61][..427]
detected: [....44] [ip4][..udp] [..20.133.112.32][11510] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....43] [ip4][..udp] [231.223.121.213][.7086] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 46 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 44|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 9]
new: [....45] [ip4][..udp] [..83.48.216.235][51745] -> [.186.112.202.53][..427]
detected: [....45] [ip4][..udp] [..83.48.216.235][51745] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....44] [ip4][..udp] [..20.133.112.32][11510] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 47 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 45|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 9]
new: [....46] [ip4][..udp] [.154.97.132.119][64306] -> [..165.144.84.62][..427]
detected: [....46] [ip4][..udp] [.154.97.132.119][64306] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....45] [ip4][..udp] [..83.48.216.235][51745] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 48 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 46|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 9]
new: [....47] [ip4][..udp] [..83.48.216.235][56358] -> [..90.145.180.58][..427]
detected: [....47] [ip4][..udp] [..83.48.216.235][56358] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....46] [ip4][..udp] [.154.97.132.119][64306] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 49 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 47|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 9]
new: [....48] [ip4][..udp] [.....72.30.8.39][43690] -> [..90.111.212.50][..427]
detected: [....48] [ip4][..udp] [.....72.30.8.39][43690] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....47] [ip4][..udp] [..83.48.216.235][56358] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [....49] [ip4][..udp] [.....71.38.8.47][42689] -> [...90.141.37.56][..427]
detected: [....49] [ip4][..udp] [.....71.38.8.47][42689] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....48] [ip4][..udp] [.....72.30.8.39][43690] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 51 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 49|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 9]
new: [....50] [ip4][..udp] [.121.106.247.20][12409] -> [..165.144.84.62][..427]
detected: [....50] [ip4][..udp] [.121.106.247.20][12409] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....49] [ip4][..udp] [.....71.38.8.47][42689] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [....51] [ip4][..udp] [.....55.94.8.63][43995] -> [..90.145.180.58][..427]
detected: [....51] [ip4][..udp] [.....55.94.8.63][43995] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [....50] [ip4][..udp] [.121.106.247.20][12409] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [....52] [ip4][..udp] [..185.225.247.8][48375] -> [.165.114.202.61][..427]
detected: [....52] [ip4][..udp] [..185.225.247.8][48375] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....50] [ip4][..udp] [.121.106.247.20][12409] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [....51] [ip4][..udp] [.....55.94.8.63][43995] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 54 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 52|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 11]
new: [....53] [ip4][..udp] [.....121.82.8.7][60170] -> [...85.111.52.57][..427]
detected: [....53] [ip4][..udp] [.....121.82.8.7][60170] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....52] [ip4][..udp] [..185.225.247.8][48375] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....51] [ip4][..udp] [.....55.94.8.63][43995] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [....54] [ip4][..udp] [.121.106.247.20][55474] -> [.186.112.202.53][..427]
detected: [....54] [ip4][..udp] [.121.106.247.20][55474] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....53] [ip4][..udp] [.....121.82.8.7][60170] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 56 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 54|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 11]
new: [....55] [ip4][..udp] [.121.106.247.20][55474] -> [..90.147.171.51][..427]
detected: [....55] [ip4][..udp] [.121.106.247.20][55474] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....54] [ip4][..udp] [.121.106.247.20][55474] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [....56] [ip4][..udp] [..200.97.247.24][22124] -> [..74.111.203.55][..427]
detected: [....56] [ip4][..udp] [..200.97.247.24][22124] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [....55] [ip4][..udp] [.121.106.247.20][55474] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 58 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 56|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 12]
new: [....57] [ip4][..udp] [..121.35.244.56][30580] -> [..90.145.180.58][..427]
detected: [....57] [ip4][..udp] [..121.35.244.56][30580] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....55] [ip4][..udp] [.121.106.247.20][55474] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....56] [ip4][..udp] [..200.97.247.24][22124] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [....58] [ip4][..udp] [...154.96.5.121][26060] -> [..69.109.187.54][..427]
detected: [....58] [ip4][..udp] [...154.96.5.121][26060] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [....57] [ip4][..udp] [..121.35.244.56][30580] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [....59] [ip4][..udp] [..38.236.38.224][52729] -> [.165.114.202.61][..427]
detected: [....59] [ip4][..udp] [..38.236.38.224][52729] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....57] [ip4][..udp] [..121.35.244.56][30580] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [....58] [ip4][..udp] [...154.96.5.121][26060] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 61 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 59|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 14]
new: [....60] [ip4][..udp] [..69.230.164.78][55275] -> [...90.141.37.56][..427]
detected: [....60] [ip4][..udp] [..69.230.164.78][55275] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....58] [ip4][..udp] [...154.96.5.121][26060] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....59] [ip4][..udp] [..38.236.38.224][52729] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 62 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 60|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 14]
new: [....61] [ip4][..udp] [..235.98.65.133][31778] -> [..165.144.84.62][..427]
detected: [....61] [ip4][..udp] [..235.98.65.133][31778] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....60] [ip4][..udp] [..69.230.164.78][55275] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 64 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 61|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 14]
new: [....62] [ip4][..udp] [..88.31.110.219][50660] -> [.186.112.202.53][..427]
detected: [....62] [ip4][..udp] [..88.31.110.219][50660] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....61] [ip4][..udp] [..235.98.65.133][31778] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 65 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 62|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 14]
new: [....63] [ip4][..udp] [...35.0.100.115][62892] -> [.165.114.202.61][..427]
detected: [....63] [ip4][..udp] [...35.0.100.115][62892] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....62] [ip4][..udp] [..88.31.110.219][50660] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 66 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 63|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 14]
new: [....64] [ip4][..udp] [.34.102.125.120][17423] -> [..165.144.84.62][..427]
detected: [....64] [ip4][..udp] [.34.102.125.120][17423] -> [..165.144.84.62][..427] [Service_Location_Protocol][GoogleCloud][RPC][Acceptable]
idle: [....63] [ip4][..udp] [...35.0.100.115][62892] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 67 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 64|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 14]
new: [....65] [ip4][..udp] [.70.232.230.229][51197] -> [...85.111.52.57][..427]
detected: [....65] [ip4][..udp] [.70.232.230.229][51197] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....64] [ip4][..udp] [.34.102.125.120][17423] -> [..165.144.84.62][..427] [Service_Location_Protocol][GoogleCloud][RPC][Acceptable]
DAEMON-EVENT: [Processed: 68 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 65|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 14]
new: [....66] [ip4][..udp] [172.237.152.209][51708] -> [..165.144.84.62][..427]
detected: [....66] [ip4][..udp] [172.237.152.209][51708] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....65] [ip4][..udp] [.70.232.230.229][51197] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 69 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 66|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 14]
new: [....67] [ip4][..udp] [...58.36.157.61][53238] -> [..74.111.203.55][..427]
detected: [....67] [ip4][..udp] [...58.36.157.61][53238] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....66] [ip4][..udp] [172.237.152.209][51708] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 70 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 67|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 14]
new: [....68] [ip4][..udp] [.227.134.81.212][37207] -> [...85.111.52.57][..427]
detected: [....68] [ip4][..udp] [.227.134.81.212][37207] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....67] [ip4][..udp] [...58.36.157.61][53238] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 71 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 68|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 14]
new: [....69] [ip4][..udp] [..39.59.139.121][51157] -> [...85.111.52.57][..427]
detected: [....69] [ip4][..udp] [..39.59.139.121][51157] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....68] [ip4][..udp] [.227.134.81.212][37207] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 72 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 69|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 14]
new: [....70] [ip4][..udp] [.227.134.81.212][45177] -> [..90.111.212.50][..427]
detected: [....70] [ip4][..udp] [.227.134.81.212][45177] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....69] [ip4][..udp] [..39.59.139.121][51157] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 73 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 70|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 14]
new: [....71] [ip4][..udp] [.103.71.146.222][47772] -> [.165.114.202.61][..427]
detected: [....71] [ip4][..udp] [.103.71.146.222][47772] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....70] [ip4][..udp] [.227.134.81.212][45177] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 74 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 71|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 14]
new: [....72] [ip4][..udp] [238.132.112.150][44248] -> [..90.147.171.51][..427]
detected: [....72] [ip4][..udp] [238.132.112.150][44248] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....71] [ip4][..udp] [.103.71.146.222][47772] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 75 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 72|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 14]
new: [....73] [ip4][..udp] [134.180.144.149][47037] -> [..90.145.180.58][..427]
detected: [....73] [ip4][..udp] [134.180.144.149][47037] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....72] [ip4][..udp] [238.132.112.150][44248] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [....74] [ip4][..udp] [.236.155.96.147][44475] -> [..90.111.212.50][..427]
detected: [....74] [ip4][..udp] [.236.155.96.147][44475] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....73] [ip4][..udp] [134.180.144.149][47037] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 77 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 74|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 14]
new: [....75] [ip4][..udp] [182.180.120.139][33156] -> [..74.111.203.55][..427]
detected: [....75] [ip4][..udp] [182.180.120.139][33156] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....74] [ip4][..udp] [.236.155.96.147][44475] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [....76] [ip4][..udp] [..19.99.147.148][49052] -> [...90.141.37.56][..427]
detected: [....76] [ip4][..udp] [..19.99.147.148][49052] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....75] [ip4][..udp] [182.180.120.139][33156] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 79 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 76|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 14]
new: [....77] [ip4][..udp] [.47.123.177.154][44018] -> [.165.114.202.61][..427]
detected: [....77] [ip4][..udp] [.47.123.177.154][44018] -> [.165.114.202.61][..427] [Service_Location_Protocol][Alibaba][RPC][Acceptable]
new: [....78] [ip4][..udp] [..46.100.97.147][37387] -> [..165.144.84.62][..427]
detected: [....78] [ip4][..udp] [..46.100.97.147][37387] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....76] [ip4][..udp] [..19.99.147.148][49052] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 81 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 78|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 14]
new: [....79] [ip4][..udp] [134.180.144.149][48737] -> [.186.112.202.53][..427]
detected: [....79] [ip4][..udp] [134.180.144.149][48737] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....78] [ip4][..udp] [..46.100.97.147][37387] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....77] [ip4][..udp] [.47.123.177.154][44018] -> [.165.114.202.61][..427] [Service_Location_Protocol][Alibaba][RPC][Acceptable]
new: [....80] [ip4][..udp] [200.180.144.114][57533] -> [..69.109.187.54][..427]
detected: [....80] [ip4][..udp] [200.180.144.114][57533] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [....79] [ip4][..udp] [134.180.144.149][48737] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [....81] [ip4][..udp] [.47.123.177.154][35950] -> [...85.111.52.57][..427]
detected: [....81] [ip4][..udp] [.47.123.177.154][35950] -> [...85.111.52.57][..427] [Service_Location_Protocol][Alibaba][RPC][Acceptable]
idle: [....80] [ip4][..udp] [200.180.144.114][57533] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....79] [ip4][..udp] [134.180.144.149][48737] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 84 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 81|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 15]
new: [....82] [ip4][..udp] [.....44.49.31.2][51197] -> [..90.147.171.51][..427]
detected: [....82] [ip4][..udp] [.....44.49.31.2][51197] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....81] [ip4][..udp] [.47.123.177.154][35950] -> [...85.111.52.57][..427] [Service_Location_Protocol][Alibaba][RPC][Acceptable]
new: [....83] [ip4][..udp] [..19.99.146.156][54379] -> [..90.145.180.58][..427]
detected: [....83] [ip4][..udp] [..19.99.146.156][54379] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....82] [ip4][..udp] [.....44.49.31.2][51197] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 86 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 83|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 15]
new: [....84] [ip4][..udp] [....174.50.7.11][55450] -> [..69.109.187.54][..427]
detected: [....84] [ip4][..udp] [....174.50.7.11][55450] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....83] [ip4][..udp] [..19.99.146.156][54379] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [....85] [ip4][..udp] [.58.218.184.177][54059] -> [..90.111.212.50][..427]
detected: [....85] [ip4][..udp] [.58.218.184.177][54059] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [....84] [ip4][..udp] [....174.50.7.11][55450] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 88 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 85|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 16]
new: [....86] [ip4][..udp] [...31.0.154.114][40383] -> [..90.145.180.58][..427]
detected: [....86] [ip4][..udp] [...31.0.154.114][40383] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....84] [ip4][..udp] [....174.50.7.11][55450] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....85] [ip4][..udp] [.58.218.184.177][54059] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 89 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 86|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 16]
new: [....87] [ip4][..udp] [.66.228.194.219][53105] -> [.186.112.202.53][..427]
detected: [....87] [ip4][..udp] [.66.228.194.219][53105] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....86] [ip4][..udp] [...31.0.154.114][40383] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 90 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 87|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 16]
new: [....88] [ip4][..udp] [..67.159.16.150][43759] -> [..74.111.203.55][..427]
detected: [....88] [ip4][..udp] [..67.159.16.150][43759] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....87] [ip4][..udp] [.66.228.194.219][53105] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 91 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 88|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 16]
new: [....89] [ip4][..udp] [.200.31.144.158][53596] -> [..90.111.212.50][..427]
detected: [....89] [ip4][..udp] [.200.31.144.158][53596] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....88] [ip4][..udp] [..67.159.16.150][43759] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 92 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 89|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 16]
new: [....90] [ip4][..udp] [.200.31.144.158][47879] -> [..69.109.187.54][..427]
detected: [....90] [ip4][..udp] [.200.31.144.158][47879] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....89] [ip4][..udp] [.200.31.144.158][53596] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [....91] [ip4][..udp] [.200.31.144.158][44785] -> [..90.147.171.51][..427]
detected: [....91] [ip4][..udp] [.200.31.144.158][44785] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....90] [ip4][..udp] [.200.31.144.158][47879] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 94 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 91|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 16]
new: [....92] [ip4][..udp] [.200.31.144.158][51364] -> [..165.144.84.62][..427]
detected: [....92] [ip4][..udp] [.200.31.144.158][51364] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....91] [ip4][..udp] [.200.31.144.158][44785] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [....93] [ip4][..udp] [.200.31.144.158][41690] -> [..74.111.203.55][..427]
detected: [....93] [ip4][..udp] [.200.31.144.158][41690] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [....92] [ip4][..udp] [.200.31.144.158][51364] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [....94] [ip4][..udp] [.200.31.144.158][51228] -> [.165.114.202.61][..427]
detected: [....94] [ip4][..udp] [.200.31.144.158][51228] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....92] [ip4][..udp] [.200.31.144.158][51364] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [....93] [ip4][..udp] [.200.31.144.158][41690] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 97 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 94|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 18]
new: [....95] [ip4][..udp] [..35.252.69.113][59682] -> [...90.141.37.56][..427]
detected: [....95] [ip4][..udp] [..35.252.69.113][59682] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....93] [ip4][..udp] [.200.31.144.158][41690] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....94] [ip4][..udp] [.200.31.144.158][51228] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [....96] [ip4][..udp] [..208.209.71.22][55733] -> [...85.111.52.57][..427]
detected: [....96] [ip4][..udp] [..208.209.71.22][55733] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [....95] [ip4][..udp] [..35.252.69.113][59682] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [....97] [ip4][..udp] [.200.31.144.158][40943] -> [...90.141.37.56][..427]
detected: [....97] [ip4][..udp] [.200.31.144.158][40943] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....95] [ip4][..udp] [..35.252.69.113][59682] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [....96] [ip4][..udp] [..208.209.71.22][55733] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 100 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 97|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 20]
new: [....98] [ip4][..udp] [.200.31.144.158][33048] -> [..90.145.180.58][..427]
detected: [....98] [ip4][..udp] [.200.31.144.158][33048] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....96] [ip4][..udp] [..208.209.71.22][55733] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....97] [ip4][..udp] [.200.31.144.158][40943] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 101 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 98|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 20]
new: [....99] [ip4][..udp] [.19.156.188.155][47964] -> [.186.112.202.53][..427]
detected: [....99] [ip4][..udp] [.19.156.188.155][47964] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....98] [ip4][..udp] [.200.31.144.158][33048] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 102 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 99|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 20]
new: [...100] [ip4][..udp] [.210.12.216.151][54477] -> [..90.145.180.58][..427]
detected: [...100] [ip4][..udp] [.210.12.216.151][54477] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [....99] [ip4][..udp] [.19.156.188.155][47964] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 103 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 100|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 20]
new: [...101] [ip4][..udp] [..70.28.101.252][52969] -> [...90.141.37.56][..427]
detected: [...101] [ip4][..udp] [..70.28.101.252][52969] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...100] [ip4][..udp] [.210.12.216.151][54477] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 104 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 101|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 20]
new: [...102] [ip4][..udp] [....57.3.49.213][25820] -> [..74.111.203.55][..427]
detected: [...102] [ip4][..udp] [....57.3.49.213][25820] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...101] [ip4][..udp] [..70.28.101.252][52969] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...103] [ip4][..udp] [.70.193.198.250][29011] -> [..69.109.187.54][..427]
detected: [...103] [ip4][..udp] [.70.193.198.250][29011] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...102] [ip4][..udp] [....57.3.49.213][25820] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 106 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 103|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 20]
new: [...104] [ip4][..udp] [...87.0.217.242][54220] -> [...85.111.52.57][..427]
detected: [...104] [ip4][..udp] [...87.0.217.242][54220] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...103] [ip4][..udp] [.70.193.198.250][29011] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...105] [ip4][..udp] [.54.251.198.222][40998] -> [..165.144.84.62][..427]
detected: [...105] [ip4][..udp] [.54.251.198.222][40998] -> [..165.144.84.62][..427] [Service_Location_Protocol][AmazonAWS][RPC][Acceptable]
idle: [...104] [ip4][..udp] [...87.0.217.242][54220] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 108 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 105|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 20]
new: [...106] [ip4][..udp] [...87.39.57.211][42486] -> [...90.141.37.56][..427]
detected: [...106] [ip4][..udp] [...87.39.57.211][42486] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...105] [ip4][..udp] [.54.251.198.222][40998] -> [..165.144.84.62][..427] [Service_Location_Protocol][AmazonAWS][RPC][Acceptable]
new: [...107] [ip4][..udp] [..88.219.46.235][.7636] -> [..90.147.171.51][..427]
detected: [...107] [ip4][..udp] [..88.219.46.235][.7636] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...106] [ip4][..udp] [...87.39.57.211][42486] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...108] [ip4][..udp] [..173.241.63.36][56717] -> [..74.111.203.55][..427]
detected: [...108] [ip4][..udp] [..173.241.63.36][56717] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...107] [ip4][..udp] [..88.219.46.235][.7636] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...109] [ip4][..udp] [..167.57.49.219][49798] -> [..90.111.212.50][..427]
detected: [...109] [ip4][..udp] [..167.57.49.219][49798] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...107] [ip4][..udp] [..88.219.46.235][.7636] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...108] [ip4][..udp] [..173.241.63.36][56717] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...110] [ip4][..udp] [.168.222.38.193][38055] -> [.186.112.202.53][..427]
detected: [...110] [ip4][..udp] [.168.222.38.193][38055] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...108] [ip4][..udp] [..173.241.63.36][56717] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...109] [ip4][..udp] [..167.57.49.219][49798] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 113 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 110|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 23]
new: [...111] [ip4][..udp] [..46.204.255.75][55098] -> [..165.144.84.62][..427]
detected: [...111] [ip4][..udp] [..46.204.255.75][55098] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...112] [ip4][..udp] [..88.219.46.235][44462] -> [..90.145.180.58][..427]
detected: [...112] [ip4][..udp] [..88.219.46.235][44462] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...109] [ip4][..udp] [..167.57.49.219][49798] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...110] [ip4][..udp] [.168.222.38.193][38055] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...111] [ip4][..udp] [..46.204.255.75][55098] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 115 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 3 / 112|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 25]
new: [...113] [ip4][..udp] [..167.57.49.219][62479] -> [.165.114.202.61][..427]
detected: [...113] [ip4][..udp] [..167.57.49.219][62479] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...112] [ip4][..udp] [..88.219.46.235][44462] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...110] [ip4][..udp] [.168.222.38.193][38055] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...111] [ip4][..udp] [..46.204.255.75][55098] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...114] [ip4][..udp] [...83.14.224.14][55733] -> [.165.114.202.61][..427]
detected: [...114] [ip4][..udp] [...83.14.224.14][55733] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...113] [ip4][..udp] [..167.57.49.219][62479] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 117 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 114|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 25]
new: [...115] [ip4][..udp] [.159.60.180.118][43688] -> [..69.109.187.54][..427]
detected: [...115] [ip4][..udp] [.159.60.180.118][43688] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...114] [ip4][..udp] [...83.14.224.14][55733] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 118 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 115|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 25]
new: [...116] [ip4][..udp] [134.180.144.149][38375] -> [..90.147.171.51][..427]
detected: [...116] [ip4][..udp] [134.180.144.149][38375] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...115] [ip4][..udp] [.159.60.180.118][43688] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 119 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 116|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 25]
new: [...117] [ip4][..udp] [134.180.144.149][52853] -> [...90.141.37.56][..427]
detected: [...117] [ip4][..udp] [134.180.144.149][52853] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...116] [ip4][..udp] [134.180.144.149][38375] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 120 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 117|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 25]
new: [...118] [ip4][..udp] [239.100.141.153][53222] -> [.165.114.202.61][..427]
detected: [...118] [ip4][..udp] [239.100.141.153][53222] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...117] [ip4][..udp] [134.180.144.149][52853] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 121 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 118|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 25]
new: [...119] [ip4][..udp] [..45.99.146.146][34238] -> [..90.111.212.50][..427]
detected: [...119] [ip4][..udp] [..45.99.146.146][34238] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...118] [ip4][..udp] [239.100.141.153][53222] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...120] [ip4][..udp] [182.180.120.139][60043] -> [..165.144.84.62][..427]
detected: [...120] [ip4][..udp] [182.180.120.139][60043] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...119] [ip4][..udp] [..45.99.146.146][34238] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 123 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 120|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 26]
new: [...121] [ip4][..udp] [..46.100.97.147][55816] -> [..74.111.203.55][..427]
detected: [...121] [ip4][..udp] [..46.100.97.147][55816] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...120] [ip4][..udp] [182.180.120.139][60043] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...119] [ip4][..udp] [..45.99.146.146][34238] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 124 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 121|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 26]
new: [...122] [ip4][..udp] [.47.123.177.154][47805] -> [..69.109.187.54][..427]
detected: [...122] [ip4][..udp] [.47.123.177.154][47805] -> [..69.109.187.54][..427] [Service_Location_Protocol][Alibaba][RPC][Acceptable]
idle: [...121] [ip4][..udp] [..46.100.97.147][55816] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...123] [ip4][..udp] [134.180.144.149][51113] -> [..90.145.180.58][..427]
detected: [...123] [ip4][..udp] [134.180.144.149][51113] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...124] [ip4][..udp] [.70.180.111.241][39226] -> [.186.112.202.53][..427]
detected: [...124] [ip4][..udp] [.70.180.111.241][39226] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...122] [ip4][..udp] [.47.123.177.154][47805] -> [..69.109.187.54][..427] [Service_Location_Protocol][Alibaba][RPC][Acceptable]
idle: [...123] [ip4][..udp] [134.180.144.149][51113] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 127 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 124|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 26]
new: [...125] [ip4][..udp] [...35.0.100.115][.9681] -> [..165.144.84.62][..427]
detected: [...125] [ip4][..udp] [...35.0.100.115][.9681] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...124] [ip4][..udp] [.70.180.111.241][39226] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...126] [ip4][..udp] [226.158.252.127][24595] -> [..74.111.203.55][..427]
detected: [...126] [ip4][..udp] [226.158.252.127][24595] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...125] [ip4][..udp] [...35.0.100.115][.9681] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 129 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 126|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 26]
new: [...127] [ip4][..udp] [...66.24.225.77][56086] -> [..74.111.203.55][..427]
detected: [...127] [ip4][..udp] [...66.24.225.77][56086] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...126] [ip4][..udp] [226.158.252.127][24595] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 130 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 127|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 26]
new: [...128] [ip4][..udp] [...83.14.224.14][49307] -> [..90.145.180.58][..427]
detected: [...128] [ip4][..udp] [...83.14.224.14][49307] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...127] [ip4][..udp] [...66.24.225.77][56086] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 131 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 128|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 26]
new: [...129] [ip4][..udp] [.98.103.253.115][44099] -> [...90.141.37.56][..427]
detected: [...129] [ip4][..udp] [.98.103.253.115][44099] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...128] [ip4][..udp] [...83.14.224.14][49307] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 132 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 129|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 26]
new: [...130] [ip4][..udp] [226.128.122.118][29946] -> [.165.114.202.61][..427]
detected: [...130] [ip4][..udp] [226.128.122.118][29946] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...129] [ip4][..udp] [.98.103.253.115][44099] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 133 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 130|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 26]
new: [...131] [ip4][..udp] [..64.63.219.226][57092] -> [..90.147.171.51][..427]
detected: [...131] [ip4][..udp] [..64.63.219.226][57092] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...130] [ip4][..udp] [226.128.122.118][29946] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 134 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 131|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 26]
new: [...132] [ip4][..udp] [160.184.203.250][41825] -> [..74.111.203.55][..427]
detected: [...132] [ip4][..udp] [160.184.203.250][41825] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...131] [ip4][..udp] [..64.63.219.226][57092] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...133] [ip4][..udp] [..64.63.219.226][57092] -> [.165.114.202.61][..427]
detected: [...133] [ip4][..udp] [..64.63.219.226][57092] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...132] [ip4][..udp] [160.184.203.250][41825] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 136 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 133|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 27]
new: [...134] [ip4][..udp] [..64.71.218.224][20366] -> [...85.111.52.57][..427]
detected: [...134] [ip4][..udp] [..64.71.218.224][20366] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...133] [ip4][..udp] [..64.63.219.226][57092] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...132] [ip4][..udp] [160.184.203.250][41825] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...135] [ip4][..udp] [...64.65.52.246][10179] -> [..165.144.84.62][..427]
detected: [...135] [ip4][..udp] [...64.65.52.246][10179] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...134] [ip4][..udp] [..64.71.218.224][20366] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...136] [ip4][..udp] [..64.63.219.226][10207] -> [...90.141.37.56][..427]
detected: [...136] [ip4][..udp] [..64.63.219.226][10207] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...137] [ip4][..udp] [.161.193.58.225][64776] -> [.186.112.202.53][..427]
detected: [...137] [ip4][..udp] [.161.193.58.225][64776] -> [.186.112.202.53][..427] [Service_Location_Protocol][AmazonAWS][RPC][Acceptable]
idle: [...135] [ip4][..udp] [...64.65.52.246][10179] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...136] [ip4][..udp] [..64.63.219.226][10207] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...134] [ip4][..udp] [..64.71.218.224][20366] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 140 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 137|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 28]
new: [...138] [ip4][..udp] [..65.62.197.248][45675] -> [..69.109.187.54][..427]
detected: [...138] [ip4][..udp] [..65.62.197.248][45675] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...137] [ip4][..udp] [.161.193.58.225][64776] -> [.186.112.202.53][..427] [Service_Location_Protocol][AmazonAWS][RPC][Acceptable]
DAEMON-EVENT: [Processed: 141 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 138|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 28]
new: [...139] [ip4][..udp] [..16.99.147.146][48728] -> [..165.144.84.62][..427]
detected: [...139] [ip4][..udp] [..16.99.147.146][48728] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...138] [ip4][..udp] [..65.62.197.248][45675] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 142 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 139|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 28]
new: [...140] [ip4][..udp] [.75.153.126.243][54378] -> [..69.109.187.54][..427]
detected: [...140] [ip4][..udp] [.75.153.126.243][54378] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...139] [ip4][..udp] [..16.99.147.146][48728] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...141] [ip4][..udp] [.70.216.186.103][55880] -> [..165.144.84.62][..427]
detected: [...141] [ip4][..udp] [.70.216.186.103][55880] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...140] [ip4][..udp] [.75.153.126.243][54378] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 144 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 141|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 28]
new: [...142] [ip4][..udp] [..82.14.191.177][51704] -> [.186.112.202.53][..427]
detected: [...142] [ip4][..udp] [..82.14.191.177][51704] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...141] [ip4][..udp] [.70.216.186.103][55880] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...143] [ip4][..udp] [..70.28.101.252][49306] -> [..69.109.187.54][..427]
detected: [...143] [ip4][..udp] [..70.28.101.252][49306] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...142] [ip4][..udp] [..82.14.191.177][51704] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...144] [ip4][..udp] [..166.235.162.1][50338] -> [.165.114.202.61][..427]
detected: [...144] [ip4][..udp] [..166.235.162.1][50338] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...142] [ip4][..udp] [..82.14.191.177][51704] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...143] [ip4][..udp] [..70.28.101.252][49306] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 147 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 144|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 30]
new: [...145] [ip4][..udp] [...38.238.166.9][56529] -> [..90.147.171.51][..427]
detected: [...145] [ip4][..udp] [...38.238.166.9][56529] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...143] [ip4][..udp] [..70.28.101.252][49306] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...144] [ip4][..udp] [..166.235.162.1][50338] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 148 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 145|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 30]
new: [...146] [ip4][..udp] [..206.204.24.90][51495] -> [...90.141.37.56][..427]
detected: [...146] [ip4][..udp] [..206.204.24.90][51495] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...145] [ip4][..udp] [...38.238.166.9][56529] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 149 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 146|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 30]
new: [...147] [ip4][..udp] [165.128.253.116][.5073] -> [..90.147.171.51][..427]
detected: [...147] [ip4][..udp] [165.128.253.116][.5073] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...146] [ip4][..udp] [..206.204.24.90][51495] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 150 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 147|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 30]
new: [...148] [ip4][..udp] [.217.31.231.255][56070] -> [..90.111.212.50][..427]
detected: [...148] [ip4][..udp] [.217.31.231.255][56070] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...147] [ip4][..udp] [165.128.253.116][.5073] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 151 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 148|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 30]
new: [...149] [ip4][..udp] [.28.102.134.210][45382] -> [..69.109.187.54][..427]
detected: [...149] [ip4][..udp] [.28.102.134.210][45382] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...148] [ip4][..udp] [.217.31.231.255][56070] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 152 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 149|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 30]
new: [...150] [ip4][..udp] [..173.241.63.36][50984] -> [...85.111.52.57][..427]
detected: [...150] [ip4][..udp] [..173.241.63.36][50984] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...149] [ip4][..udp] [.28.102.134.210][45382] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 153 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 150|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 30]
new: [...151] [ip4][..udp] [...81.24.43.106][60145] -> [..90.111.212.50][..427]
detected: [...151] [ip4][..udp] [...81.24.43.106][60145] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...150] [ip4][..udp] [..173.241.63.36][50984] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 154 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 151|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 30]
new: [...152] [ip4][..udp] [...81.24.43.106][57096] -> [..74.111.203.55][..427]
detected: [...152] [ip4][..udp] [...81.24.43.106][57096] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...151] [ip4][..udp] [...81.24.43.106][60145] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 155 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 152|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 30]
new: [...153] [ip4][..udp] [...81.24.43.106][58419] -> [..69.109.187.54][..427]
detected: [...153] [ip4][..udp] [...81.24.43.106][58419] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...152] [ip4][..udp] [...81.24.43.106][57096] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...154] [ip4][..udp] [...81.24.43.106][52243] -> [...85.111.52.57][..427]
detected: [...154] [ip4][..udp] [...81.24.43.106][52243] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...153] [ip4][..udp] [...81.24.43.106][58419] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 157 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 154|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 31]
new: [...155] [ip4][..udp] [.70.180.111.241][39508] -> [..165.144.84.62][..427]
detected: [...155] [ip4][..udp] [.70.180.111.241][39508] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...153] [ip4][..udp] [...81.24.43.106][58419] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...154] [ip4][..udp] [...81.24.43.106][52243] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 158 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 155|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 31]
new: [...156] [ip4][..udp] [208.100.177.136][45704] -> [..90.111.212.50][..427]
detected: [...156] [ip4][..udp] [208.100.177.136][45704] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...155] [ip4][..udp] [.70.180.111.241][39508] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...157] [ip4][..udp] [...81.24.43.106][47011] -> [..165.144.84.62][..427]
detected: [...157] [ip4][..udp] [...81.24.43.106][47011] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...156] [ip4][..udp] [208.100.177.136][45704] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 160 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 157|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 31]
new: [...158] [ip4][..udp] [182.180.120.139][33316] -> [..69.109.187.54][..427]
detected: [...158] [ip4][..udp] [182.180.120.139][33316] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...157] [ip4][..udp] [...81.24.43.106][47011] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...159] [ip4][..udp] [182.180.120.139][38297] -> [...90.141.37.56][..427]
detected: [...159] [ip4][..udp] [182.180.120.139][38297] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...158] [ip4][..udp] [182.180.120.139][33316] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 162 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 159|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 31]
new: [...160] [ip4][..udp] [.246.75.104.115][49217] -> [..90.145.180.58][..427]
detected: [...160] [ip4][..udp] [.246.75.104.115][49217] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...159] [ip4][..udp] [182.180.120.139][38297] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...161] [ip4][..udp] [.246.75.104.115][50697] -> [.186.112.202.53][..427]
detected: [...161] [ip4][..udp] [.246.75.104.115][50697] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 164 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 161|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 31]
new: [...162] [ip4][..udp] [.45.124.147.156][57093] -> [...85.111.52.57][..427]
detected: [...162] [ip4][..udp] [.45.124.147.156][57093] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...161] [ip4][..udp] [.246.75.104.115][50697] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...160] [ip4][..udp] [.246.75.104.115][49217] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...163] [ip4][..udp] [...81.24.43.106][60815] -> [...90.141.37.56][..427]
detected: [...163] [ip4][..udp] [...81.24.43.106][60815] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...162] [ip4][..udp] [.45.124.147.156][57093] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 166 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 163|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 31]
new: [...164] [ip4][..udp] [.246.75.104.115][34990] -> [..74.111.203.55][..427]
detected: [...164] [ip4][..udp] [.246.75.104.115][34990] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...163] [ip4][..udp] [...81.24.43.106][60815] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...165] [ip4][..udp] [239.100.141.153][41989] -> [..90.147.171.51][..427]
detected: [...165] [ip4][..udp] [239.100.141.153][41989] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...164] [ip4][..udp] [.246.75.104.115][34990] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...166] [ip4][..udp] [184.180.168.240][39574] -> [.165.114.202.61][..427]
detected: [...166] [ip4][..udp] [184.180.168.240][39574] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 169 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 3 / 166|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 32]
new: [...167] [ip4][..udp] [...81.24.43.106][58836] -> [..90.147.171.51][..427]
detected: [...167] [ip4][..udp] [...81.24.43.106][58836] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...166] [ip4][..udp] [184.180.168.240][39574] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...164] [ip4][..udp] [.246.75.104.115][34990] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...165] [ip4][..udp] [239.100.141.153][41989] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 170 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 167|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 32]
new: [...168] [ip4][..udp] [.100.56.155.112][.1724] -> [..90.147.171.51][..427]
detected: [...168] [ip4][..udp] [.100.56.155.112][.1724] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...167] [ip4][..udp] [...81.24.43.106][58836] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 171 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 168|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 32]
new: [...169] [ip4][..udp] [.227.134.81.212][10457] -> [..74.111.203.55][..427]
detected: [...169] [ip4][..udp] [.227.134.81.212][10457] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...168] [ip4][..udp] [.100.56.155.112][.1724] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 172 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 169|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 32]
new: [...170] [ip4][..udp] [.75.137.134.242][.6448] -> [..74.111.203.55][..427]
detected: [...170] [ip4][..udp] [.75.137.134.242][.6448] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...169] [ip4][..udp] [.227.134.81.212][10457] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 173 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 170|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 32]
new: [...171] [ip4][..udp] [..91.33.106.218][.2534] -> [..165.144.84.62][..427]
detected: [...171] [ip4][..udp] [..91.33.106.218][.2534] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...170] [ip4][..udp] [.75.137.134.242][.6448] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 174 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 171|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 32]
new: [...172] [ip4][..udp] [.34.119.122.126][.6239] -> [...85.111.52.57][..427]
detected: [...172] [ip4][..udp] [.34.119.122.126][.6239] -> [...85.111.52.57][..427] [Service_Location_Protocol][Google][RPC][Acceptable]
idle: [...171] [ip4][..udp] [..91.33.106.218][.2534] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 175 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 172|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 32]
new: [...173] [ip4][..udp] [..46.100.97.147][52664] -> [.165.114.202.61][..427]
detected: [...173] [ip4][..udp] [..46.100.97.147][52664] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...172] [ip4][..udp] [.34.119.122.126][.6239] -> [...85.111.52.57][..427] [Service_Location_Protocol][Google][RPC][Acceptable]
DAEMON-EVENT: [Processed: 176 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 173|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 32]
new: [...174] [ip4][..udp] [...81.24.43.106][48098] -> [..90.145.180.58][..427]
detected: [...174] [ip4][..udp] [...81.24.43.106][48098] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...173] [ip4][..udp] [..46.100.97.147][52664] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 177 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 174|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 32]
new: [...175] [ip4][..udp] [...81.24.43.106][43525] -> [.165.114.202.61][..427]
detected: [...175] [ip4][..udp] [...81.24.43.106][43525] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...174] [ip4][..udp] [...81.24.43.106][48098] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 178 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 175|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 32]
new: [...176] [ip4][..udp] [...33.216.90.56][53342] -> [..90.147.171.51][..427]
detected: [...176] [ip4][..udp] [...33.216.90.56][53342] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...175] [ip4][..udp] [...81.24.43.106][43525] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...177] [ip4][..udp] [..161.47.199.37][50010] -> [.186.112.202.53][..427]
detected: [...177] [ip4][..udp] [..161.47.199.37][50010] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...176] [ip4][..udp] [...33.216.90.56][53342] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 180 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 177|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 32]
new: [...178] [ip4][..udp] [.93.102.124.112][41596] -> [..90.111.212.50][..427]
detected: [...178] [ip4][..udp] [.93.102.124.112][41596] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...177] [ip4][..udp] [..161.47.199.37][50010] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 181 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 178|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 32]
new: [...179] [ip4][..udp] [.119.34.147.222][56878] -> [..90.145.180.58][..427]
detected: [...179] [ip4][..udp] [.119.34.147.222][56878] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...178] [ip4][..udp] [.93.102.124.112][41596] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...180] [ip4][..udp] [249.149.111.219][57636] -> [...90.141.37.56][..427]
detected: [...180] [ip4][..udp] [249.149.111.219][57636] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...179] [ip4][..udp] [.119.34.147.222][56878] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...181] [ip4][..udp] [118.158.148.196][44102] -> [.165.114.202.61][..427]
detected: [...181] [ip4][..udp] [118.158.148.196][44102] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...182] [ip4][..udp] [134.217.184.242][23876] -> [...85.111.52.57][..427]
detected: [...182] [ip4][..udp] [134.217.184.242][23876] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...180] [ip4][..udp] [249.149.111.219][57636] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...181] [ip4][..udp] [118.158.148.196][44102] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...183] [ip4][..udp] [..185.97.76.211][42268] -> [..69.109.187.54][..427]
detected: [...183] [ip4][..udp] [..185.97.76.211][42268] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...181] [ip4][..udp] [118.158.148.196][44102] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...182] [ip4][..udp] [134.217.184.242][23876] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 186 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 183|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 34]
new: [...184] [ip4][..udp] [.71.170.115.245][44124] -> [..74.111.203.55][..427]
detected: [...184] [ip4][..udp] [.71.170.115.245][44124] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...183] [ip4][..udp] [..185.97.76.211][42268] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...182] [ip4][..udp] [134.217.184.242][23876] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...185] [ip4][..udp] [.198.153.87.225][34996] -> [..165.144.84.62][..427]
detected: [...185] [ip4][..udp] [.198.153.87.225][34996] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...184] [ip4][..udp] [.71.170.115.245][44124] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...186] [ip4][..udp] [.71.170.115.245][44124] -> [..90.111.212.50][..427]
detected: [...186] [ip4][..udp] [.71.170.115.245][44124] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...185] [ip4][..udp] [.198.153.87.225][34996] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...187] [ip4][..udp] [134.217.184.242][41215] -> [..90.147.171.51][..427]
detected: [...187] [ip4][..udp] [134.217.184.242][41215] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 190 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 187|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 34]
new: [...188] [ip4][..udp] [..56.82.128.250][53705] -> [.186.112.202.53][..427]
detected: [...188] [ip4][..udp] [..56.82.128.250][53705] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...187] [ip4][..udp] [134.217.184.242][41215] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...186] [ip4][..udp] [.71.170.115.245][44124] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 191 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 188|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 34]
new: [...189] [ip4][..udp] [.218.211.196.58][52158] -> [...85.111.52.57][..427]
detected: [...189] [ip4][..udp] [.218.211.196.58][52158] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...188] [ip4][..udp] [..56.82.128.250][53705] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 192 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 189|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 34]
new: [...190] [ip4][..udp] [236.131.162.157][34095] -> [..90.147.171.51][..427]
detected: [...190] [ip4][..udp] [236.131.162.157][34095] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...189] [ip4][..udp] [.218.211.196.58][52158] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 193 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 190|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 34]
new: [...191] [ip4][..udp] [.177.48.184.247][56640] -> [.165.114.202.61][..427]
detected: [...191] [ip4][..udp] [.177.48.184.247][56640] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...190] [ip4][..udp] [236.131.162.157][34095] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 194 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 191|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 34]
new: [...192] [ip4][..udp] [..69.36.231.230][53489] -> [..90.111.212.50][..427]
detected: [...192] [ip4][..udp] [..69.36.231.230][53489] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...191] [ip4][..udp] [.177.48.184.247][56640] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 195 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 192|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 34]
new: [...193] [ip4][..udp] [...44.239.95.30][56105] -> [..74.111.203.55][..427]
detected: [...193] [ip4][..udp] [...44.239.95.30][56105] -> [..74.111.203.55][..427] [Service_Location_Protocol][AmazonAWS][RPC][Acceptable]
idle: [...192] [ip4][..udp] [..69.36.231.230][53489] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 196 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 193|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 34]
new: [...194] [ip4][..udp] [....80.16.0.251][49389] -> [..165.144.84.62][..427]
detected: [...194] [ip4][..udp] [....80.16.0.251][49389] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...193] [ip4][..udp] [...44.239.95.30][56105] -> [..74.111.203.55][..427] [Service_Location_Protocol][AmazonAWS][RPC][Acceptable]
DAEMON-EVENT: [Processed: 197 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 194|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 34]
new: [...195] [ip4][..udp] [...165.37.39.94][49159] -> [..69.109.187.54][..427]
detected: [...195] [ip4][..udp] [...165.37.39.94][49159] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...194] [ip4][..udp] [....80.16.0.251][49389] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 198 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 195|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 34]
new: [...196] [ip4][..udp] [..178.14.64.233][55586] -> [...90.141.37.56][..427]
detected: [...196] [ip4][..udp] [..178.14.64.233][55586] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...195] [ip4][..udp] [...165.37.39.94][49159] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 199 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 196|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 34]
new: [...197] [ip4][..udp] [.200.31.144.158][47437] -> [.165.114.202.61][..427]
detected: [...197] [ip4][..udp] [.200.31.144.158][47437] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...196] [ip4][..udp] [..178.14.64.233][55586] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 200 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 197|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 34]
new: [...198] [ip4][..udp] [.200.31.144.158][44893] -> [..69.109.187.54][..427]
detected: [...198] [ip4][..udp] [.200.31.144.158][44893] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...197] [ip4][..udp] [.200.31.144.158][47437] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...199] [ip4][..udp] [.200.31.144.158][46878] -> [...85.111.52.57][..427]
detected: [...199] [ip4][..udp] [.200.31.144.158][46878] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...198] [ip4][..udp] [.200.31.144.158][44893] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 202 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 199|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 34]
new: [...200] [ip4][..udp] [.200.31.144.158][39691] -> [..90.111.212.50][..427]
detected: [...200] [ip4][..udp] [.200.31.144.158][39691] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...199] [ip4][..udp] [.200.31.144.158][46878] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 203 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 200|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 34]
new: [...201] [ip4][..udp] [.200.31.144.158][59069] -> [..74.111.203.55][..427]
detected: [...201] [ip4][..udp] [.200.31.144.158][59069] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...200] [ip4][..udp] [.200.31.144.158][39691] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...202] [ip4][..udp] [.200.31.144.158][51406] -> [..90.147.171.51][..427]
detected: [...202] [ip4][..udp] [.200.31.144.158][51406] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...201] [ip4][..udp] [.200.31.144.158][59069] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 205 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 202|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 34]
new: [...203] [ip4][..udp] [.200.31.144.158][35296] -> [...90.141.37.56][..427]
detected: [...203] [ip4][..udp] [.200.31.144.158][35296] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...202] [ip4][..udp] [.200.31.144.158][51406] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...204] [ip4][..udp] [.200.31.144.158][48172] -> [..90.145.180.58][..427]
detected: [...204] [ip4][..udp] [.200.31.144.158][48172] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...202] [ip4][..udp] [.200.31.144.158][51406] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...203] [ip4][..udp] [.200.31.144.158][35296] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 207 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 204|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 36]
new: [...205] [ip4][..udp] [.200.31.144.158][53249] -> [..165.144.84.62][..427]
detected: [...205] [ip4][..udp] [.200.31.144.158][53249] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...203] [ip4][..udp] [.200.31.144.158][35296] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...204] [ip4][..udp] [.200.31.144.158][48172] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 208 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 205|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 36]
new: [...206] [ip4][..udp] [..16.100.83.145][60232] -> [..90.147.171.51][..427]
detected: [...206] [ip4][..udp] [..16.100.83.145][60232] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...205] [ip4][..udp] [.200.31.144.158][53249] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...207] [ip4][..udp] [184.180.168.240][36840] -> [.186.112.202.53][..427]
detected: [...207] [ip4][..udp] [184.180.168.240][36840] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...206] [ip4][..udp] [..16.100.83.145][60232] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...208] [ip4][..udp] [..16.99.147.146][34236] -> [..90.111.212.50][..427]
detected: [...208] [ip4][..udp] [..16.99.147.146][34236] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...206] [ip4][..udp] [..16.100.83.145][60232] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...207] [ip4][..udp] [184.180.168.240][36840] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 211 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 208|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 37]
new: [...209] [ip4][..udp] [182.180.120.139][53230] -> [..90.145.180.58][..427]
detected: [...209] [ip4][..udp] [182.180.120.139][53230] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...208] [ip4][..udp] [..16.99.147.146][34236] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 212 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 209|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 37]
new: [...210] [ip4][..udp] [182.180.120.139][38609] -> [...90.141.37.56][..427]
detected: [...210] [ip4][..udp] [182.180.120.139][38609] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...209] [ip4][..udp] [182.180.120.139][53230] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 213 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 210|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 37]
new: [...211] [ip4][..udp] [..19.99.147.148][36797] -> [.165.114.202.61][..427]
detected: [...211] [ip4][..udp] [..19.99.147.148][36797] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...210] [ip4][..udp] [182.180.120.139][38609] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...212] [ip4][..udp] [.45.131.161.152][36751] -> [..165.144.84.62][..427]
detected: [...212] [ip4][..udp] [.45.131.161.152][36751] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...211] [ip4][..udp] [..19.99.147.148][36797] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 215 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 212|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 37]
new: [...213] [ip4][..udp] [.45.100.140.153][54538] -> [..74.111.203.55][..427]
detected: [...213] [ip4][..udp] [.45.100.140.153][54538] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...212] [ip4][..udp] [.45.131.161.152][36751] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 216 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 213|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 37]
new: [...214] [ip4][..udp] [.103.71.146.222][26355] -> [...90.141.37.56][..427]
detected: [...214] [ip4][..udp] [.103.71.146.222][26355] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...213] [ip4][..udp] [.45.100.140.153][54538] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 217 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 214|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 37]
new: [...215] [ip4][..udp] [.103.71.146.222][64387] -> [..90.147.171.51][..427]
detected: [...215] [ip4][..udp] [.103.71.146.222][64387] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...214] [ip4][..udp] [.103.71.146.222][26355] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...216] [ip4][..udp] [.100.56.155.112][53130] -> [..90.111.212.50][..427]
detected: [...216] [ip4][..udp] [.100.56.155.112][53130] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...215] [ip4][..udp] [.103.71.146.222][64387] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 219 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 216|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 38]
new: [...217] [ip4][..udp] [...186.27.5.237][51315] -> [..90.147.171.51][..427]
detected: [...217] [ip4][..udp] [...186.27.5.237][51315] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...215] [ip4][..udp] [.103.71.146.222][64387] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...216] [ip4][..udp] [.100.56.155.112][53130] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...218] [ip4][..udp] [..167.7.154.125][.8220] -> [...85.111.52.57][..427]
detected: [...218] [ip4][..udp] [..167.7.154.125][.8220] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...217] [ip4][..udp] [...186.27.5.237][51315] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 221 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 218|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 39]
new: [...219] [ip4][..udp] [..46.100.97.147][59003] -> [...85.111.52.57][..427]
detected: [...219] [ip4][..udp] [..46.100.97.147][59003] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...218] [ip4][..udp] [..167.7.154.125][.8220] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...217] [ip4][..udp] [...186.27.5.237][51315] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 222 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 219|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 39]
new: [...220] [ip4][..udp] [..67.159.16.150][35493] -> [...90.141.37.56][..427]
detected: [...220] [ip4][..udp] [..67.159.16.150][35493] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...219] [ip4][..udp] [..46.100.97.147][59003] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 223 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 220|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 39]
new: [...221] [ip4][..udp] [..67.159.16.150][35856] -> [..69.109.187.54][..427]
detected: [...221] [ip4][..udp] [..67.159.16.150][35856] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...220] [ip4][..udp] [..67.159.16.150][35493] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 224 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 221|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 39]
new: [...222] [ip4][..udp] [....34.220.38.0][54720] -> [.186.112.202.53][..427]
detected: [...222] [ip4][..udp] [....34.220.38.0][54720] -> [.186.112.202.53][..427] [Service_Location_Protocol][AmazonAWS][RPC][Acceptable]
idle: [...221] [ip4][..udp] [..67.159.16.150][35856] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 225 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 222|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 39]
new: [...223] [ip4][..udp] [..173.49.159.50][54834] -> [..74.111.203.55][..427]
detected: [...223] [ip4][..udp] [..173.49.159.50][54834] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...222] [ip4][..udp] [....34.220.38.0][54720] -> [.186.112.202.53][..427] [Service_Location_Protocol][AmazonAWS][RPC][Acceptable]
DAEMON-EVENT: [Processed: 226 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 223|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 39]
new: [...224] [ip4][..udp] [.206.17.216.171][53625] -> [..69.109.187.54][..427]
detected: [...224] [ip4][..udp] [.206.17.216.171][53625] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...223] [ip4][..udp] [..173.49.159.50][54834] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 227 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 224|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 39]
new: [...225] [ip4][..udp] [..64.56.203.178][42341] -> [..74.111.203.55][..427]
detected: [...225] [ip4][..udp] [..64.56.203.178][42341] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...224] [ip4][..udp] [.206.17.216.171][53625] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 228 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 225|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 39]
new: [...226] [ip4][..udp] [..166.70.59.181][46093] -> [..90.111.212.50][..427]
detected: [...226] [ip4][..udp] [..166.70.59.181][46093] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...225] [ip4][..udp] [..64.56.203.178][42341] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...227] [ip4][..udp] [167.185.203.175][.8162] -> [..165.144.84.62][..427]
detected: [...227] [ip4][..udp] [167.185.203.175][.8162] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...226] [ip4][..udp] [..166.70.59.181][46093] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...228] [ip4][..udp] [...33.26.187.87][52761] -> [...90.141.37.56][..427]
detected: [...228] [ip4][..udp] [...33.26.187.87][52761] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...226] [ip4][..udp] [..166.70.59.181][46093] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...227] [ip4][..udp] [167.185.203.175][.8162] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...229] [ip4][..udp] [.88.192.213.176][63574] -> [.165.114.202.61][..427]
detected: [...229] [ip4][..udp] [.88.192.213.176][63574] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...227] [ip4][..udp] [167.185.203.175][.8162] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...228] [ip4][..udp] [...33.26.187.87][52761] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...230] [ip4][..udp] [184.199.219.188][30639] -> [...90.141.37.56][..427]
detected: [...230] [ip4][..udp] [184.199.219.188][30639] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...229] [ip4][..udp] [.88.192.213.176][63574] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...228] [ip4][..udp] [...33.26.187.87][52761] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 233 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 230|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 42]
new: [...231] [ip4][..udp] [166.199.219.182][28881] -> [..69.109.187.54][..427]
detected: [...231] [ip4][..udp] [166.199.219.182][28881] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...230] [ip4][..udp] [184.199.219.188][30639] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 234 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 231|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 43]
new: [...232] [ip4][..udp] [..95.64.196.186][18841] -> [.186.112.202.53][..427]
detected: [...232] [ip4][..udp] [..95.64.196.186][18841] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...230] [ip4][..udp] [184.199.219.188][30639] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...231] [ip4][..udp] [166.199.219.182][28881] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...233] [ip4][..udp] [..88.63.218.184][51027] -> [..90.145.180.58][..427]
detected: [...233] [ip4][..udp] [..88.63.218.184][51027] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...232] [ip4][..udp] [..95.64.196.186][18841] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 236 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 233|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 43]
new: [...234] [ip4][..udp] [...71.64.36.183][57381] -> [...85.111.52.57][..427]
detected: [...234] [ip4][..udp] [...71.64.36.183][57381] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...233] [ip4][..udp] [..88.63.218.184][51027] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 237 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 234|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 43]
new: [...235] [ip4][..udp] [165.211.188.239][50862] -> [.165.114.202.61][..427]
detected: [...235] [ip4][..udp] [165.211.188.239][50862] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...234] [ip4][..udp] [...71.64.36.183][57381] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 238 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 235|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 43]
new: [...236] [ip4][..udp] [...31.0.154.114][31214] -> [...90.141.37.56][..427]
detected: [...236] [ip4][..udp] [...31.0.154.114][31214] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...235] [ip4][..udp] [165.211.188.239][50862] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 239 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 236|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 43]
new: [...237] [ip4][..udp] [.34.119.122.126][19055] -> [..165.144.84.62][..427]
detected: [...237] [ip4][..udp] [.34.119.122.126][19055] -> [..165.144.84.62][..427] [Service_Location_Protocol][Google][RPC][Acceptable]
idle: [...236] [ip4][..udp] [...31.0.154.114][31214] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...238] [ip4][..udp] [..89.214.56.129][50635] -> [...85.111.52.57][..427]
detected: [...238] [ip4][..udp] [..89.214.56.129][50635] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...237] [ip4][..udp] [.34.119.122.126][19055] -> [..165.144.84.62][..427] [Service_Location_Protocol][Google][RPC][Acceptable]
DAEMON-EVENT: [Processed: 241 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 238|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 43]
new: [...239] [ip4][..udp] [..193.209.38.96][56783] -> [..90.111.212.50][..427]
detected: [...239] [ip4][..udp] [..193.209.38.96][56783] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...238] [ip4][..udp] [..89.214.56.129][50635] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 242 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 239|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 43]
new: [...240] [ip4][..udp] [..34.16.223.107][49482] -> [..165.144.84.62][..427]
detected: [...240] [ip4][..udp] [..34.16.223.107][49482] -> [..165.144.84.62][..427] [Service_Location_Protocol][GoogleCloud][RPC][Acceptable]
idle: [...239] [ip4][..udp] [..193.209.38.96][56783] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 243 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 240|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 43]
new: [...241] [ip4][..udp] [..235.96.127.30][30596] -> [..165.144.84.62][..427]
detected: [...241] [ip4][..udp] [..235.96.127.30][30596] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...240] [ip4][..udp] [..34.16.223.107][49482] -> [..165.144.84.62][..427] [Service_Location_Protocol][GoogleCloud][RPC][Acceptable]
DAEMON-EVENT: [Processed: 245 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 241|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 43]
new: [...242] [ip4][..udp] [...154.96.5.121][30879] -> [..74.111.203.55][..427]
detected: [...242] [ip4][..udp] [...154.96.5.121][30879] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...241] [ip4][..udp] [..235.96.127.30][30596] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 246 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 242|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 43]
new: [...243] [ip4][..udp] [208.123.176.154][53775] -> [...90.141.37.56][..427]
detected: [...243] [ip4][..udp] [208.123.176.154][53775] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...242] [ip4][..udp] [...154.96.5.121][30879] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 247 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 243|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 43]
new: [...244] [ip4][..udp] [.236.131.82.145][40660] -> [..69.109.187.54][..427]
detected: [...244] [ip4][..udp] [.236.131.82.145][40660] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...243] [ip4][..udp] [208.123.176.154][53775] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 248 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 244|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 43]
new: [...245] [ip4][..udp] [.19.156.188.155][47749] -> [..74.111.203.55][..427]
detected: [...245] [ip4][..udp] [.19.156.188.155][47749] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...244] [ip4][..udp] [.236.131.82.145][40660] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...246] [ip4][..udp] [237.132.176.136][34418] -> [..165.144.84.62][..427]
detected: [...246] [ip4][..udp] [237.132.176.136][34418] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...245] [ip4][..udp] [.19.156.188.155][47749] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 250 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 246|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 44]
new: [...247] [ip4][..udp] [.45.124.147.156][55189] -> [.165.114.202.61][..427]
detected: [...247] [ip4][..udp] [.45.124.147.156][55189] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...246] [ip4][..udp] [237.132.176.136][34418] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...245] [ip4][..udp] [.19.156.188.155][47749] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 251 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 247|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 44]
new: [...248] [ip4][..udp] [.70.180.111.241][37873] -> [..90.145.180.58][..427]
detected: [...248] [ip4][..udp] [.70.180.111.241][37873] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...247] [ip4][..udp] [.45.124.147.156][55189] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 252 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 248|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 44]
new: [...249] [ip4][..udp] [.47.123.177.154][50527] -> [..90.111.212.50][..427]
detected: [...249] [ip4][..udp] [.47.123.177.154][50527] -> [..90.111.212.50][..427] [Service_Location_Protocol][Alibaba][RPC][Acceptable]
idle: [...248] [ip4][..udp] [.70.180.111.241][37873] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 253 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 249|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 44]
new: [...250] [ip4][..udp] [.227.199.90.122][22596] -> [..74.111.203.55][..427]
detected: [...250] [ip4][..udp] [.227.199.90.122][22596] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...249] [ip4][..udp] [.47.123.177.154][50527] -> [..90.111.212.50][..427] [Service_Location_Protocol][Alibaba][RPC][Acceptable]
DAEMON-EVENT: [Processed: 254 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 250|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 44]
new: [...251] [ip4][..udp] [...161.45.5.172][56443] -> [..90.147.171.51][..427]
detected: [...251] [ip4][..udp] [...161.45.5.172][56443] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...250] [ip4][..udp] [.227.199.90.122][22596] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 255 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 251|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 44]
new: [...252] [ip4][..udp] [...66.24.225.77][55319] -> [...85.111.52.57][..427]
detected: [...252] [ip4][..udp] [...66.24.225.77][55319] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...251] [ip4][..udp] [...161.45.5.172][56443] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 256 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 252|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 44]
new: [...253] [ip4][..udp] [..88.56.155.126][14639] -> [.186.112.202.53][..427]
detected: [...253] [ip4][..udp] [..88.56.155.126][14639] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...252] [ip4][..udp] [...66.24.225.77][55319] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 257 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 253|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 44]
new: [...254] [ip4][..udp] [..35.252.69.113][15055] -> [..69.109.187.54][..427]
detected: [...254] [ip4][..udp] [..35.252.69.113][15055] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...253] [ip4][..udp] [..88.56.155.126][14639] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 258 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 254|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 44]
new: [...255] [ip4][..udp] [...93.22.25.240][53557] -> [..165.144.84.62][..427]
detected: [...255] [ip4][..udp] [...93.22.25.240][53557] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...254] [ip4][..udp] [..35.252.69.113][15055] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...256] [ip4][..udp] [..94.46.221.227][49978] -> [...90.141.37.56][..427]
detected: [...256] [ip4][..udp] [..94.46.221.227][49978] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...255] [ip4][..udp] [...93.22.25.240][53557] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...257] [ip4][..udp] [..211.49.103.57][55377] -> [..69.109.187.54][..427]
detected: [...257] [ip4][..udp] [..211.49.103.57][55377] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...256] [ip4][..udp] [..94.46.221.227][49978] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...255] [ip4][..udp] [...93.22.25.240][53557] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 261 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 257|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 45]
new: [...258] [ip4][..udp] [..67.159.16.150][57227] -> [.186.112.202.53][..427]
detected: [...258] [ip4][..udp] [..67.159.16.150][57227] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...257] [ip4][..udp] [..211.49.103.57][55377] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 262 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 258|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 45]
new: [...259] [ip4][..udp] [..70.210.130.41][50379] -> [.186.112.202.53][..427]
detected: [...259] [ip4][..udp] [..70.210.130.41][50379] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...258] [ip4][..udp] [..67.159.16.150][57227] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 263 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 259|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 45]
new: [...260] [ip4][..udp] [.217.23.159.199][54694] -> [..74.111.203.55][..427]
detected: [...260] [ip4][..udp] [.217.23.159.199][54694] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...259] [ip4][..udp] [..70.210.130.41][50379] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 264 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 260|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 45]
new: [...261] [ip4][..udp] [208.243.248.212][54962] -> [.165.114.202.61][..427]
detected: [...261] [ip4][..udp] [208.243.248.212][54962] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...260] [ip4][..udp] [.217.23.159.199][54694] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 265 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 261|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 45]
new: [...262] [ip4][..udp] [..42.224.153.12][15346] -> [..90.147.171.51][..427]
detected: [...262] [ip4][..udp] [..42.224.153.12][15346] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...261] [ip4][..udp] [208.243.248.212][54962] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 267 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 262|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 45]
new: [...263] [ip4][..udp] [199.221.139.233][45906] -> [..90.145.180.58][..427]
detected: [...263] [ip4][..udp] [199.221.139.233][45906] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...262] [ip4][..udp] [..42.224.153.12][15346] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...264] [ip4][..udp] [.246.237.99.253][12689] -> [..69.109.187.54][..427]
detected: [...264] [ip4][..udp] [.246.237.99.253][12689] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...263] [ip4][..udp] [199.221.139.233][45906] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 269 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 264|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 45]
new: [...265] [ip4][..udp] [.247.45.112.206][20029] -> [..90.111.212.50][..427]
detected: [...265] [ip4][..udp] [.247.45.112.206][20029] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...264] [ip4][..udp] [.246.237.99.253][12689] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...266] [ip4][..udp] [..56.174.92.201][12782] -> [.165.114.202.61][..427]
detected: [...266] [ip4][..udp] [..56.174.92.201][12782] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...265] [ip4][..udp] [.247.45.112.206][20029] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...267] [ip4][..udp] [..70.38.107.241][.3833] -> [...85.111.52.57][..427]
detected: [...267] [ip4][..udp] [..70.38.107.241][.3833] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...266] [ip4][..udp] [..56.174.92.201][12782] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 272 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 267|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 46]
new: [...268] [ip4][..udp] [..70.106.99.214][10633] -> [..74.111.203.55][..427]
detected: [...268] [ip4][..udp] [..70.106.99.214][10633] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...266] [ip4][..udp] [..56.174.92.201][12782] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...267] [ip4][..udp] [..70.38.107.241][.3833] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...269] [ip4][..udp] [.246.237.99.253][28232] -> [..165.144.84.62][..427]
detected: [...269] [ip4][..udp] [.246.237.99.253][28232] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...268] [ip4][..udp] [..70.106.99.214][10633] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 274 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 269|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 46]
new: [...270] [ip4][..udp] [.200.29.108.217][55185] -> [...90.141.37.56][..427]
detected: [...270] [ip4][..udp] [.200.29.108.217][55185] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...269] [ip4][..udp] [.246.237.99.253][28232] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 275 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 270|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 46]
new: [...271] [ip4][..udp] [..67.159.16.150][48238] -> [...85.111.52.57][..427]
detected: [...271] [ip4][..udp] [..67.159.16.150][48238] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...270] [ip4][..udp] [.200.29.108.217][55185] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 276 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 271|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 46]
new: [...272] [ip4][..udp] [...35.0.100.115][24038] -> [..165.144.84.62][..427]
detected: [...272] [ip4][..udp] [...35.0.100.115][24038] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...271] [ip4][..udp] [..67.159.16.150][48238] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 277 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 272|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 46]
new: [...273] [ip4][..udp] [.91.255.107.116][29445] -> [.165.114.202.61][..427]
detected: [...273] [ip4][..udp] [.91.255.107.116][29445] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...272] [ip4][..udp] [...35.0.100.115][24038] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...274] [ip4][..udp] [...98.137.3.114][.5334] -> [.165.114.202.61][..427]
detected: [...274] [ip4][..udp] [...98.137.3.114][.5334] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...273] [ip4][..udp] [.91.255.107.116][29445] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 279 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 274|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 46]
new: [...275] [ip4][..udp] [.224.127.98.214][19171] -> [..90.147.171.51][..427]
detected: [...275] [ip4][..udp] [.224.127.98.214][19171] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...274] [ip4][..udp] [...98.137.3.114][.5334] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 280 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 275|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 46]
new: [...276] [ip4][..udp] [157.120.252.123][37363] -> [..90.145.180.58][..427]
detected: [...276] [ip4][..udp] [157.120.252.123][37363] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...275] [ip4][..udp] [.224.127.98.214][19171] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 281 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 276|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 46]
new: [...277] [ip4][..udp] [.246.75.104.115][37519] -> [..90.145.180.58][..427]
detected: [...277] [ip4][..udp] [.246.75.104.115][37519] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...276] [ip4][..udp] [157.120.252.123][37363] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 282 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 277|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 46]
new: [...278] [ip4][..udp] [.236.155.96.147][47606] -> [..74.111.203.55][..427]
detected: [...278] [ip4][..udp] [.236.155.96.147][47606] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...277] [ip4][..udp] [.246.75.104.115][37519] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 283 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 278|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 46]
new: [...279] [ip4][..udp] [..45.99.146.146][32910] -> [..90.111.212.50][..427]
detected: [...279] [ip4][..udp] [..45.99.146.146][32910] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...278] [ip4][..udp] [.236.155.96.147][47606] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 284 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 279|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 46]
new: [...280] [ip4][..udp] [200.180.144.114][52790] -> [.186.112.202.53][..427]
detected: [...280] [ip4][..udp] [200.180.144.114][52790] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...279] [ip4][..udp] [..45.99.146.146][32910] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...281] [ip4][..udp] [134.180.144.149][36409] -> [..69.109.187.54][..427]
detected: [...281] [ip4][..udp] [134.180.144.149][36409] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...280] [ip4][..udp] [200.180.144.114][52790] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...282] [ip4][..udp] [182.180.120.139][60621] -> [.165.114.202.61][..427]
detected: [...282] [ip4][..udp] [182.180.120.139][60621] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...281] [ip4][..udp] [134.180.144.149][36409] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...280] [ip4][..udp] [200.180.144.114][52790] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 287 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 282|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 47]
new: [...283] [ip4][..udp] [..45.99.146.146][60327] -> [..165.144.84.62][..427]
detected: [...283] [ip4][..udp] [..45.99.146.146][60327] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...282] [ip4][..udp] [182.180.120.139][60621] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...284] [ip4][..udp] [200.180.144.114][56239] -> [...90.141.37.56][..427]
detected: [...284] [ip4][..udp] [200.180.144.114][56239] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...283] [ip4][..udp] [..45.99.146.146][60327] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 289 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 284|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 47]
new: [...285] [ip4][..udp] [.236.155.96.147][41408] -> [...85.111.52.57][..427]
detected: [...285] [ip4][..udp] [.236.155.96.147][41408] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...284] [ip4][..udp] [200.180.144.114][56239] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 290 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 285|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 47]
new: [...286] [ip4][..udp] [162.219.248.180][51156] -> [..90.147.171.51][..427]
detected: [...286] [ip4][..udp] [162.219.248.180][51156] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...285] [ip4][..udp] [.236.155.96.147][41408] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 291 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 286|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 47]
new: [...287] [ip4][..udp] [.200.31.144.158][55455] -> [...85.111.52.57][..427]
detected: [...287] [ip4][..udp] [.200.31.144.158][55455] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...286] [ip4][..udp] [162.219.248.180][51156] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...288] [ip4][..udp] [.200.31.144.158][50780] -> [.165.114.202.61][..427]
detected: [...288] [ip4][..udp] [.200.31.144.158][50780] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...287] [ip4][..udp] [.200.31.144.158][55455] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 293 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 288|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 48]
new: [...289] [ip4][..udp] [.200.31.144.158][56478] -> [.186.112.202.53][..427]
detected: [...289] [ip4][..udp] [.200.31.144.158][56478] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...287] [ip4][..udp] [.200.31.144.158][55455] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...288] [ip4][..udp] [.200.31.144.158][50780] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 294 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 289|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 48]
new: [...290] [ip4][..udp] [.200.31.144.158][48895] -> [..165.144.84.62][..427]
detected: [...290] [ip4][..udp] [.200.31.144.158][48895] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...289] [ip4][..udp] [.200.31.144.158][56478] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...291] [ip4][..udp] [.200.31.144.158][37856] -> [..69.109.187.54][..427]
detected: [...291] [ip4][..udp] [.200.31.144.158][37856] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...290] [ip4][..udp] [.200.31.144.158][48895] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...292] [ip4][..udp] [212.154.223.103][55839] -> [...90.141.37.56][..427]
detected: [...292] [ip4][..udp] [212.154.223.103][55839] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...290] [ip4][..udp] [.200.31.144.158][48895] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...291] [ip4][..udp] [.200.31.144.158][37856] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 298 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 292|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 49]
new: [...293] [ip4][..udp] [.75.137.134.242][59307] -> [.165.114.202.61][..427]
detected: [...293] [ip4][..udp] [.75.137.134.242][59307] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...292] [ip4][..udp] [212.154.223.103][55839] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...294] [ip4][..udp] [.200.31.144.158][53742] -> [...90.141.37.56][..427]
detected: [...294] [ip4][..udp] [.200.31.144.158][53742] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...293] [ip4][..udp] [.75.137.134.242][59307] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 300 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 294|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 49]
new: [...295] [ip4][..udp] [.200.31.144.158][33892] -> [..90.147.171.51][..427]
detected: [...295] [ip4][..udp] [.200.31.144.158][33892] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...294] [ip4][..udp] [.200.31.144.158][53742] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...296] [ip4][..udp] [.197.23.155.213][51534] -> [..90.145.180.58][..427]
detected: [...296] [ip4][..udp] [.197.23.155.213][51534] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...295] [ip4][..udp] [.200.31.144.158][33892] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...297] [ip4][..udp] [.200.31.144.158][50776] -> [..90.111.212.50][..427]
detected: [...297] [ip4][..udp] [.200.31.144.158][50776] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...295] [ip4][..udp] [.200.31.144.158][33892] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...296] [ip4][..udp] [.197.23.155.213][51534] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...298] [ip4][..udp] [.200.31.144.158][49681] -> [..90.145.180.58][..427]
detected: [...298] [ip4][..udp] [.200.31.144.158][49681] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...295] [ip4][..udp] [.200.31.144.158][33892] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...296] [ip4][..udp] [.197.23.155.213][51534] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...297] [ip4][..udp] [.200.31.144.158][50776] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...299] [ip4][..udp] [.200.31.144.158][36077] -> [..74.111.203.55][..427]
detected: [...299] [ip4][..udp] [.200.31.144.158][36077] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...296] [ip4][..udp] [.197.23.155.213][51534] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...298] [ip4][..udp] [.200.31.144.158][49681] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...297] [ip4][..udp] [.200.31.144.158][50776] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 305 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 299|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 54]
new: [...300] [ip4][..udp] [.66.224.226.183][52476] -> [..165.144.84.62][..427]
detected: [...300] [ip4][..udp] [.66.224.226.183][52476] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...299] [ip4][..udp] [.200.31.144.158][36077] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 306 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 300|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 54]
new: [...301] [ip4][..udp] [..91.33.106.218][59902] -> [..69.109.187.54][..427]
detected: [...301] [ip4][..udp] [..91.33.106.218][59902] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...300] [ip4][..udp] [.66.224.226.183][52476] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 307 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 301|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 54]
new: [...302] [ip4][..udp] [..206.204.24.90][50356] -> [...85.111.52.57][..427]
detected: [...302] [ip4][..udp] [..206.204.24.90][50356] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...301] [ip4][..udp] [..91.33.106.218][59902] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 308 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 302|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 54]
new: [...303] [ip4][..udp] [..76.45.103.228][55007] -> [..90.111.212.50][..427]
detected: [...303] [ip4][..udp] [..76.45.103.228][55007] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...302] [ip4][..udp] [..206.204.24.90][50356] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...304] [ip4][..udp] [218.118.131.113][.8622] -> [.186.112.202.53][..427]
detected: [...304] [ip4][..udp] [218.118.131.113][.8622] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...303] [ip4][..udp] [..76.45.103.228][55007] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 310 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 304|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 54]
new: [...305] [ip4][..udp] [.189.229.250.75][50111] -> [.165.114.202.61][..427]
detected: [...305] [ip4][..udp] [.189.229.250.75][50111] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...304] [ip4][..udp] [218.118.131.113][.8622] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 311 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 305|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 54]
new: [...306] [ip4][..udp] [165.128.253.116][21256] -> [..69.109.187.54][..427]
detected: [...306] [ip4][..udp] [165.128.253.116][21256] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...305] [ip4][..udp] [.189.229.250.75][50111] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 312 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 306|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 54]
new: [...307] [ip4][..udp] [..94.230.158.79][55750] -> [..74.111.203.55][..427]
detected: [...307] [ip4][..udp] [..94.230.158.79][55750] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...306] [ip4][..udp] [165.128.253.116][21256] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...308] [ip4][..udp] [..35.252.69.113][37602] -> [..90.145.180.58][..427]
detected: [...308] [ip4][..udp] [..35.252.69.113][37602] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...307] [ip4][..udp] [..94.230.158.79][55750] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 314 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 308|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 54]
new: [...309] [ip4][..udp] [152.255.170.124][46606] -> [..90.147.171.51][..427]
detected: [...309] [ip4][..udp] [152.255.170.124][46606] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...308] [ip4][..udp] [..35.252.69.113][37602] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 315 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 309|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 54]
new: [...310] [ip4][..udp] [..67.159.16.150][54818] -> [.165.114.202.61][..427]
detected: [...310] [ip4][..udp] [..67.159.16.150][54818] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...309] [ip4][..udp] [152.255.170.124][46606] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 316 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 310|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 54]
new: [...311] [ip4][..udp] [...93.26.159.17][57065] -> [.186.112.202.53][..427]
detected: [...311] [ip4][..udp] [...93.26.159.17][57065] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...310] [ip4][..udp] [..67.159.16.150][54818] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 317 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 311|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 54]
new: [...312] [ip4][..udp] [.217.31.231.255][49891] -> [...90.141.37.56][..427]
detected: [...312] [ip4][..udp] [.217.31.231.255][49891] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...311] [ip4][..udp] [...93.26.159.17][57065] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 318 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 312|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 54]
new: [...313] [ip4][..udp] [..67.159.16.150][12620] -> [..165.144.84.62][..427]
detected: [...313] [ip4][..udp] [..67.159.16.150][12620] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...312] [ip4][..udp] [.217.31.231.255][49891] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 319 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 313|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 54]
new: [...314] [ip4][..udp] [.91.255.107.116][12480] -> [...85.111.52.57][..427]
detected: [...314] [ip4][..udp] [.91.255.107.116][12480] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...313] [ip4][..udp] [..67.159.16.150][12620] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...315] [ip4][..udp] [175.239.255.217][53820] -> [..69.109.187.54][..427]
detected: [...315] [ip4][..udp] [175.239.255.217][53820] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...314] [ip4][..udp] [.91.255.107.116][12480] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 321 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 315|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 54]
new: [...316] [ip4][..udp] [..67.159.16.150][53644] -> [..90.145.180.58][..427]
detected: [...316] [ip4][..udp] [..67.159.16.150][53644] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...315] [ip4][..udp] [175.239.255.217][53820] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 322 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 316|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 54]
new: [...317] [ip4][..udp] [..7.110.179.205][58317] -> [..165.144.84.62][..427]
detected: [...317] [ip4][..udp] [..7.110.179.205][58317] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...316] [ip4][..udp] [..67.159.16.150][53644] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 323 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 317|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 54]
new: [...318] [ip4][..udp] [201.237.135.210][37975] -> [.165.114.202.61][..427]
detected: [...318] [ip4][..udp] [201.237.135.210][37975] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...317] [ip4][..udp] [..7.110.179.205][58317] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...319] [ip4][..udp] [.57.162.128.234][63808] -> [...85.111.52.57][..427]
detected: [...319] [ip4][..udp] [.57.162.128.234][63808] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...318] [ip4][..udp] [201.237.135.210][37975] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 325 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 319|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 55]
new: [...320] [ip4][..udp] [..120.46.80.212][60012] -> [..74.111.203.55][..427]
detected: [...320] [ip4][..udp] [..120.46.80.212][60012] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...319] [ip4][..udp] [.57.162.128.234][63808] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...318] [ip4][..udp] [201.237.135.210][37975] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 326 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 320|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 55]
new: [...321] [ip4][..udp] [.57.162.128.234][48188] -> [..69.109.187.54][..427]
detected: [...321] [ip4][..udp] [.57.162.128.234][48188] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...320] [ip4][..udp] [..120.46.80.212][60012] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...322] [ip4][..udp] [.57.162.128.234][19665] -> [...90.141.37.56][..427]
detected: [...322] [ip4][..udp] [.57.162.128.234][19665] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...321] [ip4][..udp] [.57.162.128.234][48188] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 328 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 322|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 55]
new: [...323] [ip4][..udp] [201.237.135.210][.6545] -> [..90.145.180.58][..427]
detected: [...323] [ip4][..udp] [201.237.135.210][.6545] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...322] [ip4][..udp] [.57.162.128.234][19665] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...324] [ip4][..udp] [.247.93.183.197][10997] -> [..90.147.171.51][..427]
detected: [...324] [ip4][..udp] [.247.93.183.197][10997] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...325] [ip4][..udp] [.247.93.183.197][.8213] -> [.186.112.202.53][..427]
detected: [...325] [ip4][..udp] [.247.93.183.197][.8213] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...323] [ip4][..udp] [201.237.135.210][.6545] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 331 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 325|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 55]
new: [...326] [ip4][..udp] [....37.97.4.125][16072] -> [...90.141.37.56][..427]
detected: [...326] [ip4][..udp] [....37.97.4.125][16072] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...325] [ip4][..udp] [.247.93.183.197][.8213] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...324] [ip4][..udp] [.247.93.183.197][10997] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 332 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 326|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 55]
new: [...327] [ip4][..udp] [.246.75.104.115][34761] -> [...85.111.52.57][..427]
detected: [...327] [ip4][..udp] [.246.75.104.115][34761] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...326] [ip4][..udp] [....37.97.4.125][16072] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 333 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 327|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 55]
new: [...328] [ip4][..udp] [182.180.120.139][51620] -> [...90.141.37.56][..427]
detected: [...328] [ip4][..udp] [182.180.120.139][51620] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...327] [ip4][..udp] [.246.75.104.115][34761] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 334 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 328|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 55]
new: [...329] [ip4][..udp] [..19.99.146.156][41843] -> [..90.145.180.58][..427]
detected: [...329] [ip4][..udp] [..19.99.146.156][41843] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...328] [ip4][..udp] [182.180.120.139][51620] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...330] [ip4][..udp] [.98.103.253.115][29266] -> [..90.111.212.50][..427]
detected: [...330] [ip4][..udp] [.98.103.253.115][29266] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 336 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 330|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 55]
new: [...331] [ip4][..udp] [200.180.144.114][34997] -> [..90.111.212.50][..427]
detected: [...331] [ip4][..udp] [200.180.144.114][34997] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...329] [ip4][..udp] [..19.99.146.156][41843] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...330] [ip4][..udp] [.98.103.253.115][29266] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 337 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 331|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 55]
new: [...332] [ip4][..udp] [200.180.144.114][32881] -> [..90.147.171.51][..427]
detected: [...332] [ip4][..udp] [200.180.144.114][32881] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...331] [ip4][..udp] [200.180.144.114][34997] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 338 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 332|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 55]
new: [...333] [ip4][..udp] [200.180.144.114][36679] -> [..165.144.84.62][..427]
detected: [...333] [ip4][..udp] [200.180.144.114][36679] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...332] [ip4][..udp] [200.180.144.114][32881] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 339 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 333|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 55]
new: [...334] [ip4][..udp] [.19.156.188.155][50741] -> [.186.112.202.53][..427]
detected: [...334] [ip4][..udp] [.19.156.188.155][50741] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...333] [ip4][..udp] [200.180.144.114][36679] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 340 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 334|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 55]
new: [...335] [ip4][..udp] [134.180.144.149][52293] -> [..69.109.187.54][..427]
detected: [...335] [ip4][..udp] [134.180.144.149][52293] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...334] [ip4][..udp] [.19.156.188.155][50741] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...336] [ip4][..udp] [200.180.144.114][57184] -> [..74.111.203.55][..427]
detected: [...336] [ip4][..udp] [200.180.144.114][57184] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...335] [ip4][..udp] [134.180.144.149][52293] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 342 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 336|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 55]
new: [...337] [ip4][..udp] [..46.100.97.147][54751] -> [.165.114.202.61][..427]
detected: [...337] [ip4][..udp] [..46.100.97.147][54751] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...336] [ip4][..udp] [200.180.144.114][57184] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 343 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 337|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 55]
new: [...338] [ip4][..udp] [..199.17.16.175][58914] -> [..90.147.171.51][..427]
detected: [...338] [ip4][..udp] [..199.17.16.175][58914] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...337] [ip4][..udp] [..46.100.97.147][54751] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...339] [ip4][..udp] [..199.17.16.175][58914] -> [.165.114.202.61][..427]
detected: [...339] [ip4][..udp] [..199.17.16.175][58914] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...340] [ip4][..udp] [..199.17.16.175][58914] -> [..69.109.187.54][..427]
detected: [...340] [ip4][..udp] [..199.17.16.175][58914] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...341] [ip4][..udp] [..199.17.16.175][58914] -> [.186.112.202.53][..427]
detected: [...341] [ip4][..udp] [..199.17.16.175][58914] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...342] [ip4][..udp] [..199.17.16.175][58914] -> [..90.111.212.50][..427]
detected: [...342] [ip4][..udp] [..199.17.16.175][58914] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...339] [ip4][..udp] [..199.17.16.175][58914] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...338] [ip4][..udp] [..199.17.16.175][58914] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 348 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 5 / 342|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 57]
new: [...343] [ip4][..udp] [..198.215.2.104][55462] -> [.165.114.202.61][..427]
detected: [...343] [ip4][..udp] [..198.215.2.104][55462] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...342] [ip4][..udp] [..199.17.16.175][58914] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...341] [ip4][..udp] [..199.17.16.175][58914] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...339] [ip4][..udp] [..199.17.16.175][58914] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...338] [ip4][..udp] [..199.17.16.175][58914] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...340] [ip4][..udp] [..199.17.16.175][58914] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...344] [ip4][..udp] [.27.134.169.220][54219] -> [.165.114.202.61][..427]
detected: [...344] [ip4][..udp] [.27.134.169.220][54219] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...343] [ip4][..udp] [..198.215.2.104][55462] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 350 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 344|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 57]
new: [...345] [ip4][..udp] [....80.16.56.40][49864] -> [..74.111.203.55][..427]
detected: [...345] [ip4][..udp] [....80.16.56.40][49864] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...344] [ip4][..udp] [.27.134.169.220][54219] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 351 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 345|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 57]
new: [...346] [ip4][..udp] [206.240.152.225][52955] -> [..90.145.180.58][..427]
detected: [...346] [ip4][..udp] [206.240.152.225][52955] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...345] [ip4][..udp] [....80.16.56.40][49864] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 352 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 346|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 57]
new: [...347] [ip4][..udp] [.172.206.191.39][55684] -> [..165.144.84.62][..427]
detected: [...347] [ip4][..udp] [.172.206.191.39][55684] -> [..165.144.84.62][..427] [Service_Location_Protocol][Azure][RPC][Acceptable]
idle: [...346] [ip4][..udp] [206.240.152.225][52955] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 353 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 347|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 57]
new: [...348] [ip4][..udp] [..175.206.31.84][52553] -> [..69.109.187.54][..427]
detected: [...348] [ip4][..udp] [..175.206.31.84][52553] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...347] [ip4][..udp] [.172.206.191.39][55684] -> [..165.144.84.62][..427] [Service_Location_Protocol][Azure][RPC][Acceptable]
DAEMON-EVENT: [Processed: 354 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 348|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 57]
new: [...349] [ip4][..udp] [...80.51.127.74][54217] -> [...85.111.52.57][..427]
detected: [...349] [ip4][..udp] [...80.51.127.74][54217] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...348] [ip4][..udp] [..175.206.31.84][52553] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 355 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 349|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 57]
new: [...350] [ip4][..udp] [...198.23.89.28][51231] -> [.186.112.202.53][..427]
detected: [...350] [ip4][..udp] [...198.23.89.28][51231] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...349] [ip4][..udp] [...80.51.127.74][54217] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 356 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 350|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 57]
new: [...351] [ip4][..udp] [...98.137.3.114][25821] -> [..74.111.203.55][..427]
detected: [...351] [ip4][..udp] [...98.137.3.114][25821] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...350] [ip4][..udp] [...198.23.89.28][51231] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...352] [ip4][..udp] [219.160.101.209][10322] -> [.186.112.202.53][..427]
detected: [...352] [ip4][..udp] [219.160.101.209][10322] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...351] [ip4][..udp] [...98.137.3.114][25821] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 358 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 352|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 57]
new: [...353] [ip4][..udp] [161.231.128.245][50837] -> [...90.141.37.56][..427]
detected: [...353] [ip4][..udp] [161.231.128.245][50837] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...352] [ip4][..udp] [219.160.101.209][10322] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 359 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 353|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 57]
new: [...354] [ip4][..udp] [..166.191.37.51][27637] -> [.165.114.202.61][..427]
detected: [...354] [ip4][..udp] [..166.191.37.51][27637] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...355] [ip4][..udp] [...70.63.213.48][64393] -> [..90.147.171.51][..427]
detected: [...355] [ip4][..udp] [...70.63.213.48][64393] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...353] [ip4][..udp] [161.231.128.245][50837] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 361 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 355|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 57]
new: [...356] [ip4][..udp] [..89.198.219.40][13087] -> [..69.109.187.54][..427]
detected: [...356] [ip4][..udp] [..89.198.219.40][13087] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...355] [ip4][..udp] [...70.63.213.48][64393] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...354] [ip4][..udp] [..166.191.37.51][27637] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...357] [ip4][..udp] [..190.65.219.43][.9161] -> [..90.111.212.50][..427]
detected: [...357] [ip4][..udp] [..190.65.219.43][.9161] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...356] [ip4][..udp] [..89.198.219.40][13087] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...358] [ip4][..udp] [.191.198.219.36][43241] -> [...85.111.52.57][..427]
detected: [...358] [ip4][..udp] [.191.198.219.36][43241] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...357] [ip4][..udp] [..190.65.219.43][.9161] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...359] [ip4][..udp] [..166.191.37.51][27637] -> [.186.112.202.53][..427]
detected: [...359] [ip4][..udp] [..166.191.37.51][27637] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 365 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 3 / 359|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 58]
new: [...360] [ip4][..udp] [...94.70.203.49][.9065] -> [..74.111.203.55][..427]
detected: [...360] [ip4][..udp] [...94.70.203.49][.9065] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...358] [ip4][..udp] [.191.198.219.36][43241] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...359] [ip4][..udp] [..166.191.37.51][27637] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...357] [ip4][..udp] [..190.65.219.43][.9161] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...361] [ip4][..udp] [..166.191.37.51][27637] -> [..165.144.84.62][..427]
detected: [...361] [ip4][..udp] [..166.191.37.51][27637] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...362] [ip4][..udp] [...166.65.42.37][37412] -> [...90.141.37.56][..427]
detected: [...362] [ip4][..udp] [...166.65.42.37][37412] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...360] [ip4][..udp] [...94.70.203.49][.9065] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...363] [ip4][..udp] [...185.211.4.13][55127] -> [..90.111.212.50][..427]
detected: [...363] [ip4][..udp] [...185.211.4.13][55127] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...362] [ip4][..udp] [...166.65.42.37][37412] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...361] [ip4][..udp] [..166.191.37.51][27637] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 369 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 3 / 363|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 60]
new: [...364] [ip4][..udp] [.100.56.155.112][12751] -> [...90.141.37.56][..427]
detected: [...364] [ip4][..udp] [.100.56.155.112][12751] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...362] [ip4][..udp] [...166.65.42.37][37412] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...363] [ip4][..udp] [...185.211.4.13][55127] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...361] [ip4][..udp] [..166.191.37.51][27637] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 370 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 364|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 60]
new: [...365] [ip4][..udp] [.227.199.90.122][44046] -> [..90.111.212.50][..427]
detected: [...365] [ip4][..udp] [.227.199.90.122][44046] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...364] [ip4][..udp] [.100.56.155.112][12751] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 371 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 365|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 60]
new: [...366] [ip4][..udp] [200.180.144.114][47863] -> [..90.147.171.51][..427]
detected: [...366] [ip4][..udp] [200.180.144.114][47863] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...365] [ip4][..udp] [.227.199.90.122][44046] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 372 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 366|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 60]
new: [...367] [ip4][..udp] [..19.99.146.156][32952] -> [..74.111.203.55][..427]
detected: [...367] [ip4][..udp] [..19.99.146.156][32952] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...366] [ip4][..udp] [200.180.144.114][47863] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 373 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 367|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 60]
new: [...368] [ip4][..udp] [209.124.163.157][55599] -> [..69.109.187.54][..427]
detected: [...368] [ip4][..udp] [209.124.163.157][55599] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...367] [ip4][..udp] [..19.99.146.156][32952] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 374 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 368|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 60]
new: [...369] [ip4][..udp] [.227.134.81.212][54859] -> [..90.145.180.58][..427]
detected: [...369] [ip4][..udp] [.227.134.81.212][54859] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...368] [ip4][..udp] [209.124.163.157][55599] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 375 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 369|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 60]
new: [...370] [ip4][..udp] [.45.131.161.152][49844] -> [.186.112.202.53][..427]
detected: [...370] [ip4][..udp] [.45.131.161.152][49844] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...369] [ip4][..udp] [.227.134.81.212][54859] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...371] [ip4][..udp] [134.180.144.149][49951] -> [..90.145.180.58][..427]
detected: [...371] [ip4][..udp] [134.180.144.149][49951] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...370] [ip4][..udp] [.45.131.161.152][49844] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 377 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 371|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 60]
new: [...372] [ip4][..udp] [184.180.168.240][42561] -> [...85.111.52.57][..427]
detected: [...372] [ip4][..udp] [184.180.168.240][42561] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...371] [ip4][..udp] [134.180.144.149][49951] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...373] [ip4][..udp] [210.124.156.149][41895] -> [..165.144.84.62][..427]
detected: [...373] [ip4][..udp] [210.124.156.149][41895] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...372] [ip4][..udp] [184.180.168.240][42561] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 379 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 373|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 60]
new: [...374] [ip4][..udp] [182.180.120.139][45313] -> [.165.114.202.61][..427]
detected: [...374] [ip4][..udp] [182.180.120.139][45313] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...373] [ip4][..udp] [210.124.156.149][41895] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...375] [ip4][..udp] [208.123.176.154][58457] -> [...90.141.37.56][..427]
detected: [...375] [ip4][..udp] [208.123.176.154][58457] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...374] [ip4][..udp] [182.180.120.139][45313] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 381 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 375|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 60]
new: [...376] [ip4][..udp] [.27.134.169.220][38445] -> [...85.111.52.57][..427]
detected: [...376] [ip4][..udp] [.27.134.169.220][38445] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...375] [ip4][..udp] [208.123.176.154][58457] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...377] [ip4][..udp] [239.100.141.153][47597] -> [..74.111.203.55][..427]
detected: [...377] [ip4][..udp] [239.100.141.153][47597] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...376] [ip4][..udp] [.27.134.169.220][38445] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 383 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 377|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 60]
new: [...378] [ip4][..udp] [157.121.130.117][.7470] -> [..165.144.84.62][..427]
detected: [...378] [ip4][..udp] [157.121.130.117][.7470] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...377] [ip4][..udp] [239.100.141.153][47597] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 384 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 378|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 60]
new: [...379] [ip4][..udp] [.36.231.109.217][49319] -> [..90.111.212.50][..427]
detected: [...379] [ip4][..udp] [.36.231.109.217][49319] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...378] [ip4][..udp] [157.121.130.117][.7470] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 385 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 379|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 60]
new: [...380] [ip4][..udp] [...209.44.167.7][53096] -> [..90.111.212.50][..427]
detected: [...380] [ip4][..udp] [...209.44.167.7][53096] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...379] [ip4][..udp] [.36.231.109.217][49319] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...381] [ip4][..udp] [..99.199.77.211][45829] -> [..165.144.84.62][..427]
detected: [...381] [ip4][..udp] [..99.199.77.211][45829] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...380] [ip4][..udp] [...209.44.167.7][53096] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 387 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 381|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 61]
new: [...382] [ip4][..udp] [.215.48.253.201][44733] -> [...85.111.52.57][..427]
detected: [...382] [ip4][..udp] [.215.48.253.201][44733] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...381] [ip4][..udp] [..99.199.77.211][45829] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...380] [ip4][..udp] [...209.44.167.7][53096] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...383] [ip4][..udp] [.215.48.253.201][56846] -> [..74.111.203.55][..427]
detected: [...383] [ip4][..udp] [.215.48.253.201][56846] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...384] [ip4][..udp] [.215.48.253.201][50630] -> [...90.141.37.56][..427]
detected: [...384] [ip4][..udp] [.215.48.253.201][50630] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...382] [ip4][..udp] [.215.48.253.201][44733] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...385] [ip4][..udp] [.215.48.253.201][42457] -> [..90.147.171.51][..427]
detected: [...385] [ip4][..udp] [.215.48.253.201][42457] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...386] [ip4][..udp] [.215.48.253.201][39194] -> [..69.109.187.54][..427]
detected: [...386] [ip4][..udp] [.215.48.253.201][39194] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...387] [ip4][..udp] [.215.48.253.201][46653] -> [..90.145.180.58][..427]
detected: [...387] [ip4][..udp] [.215.48.253.201][46653] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...383] [ip4][..udp] [.215.48.253.201][56846] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...388] [ip4][..udp] [.215.48.253.201][44352] -> [..165.144.84.62][..427]
detected: [...388] [ip4][..udp] [.215.48.253.201][44352] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...382] [ip4][..udp] [.215.48.253.201][44733] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...384] [ip4][..udp] [.215.48.253.201][50630] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...389] [ip4][..udp] [.215.48.253.201][53506] -> [.165.114.202.61][..427]
detected: [...389] [ip4][..udp] [.215.48.253.201][53506] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...388] [ip4][..udp] [.215.48.253.201][44352] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...382] [ip4][..udp] [.215.48.253.201][44733] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...386] [ip4][..udp] [.215.48.253.201][39194] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...387] [ip4][..udp] [.215.48.253.201][46653] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...385] [ip4][..udp] [.215.48.253.201][42457] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...384] [ip4][..udp] [.215.48.253.201][50630] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...383] [ip4][..udp] [.215.48.253.201][56846] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...390] [ip4][..udp] [.215.48.253.201][49672] -> [.186.112.202.53][..427]
detected: [...390] [ip4][..udp] [.215.48.253.201][49672] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...382] [ip4][..udp] [.215.48.253.201][44733] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...383] [ip4][..udp] [.215.48.253.201][56846] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...388] [ip4][..udp] [.215.48.253.201][44352] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...386] [ip4][..udp] [.215.48.253.201][39194] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...387] [ip4][..udp] [.215.48.253.201][46653] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...385] [ip4][..udp] [.215.48.253.201][42457] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...384] [ip4][..udp] [.215.48.253.201][50630] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...389] [ip4][..udp] [.215.48.253.201][53506] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 396 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 7 / 390|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 78]
new: [...391] [ip4][..udp] [..44.242.231.77][50261] -> [.186.112.202.53][..427]
detected: [...391] [ip4][..udp] [..44.242.231.77][50261] -> [.186.112.202.53][..427] [Service_Location_Protocol][AmazonAWS][RPC][Acceptable]
idle: [...388] [ip4][..udp] [.215.48.253.201][44352] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...386] [ip4][..udp] [.215.48.253.201][39194] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...387] [ip4][..udp] [.215.48.253.201][46653] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...385] [ip4][..udp] [.215.48.253.201][42457] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...390] [ip4][..udp] [.215.48.253.201][49672] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...384] [ip4][..udp] [.215.48.253.201][50630] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...389] [ip4][..udp] [.215.48.253.201][53506] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...392] [ip4][..udp] [..37.234.100.32][56813] -> [..90.145.180.58][..427]
detected: [...392] [ip4][..udp] [..37.234.100.32][56813] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...391] [ip4][..udp] [..44.242.231.77][50261] -> [.186.112.202.53][..427] [Service_Location_Protocol][AmazonAWS][RPC][Acceptable]
DAEMON-EVENT: [Processed: 398 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 392|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 78]
new: [...393] [ip4][..udp] [.27.134.169.220][44054] -> [...90.141.37.56][..427]
detected: [...393] [ip4][..udp] [.27.134.169.220][44054] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...392] [ip4][..udp] [..37.234.100.32][56813] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 399 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 393|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 78]
new: [...394] [ip4][..udp] [..67.159.16.150][46249] -> [..74.111.203.55][..427]
detected: [...394] [ip4][..udp] [..67.159.16.150][46249] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...393] [ip4][..udp] [.27.134.169.220][44054] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 400 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 394|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 78]
new: [...395] [ip4][..udp] [.27.134.169.220][64251] -> [..74.111.203.55][..427]
detected: [...395] [ip4][..udp] [.27.134.169.220][64251] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...394] [ip4][..udp] [..67.159.16.150][46249] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...396] [ip4][..udp] [....88.71.42.58][15464] -> [..165.144.84.62][..427]
detected: [...396] [ip4][..udp] [....88.71.42.58][15464] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...395] [ip4][..udp] [.27.134.169.220][64251] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 402 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 396|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 78]
new: [...397] [ip4][..udp] [..191.62.219.57][29227] -> [.186.112.202.53][..427]
detected: [...397] [ip4][..udp] [..191.62.219.57][29227] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...396] [ip4][..udp] [....88.71.42.58][15464] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...398] [ip4][..udp] [...190.71.42.54][47364] -> [..69.109.187.54][..427]
detected: [...398] [ip4][..udp] [...190.71.42.54][47364] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...397] [ip4][..udp] [..191.62.219.57][29227] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 404 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 398|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 78]
new: [...399] [ip4][..udp] [..166.62.197.60][35606] -> [.165.114.202.61][..427]
detected: [...399] [ip4][..udp] [..166.62.197.60][35606] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...398] [ip4][..udp] [...190.71.42.54][47364] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...400] [ip4][..udp] [..191.62.219.57][18685] -> [..90.111.212.50][..427]
detected: [...400] [ip4][..udp] [..191.62.219.57][18685] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...399] [ip4][..udp] [..166.62.197.60][35606] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 406 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 400|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 78]
new: [...401] [ip4][..udp] [...88.70.212.56][65013] -> [...85.111.52.57][..427]
detected: [...401] [ip4][..udp] [...88.70.212.56][65013] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...400] [ip4][..udp] [..191.62.219.57][18685] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...402] [ip4][..udp] [..184.199.42.59][42047] -> [...90.141.37.56][..427]
detected: [...402] [ip4][..udp] [..184.199.42.59][42047] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...401] [ip4][..udp] [...88.70.212.56][65013] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...403] [ip4][..udp] [..161.199.58.19][64864] -> [..90.147.171.51][..427]
detected: [...403] [ip4][..udp] [..161.199.58.19][64864] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...402] [ip4][..udp] [..184.199.42.59][42047] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...401] [ip4][..udp] [...88.70.212.56][65013] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 409 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 403|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 79]
new: [...404] [ip4][..udp] [..161.62.218.52][37093] -> [..74.111.203.55][..427]
detected: [...404] [ip4][..udp] [..161.62.218.52][37093] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...403] [ip4][..udp] [..161.199.58.19][64864] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 410 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 404|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 79]
new: [...405] [ip4][..udp] [.194.43.223.106][55142] -> [.165.114.202.61][..427]
detected: [...405] [ip4][..udp] [.194.43.223.106][55142] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...404] [ip4][..udp] [..161.62.218.52][37093] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 411 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 405|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 79]
new: [...406] [ip4][..udp] [226.158.252.127][33255] -> [...85.111.52.57][..427]
detected: [...406] [ip4][..udp] [226.158.252.127][33255] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...405] [ip4][..udp] [.194.43.223.106][55142] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 412 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 406|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 79]
new: [...407] [ip4][..udp] [.200.31.144.158][36149] -> [.186.112.202.53][..427]
detected: [...407] [ip4][..udp] [.200.31.144.158][36149] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...406] [ip4][..udp] [226.158.252.127][33255] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 413 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 407|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 79]
new: [...408] [ip4][..udp] [.200.31.144.158][45294] -> [.165.114.202.61][..427]
detected: [...408] [ip4][..udp] [.200.31.144.158][45294] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...407] [ip4][..udp] [.200.31.144.158][36149] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...409] [ip4][..udp] [.200.31.144.158][45056] -> [..90.145.180.58][..427]
detected: [...409] [ip4][..udp] [.200.31.144.158][45056] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...408] [ip4][..udp] [.200.31.144.158][45294] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...410] [ip4][..udp] [.93.102.124.112][10968] -> [..90.147.171.51][..427]
detected: [...410] [ip4][..udp] [.93.102.124.112][10968] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...409] [ip4][..udp] [.200.31.144.158][45056] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 416 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 410|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 80]
new: [...411] [ip4][..udp] [.200.31.144.158][54431] -> [...90.141.37.56][..427]
detected: [...411] [ip4][..udp] [.200.31.144.158][54431] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...409] [ip4][..udp] [.200.31.144.158][45056] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...410] [ip4][..udp] [.93.102.124.112][10968] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...412] [ip4][..udp] [.200.31.144.158][59262] -> [..90.147.171.51][..427]
detected: [...412] [ip4][..udp] [.200.31.144.158][59262] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...411] [ip4][..udp] [.200.31.144.158][54431] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...413] [ip4][..udp] [.200.31.144.158][51675] -> [..69.109.187.54][..427]
detected: [...413] [ip4][..udp] [.200.31.144.158][51675] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...412] [ip4][..udp] [.200.31.144.158][59262] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 419 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 413|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 81]
new: [...414] [ip4][..udp] [.174.237.64.176][49218] -> [...90.141.37.56][..427]
detected: [...414] [ip4][..udp] [.174.237.64.176][49218] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...413] [ip4][..udp] [.200.31.144.158][51675] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...412] [ip4][..udp] [.200.31.144.158][59262] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...415] [ip4][..udp] [.200.31.144.158][57345] -> [..165.144.84.62][..427]
detected: [...415] [ip4][..udp] [.200.31.144.158][57345] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...414] [ip4][..udp] [.174.237.64.176][49218] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...416] [ip4][..udp] [.200.31.144.158][57245] -> [...85.111.52.57][..427]
detected: [...416] [ip4][..udp] [.200.31.144.158][57245] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 422 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 416|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 81]
new: [...417] [ip4][..udp] [193.219.252.221][51650] -> [..90.147.171.51][..427]
detected: [...417] [ip4][..udp] [193.219.252.221][51650] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...416] [ip4][..udp] [.200.31.144.158][57245] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...415] [ip4][..udp] [.200.31.144.158][57345] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 423 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 417|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 81]
new: [...418] [ip4][..udp] [.200.31.144.158][41180] -> [..74.111.203.55][..427]
detected: [...418] [ip4][..udp] [.200.31.144.158][41180] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...417] [ip4][..udp] [193.219.252.221][51650] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 424 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 418|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 81]
new: [...419] [ip4][..udp] [.200.31.144.158][40785] -> [..90.111.212.50][..427]
detected: [...419] [ip4][..udp] [.200.31.144.158][40785] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...418] [ip4][..udp] [.200.31.144.158][41180] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 425 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 419|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 81]
new: [...420] [ip4][..udp] [..174.18.32.224][53272] -> [..74.111.203.55][..427]
detected: [...420] [ip4][..udp] [..174.18.32.224][53272] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...419] [ip4][..udp] [.200.31.144.158][40785] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...421] [ip4][..udp] [237.132.176.136][59095] -> [..69.109.187.54][..427]
detected: [...421] [ip4][..udp] [237.132.176.136][59095] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...420] [ip4][..udp] [..174.18.32.224][53272] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 427 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 421|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 81]
new: [...422] [ip4][..udp] [...37.36.31.210][53791] -> [..165.144.84.62][..427]
detected: [...422] [ip4][..udp] [...37.36.31.210][53791] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...421] [ip4][..udp] [237.132.176.136][59095] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 428 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 422|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 81]
new: [...423] [ip4][..udp] [.91.255.107.116][34976] -> [...85.111.52.57][..427]
detected: [...423] [ip4][..udp] [.91.255.107.116][34976] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...422] [ip4][..udp] [...37.36.31.210][53791] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 429 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 423|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 81]
new: [...424] [ip4][..udp] [....47.51.0.222][53190] -> [..69.109.187.54][..427]
detected: [...424] [ip4][..udp] [....47.51.0.222][53190] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...423] [ip4][..udp] [.91.255.107.116][34976] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 430 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 424|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 81]
new: [...425] [ip4][..udp] [.238.156.97.151][35769] -> [..74.111.203.55][..427]
detected: [...425] [ip4][..udp] [.238.156.97.151][35769] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...424] [ip4][..udp] [....47.51.0.222][53190] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...426] [ip4][..udp] [134.180.144.149][33745] -> [...85.111.52.57][..427]
detected: [...426] [ip4][..udp] [134.180.144.149][33745] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...425] [ip4][..udp] [.238.156.97.151][35769] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 432 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 426|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 81]
new: [...427] [ip4][..udp] [.246.75.104.115][37012] -> [..90.147.171.51][..427]
detected: [...427] [ip4][..udp] [.246.75.104.115][37012] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...426] [ip4][..udp] [134.180.144.149][33745] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 433 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 427|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 81]
new: [...428] [ip4][..udp] [.70.180.111.241][54319] -> [.165.114.202.61][..427]
detected: [...428] [ip4][..udp] [.70.180.111.241][54319] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...427] [ip4][..udp] [.246.75.104.115][37012] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 434 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 428|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 81]
new: [...429] [ip4][..udp] [..19.99.146.156][59479] -> [..90.111.212.50][..427]
detected: [...429] [ip4][..udp] [..19.99.146.156][59479] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...428] [ip4][..udp] [.70.180.111.241][54319] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...430] [ip4][..udp] [.246.75.104.115][46227] -> [..90.145.180.58][..427]
detected: [...430] [ip4][..udp] [.246.75.104.115][46227] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...431] [ip4][..udp] [..227.7.178.223][16085] -> [..74.111.203.55][..427]
detected: [...431] [ip4][..udp] [..227.7.178.223][16085] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...430] [ip4][..udp] [.246.75.104.115][46227] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...429] [ip4][..udp] [..19.99.146.156][59479] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 437 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 431|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 81]
new: [...432] [ip4][..udp] [.246.75.104.115][37571] -> [...90.141.37.56][..427]
detected: [...432] [ip4][..udp] [.246.75.104.115][37571] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...431] [ip4][..udp] [..227.7.178.223][16085] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 438 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 432|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 81]
new: [...433] [ip4][..udp] [.70.180.111.241][52184] -> [..69.109.187.54][..427]
detected: [...433] [ip4][..udp] [.70.180.111.241][52184] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...432] [ip4][..udp] [.246.75.104.115][37571] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 439 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 433|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 81]
new: [...434] [ip4][..udp] [.246.75.104.115][40378] -> [..165.144.84.62][..427]
detected: [...434] [ip4][..udp] [.246.75.104.115][40378] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...433] [ip4][..udp] [.70.180.111.241][52184] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 440 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 434|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 81]
new: [...435] [ip4][..udp] [.138.18.252.120][11561] -> [.165.114.202.61][..427]
detected: [...435] [ip4][..udp] [.138.18.252.120][11561] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...434] [ip4][..udp] [.246.75.104.115][40378] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 441 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 435|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 81]
new: [...436] [ip4][..udp] [219.160.101.209][55022] -> [...90.141.37.56][..427]
detected: [...436] [ip4][..udp] [219.160.101.209][55022] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...435] [ip4][..udp] [.138.18.252.120][11561] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 442 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 436|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 81]
new: [...437] [ip4][..udp] [..66.228.166.55][51471] -> [..69.109.187.54][..427]
detected: [...437] [ip4][..udp] [..66.228.166.55][51471] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...436] [ip4][..udp] [219.160.101.209][55022] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 443 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 437|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 81]
new: [...438] [ip4][..udp] [172.237.152.209][53093] -> [..90.147.171.51][..427]
detected: [...438] [ip4][..udp] [172.237.152.209][53093] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...437] [ip4][..udp] [..66.228.166.55][51471] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 444 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 438|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 81]
new: [...439] [ip4][..udp] [...82.19.88.220][49990] -> [.186.112.202.53][..427]
detected: [...439] [ip4][..udp] [...82.19.88.220][49990] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...438] [ip4][..udp] [172.237.152.209][53093] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 445 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 439|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 81]
new: [...440] [ip4][..udp] [..167.7.154.125][.2538] -> [...90.141.37.56][..427]
detected: [...440] [ip4][..udp] [..167.7.154.125][.2538] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...439] [ip4][..udp] [...82.19.88.220][49990] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 446 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 440|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 81]
new: [...441] [ip4][..udp] [..206.204.24.90][54057] -> [..90.111.212.50][..427]
detected: [...441] [ip4][..udp] [..206.204.24.90][54057] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...440] [ip4][..udp] [..167.7.154.125][.2538] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 447 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 441|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 81]
new: [...442] [ip4][..udp] [..185.33.65.208][52802] -> [..74.111.203.55][..427]
detected: [...442] [ip4][..udp] [..185.33.65.208][52802] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...441] [ip4][..udp] [..206.204.24.90][54057] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 448 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 442|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 81]
new: [...443] [ip4][..udp] [..35.252.69.113][28374] -> [.186.112.202.53][..427]
detected: [...443] [ip4][..udp] [..35.252.69.113][28374] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...442] [ip4][..udp] [..185.33.65.208][52802] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 449 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 443|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 81]
new: [...444] [ip4][..udp] [.47.236.248.231][52985] -> [...90.141.37.56][..427]
detected: [...444] [ip4][..udp] [.47.236.248.231][52985] -> [...90.141.37.56][..427] [Service_Location_Protocol][Alibaba][RPC][Acceptable]
idle: [...443] [ip4][..udp] [..35.252.69.113][28374] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 450 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 444|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 81]
new: [...445] [ip4][..udp] [.173.161.10.173][43924] -> [..90.111.212.50][..427]
detected: [...445] [ip4][..udp] [.173.161.10.173][43924] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...444] [ip4][..udp] [.47.236.248.231][52985] -> [...90.141.37.56][..427] [Service_Location_Protocol][Alibaba][RPC][Acceptable]
new: [...446] [ip4][..udp] [185.213.154.138][52528] -> [.165.114.202.61][..427]
detected: [...446] [ip4][..udp] [185.213.154.138][52528] -> [.165.114.202.61][..427] [Service_Location_Protocol][Mullvad][RPC][Acceptable]
update: [...445] [ip4][..udp] [.173.161.10.173][43924] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...447] [ip4][..udp] [..191.184.52.78][64609] -> [..90.111.212.50][..427]
detected: [...447] [ip4][..udp] [..191.184.52.78][64609] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...445] [ip4][..udp] [.173.161.10.173][43924] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...446] [ip4][..udp] [185.213.154.138][52528] -> [.165.114.202.61][..427] [Service_Location_Protocol][Mullvad][RPC][Acceptable]
DAEMON-EVENT: [Processed: 453 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 447|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 82]
new: [...448] [ip4][..udp] [..167.65.212.80][.3597] -> [..165.144.84.62][..427]
detected: [...448] [ip4][..udp] [..167.65.212.80][.3597] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...447] [ip4][..udp] [..191.184.52.78][64609] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...449] [ip4][..udp] [..185.62.196.74][50485] -> [.165.114.202.61][..427]
detected: [...449] [ip4][..udp] [..185.62.196.74][50485] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...448] [ip4][..udp] [..167.65.212.80][.3597] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 455 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 449|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 82]
new: [...450] [ip4][..udp] [..167.65.212.80][.8856] -> [..90.145.180.58][..427]
detected: [...450] [ip4][..udp] [..167.65.212.80][.8856] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...449] [ip4][..udp] [..185.62.196.74][50485] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...451] [ip4][..udp] [....65.70.43.75][46615] -> [..74.111.203.55][..427]
detected: [...451] [ip4][..udp] [....65.70.43.75][46615] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...452] [ip4][..udp] [....64.64.43.81][58560] -> [...90.141.37.56][..427]
detected: [...452] [ip4][..udp] [....64.64.43.81][58560] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...451] [ip4][..udp] [....65.70.43.75][46615] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...450] [ip4][..udp] [..167.65.212.80][.8856] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 458 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 452|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 82]
new: [...453] [ip4][..udp] [....65.70.43.75][24868] -> [...85.111.52.57][..427]
detected: [...453] [ip4][..udp] [....65.70.43.75][24868] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...452] [ip4][..udp] [....64.64.43.81][58560] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...454] [ip4][..udp] [..167.65.212.80][16286] -> [..69.109.187.54][..427]
detected: [...454] [ip4][..udp] [..167.65.212.80][16286] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...453] [ip4][..udp] [....65.70.43.75][24868] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 460 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 454|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 83]
new: [...455] [ip4][..udp] [.34.119.122.126][.2631] -> [..74.111.203.55][..427]
detected: [...455] [ip4][..udp] [.34.119.122.126][.2631] -> [..74.111.203.55][..427] [Service_Location_Protocol][Google][RPC][Acceptable]
idle: [...454] [ip4][..udp] [..167.65.212.80][16286] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...453] [ip4][..udp] [....65.70.43.75][24868] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...456] [ip4][..udp] [..211.50.152.79][55356] -> [..165.144.84.62][..427]
detected: [...456] [ip4][..udp] [..211.50.152.79][55356] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...455] [ip4][..udp] [.34.119.122.126][.2631] -> [..74.111.203.55][..427] [Service_Location_Protocol][Google][RPC][Acceptable]
DAEMON-EVENT: [Processed: 462 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 456|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 84]
new: [...457] [ip4][..udp] [.173.161.10.173][45539] -> [.186.112.202.53][..427]
detected: [...457] [ip4][..udp] [.173.161.10.173][45539] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...455] [ip4][..udp] [.34.119.122.126][.2631] -> [..74.111.203.55][..427] [Service_Location_Protocol][Google][RPC][Acceptable]
idle: [...456] [ip4][..udp] [..211.50.152.79][55356] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...458] [ip4][..udp] [...88.185.36.86][.4763] -> [..90.147.171.51][..427]
detected: [...458] [ip4][..udp] [...88.185.36.86][.4763] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...457] [ip4][..udp] [.173.161.10.173][45539] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...459] [ip4][..udp] [...94.64.218.76][16452] -> [.186.112.202.53][..427]
detected: [...459] [ip4][..udp] [...94.64.218.76][16452] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...458] [ip4][..udp] [...88.185.36.86][.4763] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...460] [ip4][..udp] [209.239.135.211][55124] -> [...85.111.52.57][..427]
detected: [...460] [ip4][..udp] [209.239.135.211][55124] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...458] [ip4][..udp] [...88.185.36.86][.4763] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...459] [ip4][..udp] [...94.64.218.76][16452] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 466 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 3 / 460|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 87]
new: [...461] [ip4][..udp] [226.128.122.118][58464] -> [..90.145.180.58][..427]
detected: [...461] [ip4][..udp] [226.128.122.118][58464] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...460] [ip4][..udp] [209.239.135.211][55124] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...458] [ip4][..udp] [...88.185.36.86][.4763] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...459] [ip4][..udp] [...94.64.218.76][16452] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 467 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 461|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 87]
new: [...462] [ip4][..udp] [.34.102.125.120][51324] -> [.165.114.202.61][..427]
detected: [...462] [ip4][..udp] [.34.102.125.120][51324] -> [.165.114.202.61][..427] [Service_Location_Protocol][GoogleCloud][RPC][Acceptable]
idle: [...461] [ip4][..udp] [226.128.122.118][58464] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...463] [ip4][..udp] [.173.161.10.173][42304] -> [..165.144.84.62][..427]
detected: [...463] [ip4][..udp] [.173.161.10.173][42304] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...462] [ip4][..udp] [.34.102.125.120][51324] -> [.165.114.202.61][..427] [Service_Location_Protocol][GoogleCloud][RPC][Acceptable]
DAEMON-EVENT: [Processed: 469 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 463|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 88]
new: [...464] [ip4][..udp] [.173.161.10.173][53096] -> [..90.145.180.58][..427]
detected: [...464] [ip4][..udp] [.173.161.10.173][53096] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...463] [ip4][..udp] [.173.161.10.173][42304] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...462] [ip4][..udp] [.34.102.125.120][51324] -> [.165.114.202.61][..427] [Service_Location_Protocol][GoogleCloud][RPC][Acceptable]
DAEMON-EVENT: [Processed: 470 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 464|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 88]
new: [...465] [ip4][..udp] [134.180.144.149][51824] -> [...85.111.52.57][..427]
detected: [...465] [ip4][..udp] [134.180.144.149][51824] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...464] [ip4][..udp] [.173.161.10.173][53096] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...466] [ip4][..udp] [236.131.162.157][35531] -> [..90.147.171.51][..427]
detected: [...466] [ip4][..udp] [236.131.162.157][35531] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...465] [ip4][..udp] [134.180.144.149][51824] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...467] [ip4][..udp] [.45.131.161.152][57860] -> [..90.111.212.50][..427]
detected: [...467] [ip4][..udp] [.45.131.161.152][57860] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...466] [ip4][..udp] [236.131.162.157][35531] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 473 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 467|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 88]
new: [...468] [ip4][..udp] [.173.161.10.173][60345] -> [...90.141.37.56][..427]
detected: [...468] [ip4][..udp] [.173.161.10.173][60345] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...467] [ip4][..udp] [.45.131.161.152][57860] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 474 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 468|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 88]
new: [...469] [ip4][..udp] [..16.99.147.146][60624] -> [...90.141.37.56][..427]
detected: [...469] [ip4][..udp] [..16.99.147.146][60624] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...468] [ip4][..udp] [.173.161.10.173][60345] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 475 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 469|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 88]
new: [...470] [ip4][..udp] [182.180.120.139][50595] -> [..165.144.84.62][..427]
detected: [...470] [ip4][..udp] [182.180.120.139][50595] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...469] [ip4][..udp] [..16.99.147.146][60624] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...471] [ip4][..udp] [..19.99.147.148][58452] -> [.165.114.202.61][..427]
detected: [...471] [ip4][..udp] [..19.99.147.148][58452] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...470] [ip4][..udp] [182.180.120.139][50595] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 477 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 471|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 88]
new: [...472] [ip4][..udp] [210.124.156.149][52931] -> [..69.109.187.54][..427]
detected: [...472] [ip4][..udp] [210.124.156.149][52931] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...471] [ip4][..udp] [..19.99.147.148][58452] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 478 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 472|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 88]
new: [...473] [ip4][..udp] [134.180.144.149][57887] -> [.186.112.202.53][..427]
detected: [...473] [ip4][..udp] [134.180.144.149][57887] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...472] [ip4][..udp] [210.124.156.149][52931] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 479 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 473|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 88]
new: [...474] [ip4][..udp] [184.180.168.240][56968] -> [..74.111.203.55][..427]
detected: [...474] [ip4][..udp] [184.180.168.240][56968] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...473] [ip4][..udp] [134.180.144.149][57887] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 480 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 474|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 88]
new: [...475] [ip4][..udp] [.16.131.191.144][57563] -> [..90.145.180.58][..427]
detected: [...475] [ip4][..udp] [.16.131.191.144][57563] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...474] [ip4][..udp] [184.180.168.240][56968] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...476] [ip4][..udp] [.173.161.10.173][33195] -> [.165.114.202.61][..427]
detected: [...476] [ip4][..udp] [.173.161.10.173][33195] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...475] [ip4][..udp] [.16.131.191.144][57563] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 482 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 476|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 88]
new: [...477] [ip4][..udp] [.173.161.10.173][48688] -> [..90.147.171.51][..427]
detected: [...477] [ip4][..udp] [.173.161.10.173][48688] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...476] [ip4][..udp] [.173.161.10.173][33195] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 483 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 477|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 88]
new: [...478] [ip4][..udp] [..231.38.82.221][41269] -> [..165.144.84.62][..427]
detected: [...478] [ip4][..udp] [..231.38.82.221][41269] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...477] [ip4][..udp] [.173.161.10.173][48688] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 484 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 478|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 88]
new: [...479] [ip4][..udp] [..35.252.69.113][14173] -> [..69.109.187.54][..427]
detected: [...479] [ip4][..udp] [..35.252.69.113][14173] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...478] [ip4][..udp] [..231.38.82.221][41269] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 485 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 479|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 88]
new: [...480] [ip4][..udp] [.173.19.223.218][54527] -> [...85.111.52.57][..427]
detected: [...480] [ip4][..udp] [.173.19.223.218][54527] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...479] [ip4][..udp] [..35.252.69.113][14173] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 486 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 480|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 88]
new: [...481] [ip4][..udp] [208.243.248.212][52104] -> [..90.145.180.58][..427]
detected: [...481] [ip4][..udp] [208.243.248.212][52104] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...480] [ip4][..udp] [.173.19.223.218][54527] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...482] [ip4][..udp] [..39.59.139.121][18087] -> [.165.114.202.61][..427]
detected: [...482] [ip4][..udp] [..39.59.139.121][18087] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...481] [ip4][..udp] [208.243.248.212][52104] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 488 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 482|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 88]
new: [...483] [ip4][..udp] [.173.161.10.173][33095] -> [..69.109.187.54][..427]
detected: [...483] [ip4][..udp] [.173.161.10.173][33095] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...482] [ip4][..udp] [..39.59.139.121][18087] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 489 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 483|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 88]
new: [...484] [ip4][..udp] [.173.161.10.173][42481] -> [...85.111.52.57][..427]
detected: [...484] [ip4][..udp] [.173.161.10.173][42481] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...483] [ip4][..udp] [.173.161.10.173][33095] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...485] [ip4][..udp] [..70.210.68.170][50121] -> [..90.111.212.50][..427]
detected: [...485] [ip4][..udp] [..70.210.68.170][50121] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...484] [ip4][..udp] [.173.161.10.173][42481] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 491 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 485|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 88]
new: [...486] [ip4][..udp] [.227.199.90.122][51729] -> [..90.145.180.58][..427]
detected: [...486] [ip4][..udp] [.227.199.90.122][51729] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...485] [ip4][..udp] [..70.210.68.170][50121] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 492 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 486|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 88]
new: [...487] [ip4][..udp] [161.231.128.245][56820] -> [..74.111.203.55][..427]
detected: [...487] [ip4][..udp] [161.231.128.245][56820] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...486] [ip4][..udp] [.227.199.90.122][51729] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...488] [ip4][..udp] [.173.161.10.173][55131] -> [..74.111.203.55][..427]
detected: [...488] [ip4][..udp] [.173.161.10.173][55131] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...487] [ip4][..udp] [161.231.128.245][56820] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 494 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 488|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 88]
new: [...489] [ip4][..udp] [..99.199.77.211][14222] -> [.165.114.202.61][..427]
detected: [...489] [ip4][..udp] [..99.199.77.211][14222] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...488] [ip4][..udp] [.173.161.10.173][55131] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 495 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 489|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 88]
new: [...490] [ip4][..udp] [...222.41.7.222][55970] -> [..90.147.171.51][..427]
detected: [...490] [ip4][..udp] [...222.41.7.222][55970] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...489] [ip4][..udp] [..99.199.77.211][14222] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 496 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 490|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 88]
new: [...491] [ip4][..udp] [...89.28.95.249][56710] -> [..165.144.84.62][..427]
detected: [...491] [ip4][..udp] [...89.28.95.249][56710] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...490] [ip4][..udp] [...222.41.7.222][55970] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 497 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 491|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 88]
new: [...492] [ip4][..udp] [..85.47.224.171][16312] -> [..74.111.203.55][..427]
detected: [...492] [ip4][..udp] [..85.47.224.171][16312] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...491] [ip4][..udp] [...89.28.95.249][56710] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...493] [ip4][..udp] [..85.47.224.171][46040] -> [..165.144.84.62][..427]
detected: [...493] [ip4][..udp] [..85.47.224.171][46040] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...492] [ip4][..udp] [..85.47.224.171][16312] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...494] [ip4][..udp] [..74.142.40.174][10528] -> [...90.141.37.56][..427]
detected: [...494] [ip4][..udp] [..74.142.40.174][10528] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...493] [ip4][..udp] [..85.47.224.171][46040] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 500 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 494|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 88]
new: [...495] [ip4][..udp] [..85.174.88.154][20504] -> [..69.109.187.54][..427]
detected: [...495] [ip4][..udp] [..85.174.88.154][20504] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...494] [ip4][..udp] [..74.142.40.174][10528] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 501 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 495|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 88]
new: [...496] [ip4][..udp] [170.238.168.143][62476] -> [...85.111.52.57][..427]
detected: [...496] [ip4][..udp] [170.238.168.143][62476] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...495] [ip4][..udp] [..85.174.88.154][20504] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...497] [ip4][..udp] [..170.18.87.162][58469] -> [.186.112.202.53][..427]
detected: [...497] [ip4][..udp] [..170.18.87.162][58469] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...496] [ip4][..udp] [170.238.168.143][62476] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...498] [ip4][..udp] [..85.47.224.171][16312] -> [..90.111.212.50][..427]
detected: [...498] [ip4][..udp] [..85.47.224.171][16312] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...499] [ip4][..udp] [.170.243.40.186][35528] -> [.165.114.202.61][..427]
detected: [...499] [ip4][..udp] [.170.243.40.186][35528] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...497] [ip4][..udp] [..170.18.87.162][58469] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 505 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 3 / 499|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 89]
new: [...500] [ip4][..udp] [..74.239.16.156][46464] -> [..90.145.180.58][..427]
detected: [...500] [ip4][..udp] [..74.239.16.156][46464] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...498] [ip4][..udp] [..85.47.224.171][16312] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...497] [ip4][..udp] [..170.18.87.162][58469] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...499] [ip4][..udp] [.170.243.40.186][35528] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 506 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 500|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 89]
new: [...501] [ip4][..udp] [...35.0.100.115][46588] -> [..165.144.84.62][..427]
detected: [...501] [ip4][..udp] [...35.0.100.115][46588] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...500] [ip4][..udp] [..74.239.16.156][46464] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 507 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 501|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 89]
new: [...502] [ip4][..udp] [.227.134.81.212][17542] -> [..90.147.171.51][..427]
detected: [...502] [ip4][..udp] [.227.134.81.212][17542] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...501] [ip4][..udp] [...35.0.100.115][46588] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 508 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 502|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 89]
new: [...503] [ip4][..udp] [...93.36.35.136][56600] -> [.165.114.202.61][..427]
detected: [...503] [ip4][..udp] [...93.36.35.136][56600] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...502] [ip4][..udp] [.227.134.81.212][17542] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 509 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 503|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 89]
new: [...504] [ip4][..udp] [..76.50.135.245][51836] -> [...90.141.37.56][..427]
detected: [...504] [ip4][..udp] [..76.50.135.245][51836] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...503] [ip4][..udp] [...93.36.35.136][56600] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...505] [ip4][..udp] [..69.36.231.230][55374] -> [..69.109.187.54][..427]
detected: [...505] [ip4][..udp] [..69.36.231.230][55374] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...504] [ip4][..udp] [..76.50.135.245][51836] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 511 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 505|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 89]
new: [...506] [ip4][..udp] [..122.122.167.9][43646] -> [...90.141.37.56][..427]
detected: [...506] [ip4][..udp] [..122.122.167.9][43646] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...505] [ip4][..udp] [..69.36.231.230][55374] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 512 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 506|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 89]
new: [...507] [ip4][..udp] [.200.31.144.158][48498] -> [.165.114.202.61][..427]
detected: [...507] [ip4][..udp] [.200.31.144.158][48498] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...506] [ip4][..udp] [..122.122.167.9][43646] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 513 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 507|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 89]
new: [...508] [ip4][..udp] [.200.31.144.158][35848] -> [..90.145.180.58][..427]
detected: [...508] [ip4][..udp] [.200.31.144.158][35848] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...507] [ip4][..udp] [.200.31.144.158][48498] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...509] [ip4][..udp] [.200.31.144.158][38264] -> [..69.109.187.54][..427]
detected: [...509] [ip4][..udp] [.200.31.144.158][38264] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...508] [ip4][..udp] [.200.31.144.158][35848] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 515 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 509|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 90]
new: [...510] [ip4][..udp] [.200.31.144.158][49404] -> [...85.111.52.57][..427]
detected: [...510] [ip4][..udp] [.200.31.144.158][49404] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...509] [ip4][..udp] [.200.31.144.158][38264] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...508] [ip4][..udp] [.200.31.144.158][35848] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...511] [ip4][..udp] [239.131.160.152][40653] -> [..90.147.171.51][..427]
detected: [...511] [ip4][..udp] [239.131.160.152][40653] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...510] [ip4][..udp] [.200.31.144.158][49404] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 517 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 511|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 91]
new: [...512] [ip4][..udp] [.200.31.144.158][33216] -> [..165.144.84.62][..427]
detected: [...512] [ip4][..udp] [.200.31.144.158][33216] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...510] [ip4][..udp] [.200.31.144.158][49404] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...511] [ip4][..udp] [239.131.160.152][40653] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...513] [ip4][..udp] [.200.31.144.158][42236] -> [..90.147.171.51][..427]
detected: [...513] [ip4][..udp] [.200.31.144.158][42236] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...512] [ip4][..udp] [.200.31.144.158][33216] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...514] [ip4][..udp] [237.132.176.136][51278] -> [..74.111.203.55][..427]
detected: [...514] [ip4][..udp] [237.132.176.136][51278] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 520 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 514|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 91]
new: [...515] [ip4][..udp] [.246.75.104.115][50377] -> [.186.112.202.53][..427]
detected: [...515] [ip4][..udp] [.246.75.104.115][50377] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...513] [ip4][..udp] [.200.31.144.158][42236] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...514] [ip4][..udp] [237.132.176.136][51278] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...516] [ip4][..udp] [.70.180.111.241][51457] -> [..165.144.84.62][..427]
detected: [...516] [ip4][..udp] [.70.180.111.241][51457] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...515] [ip4][..udp] [.246.75.104.115][50377] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...517] [ip4][..udp] [.200.31.144.158][48231] -> [.186.112.202.53][..427]
detected: [...517] [ip4][..udp] [.200.31.144.158][48231] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...516] [ip4][..udp] [.70.180.111.241][51457] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 523 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 517|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 92]
new: [...518] [ip4][..udp] [.200.31.144.158][55658] -> [..74.111.203.55][..427]
detected: [...518] [ip4][..udp] [.200.31.144.158][55658] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...517] [ip4][..udp] [.200.31.144.158][48231] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...516] [ip4][..udp] [.70.180.111.241][51457] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...519] [ip4][..udp] [.70.180.111.241][58316] -> [..90.111.212.50][..427]
detected: [...519] [ip4][..udp] [.70.180.111.241][58316] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...518] [ip4][..udp] [.200.31.144.158][55658] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 525 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 519|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 92]
new: [...520] [ip4][..udp] [.200.31.144.158][45270] -> [..90.111.212.50][..427]
detected: [...520] [ip4][..udp] [.200.31.144.158][45270] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...519] [ip4][..udp] [.70.180.111.241][58316] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 526 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 520|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 92]
new: [...521] [ip4][..udp] [200.180.144.114][54554] -> [..69.109.187.54][..427]
detected: [...521] [ip4][..udp] [200.180.144.114][54554] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...520] [ip4][..udp] [.200.31.144.158][45270] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...522] [ip4][..udp] [208.123.176.154][56229] -> [...85.111.52.57][..427]
detected: [...522] [ip4][..udp] [208.123.176.154][56229] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...521] [ip4][..udp] [200.180.144.114][54554] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...523] [ip4][..udp] [.246.75.104.115][57365] -> [...90.141.37.56][..427]
detected: [...523] [ip4][..udp] [.246.75.104.115][57365] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...522] [ip4][..udp] [208.123.176.154][56229] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 529 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 523|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 93]
new: [...524] [ip4][..udp] [.194.23.249.243][54741] -> [..74.111.203.55][..427]
detected: [...524] [ip4][..udp] [.194.23.249.243][54741] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...522] [ip4][..udp] [208.123.176.154][56229] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...523] [ip4][..udp] [.246.75.104.115][57365] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 530 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 524|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 93]
new: [...525] [ip4][..udp] [165.128.253.116][53358] -> [..165.144.84.62][..427]
detected: [...525] [ip4][..udp] [165.128.253.116][53358] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...524] [ip4][..udp] [.194.23.249.243][54741] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 531 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 525|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 93]
new: [...526] [ip4][..udp] [157.120.252.123][11982] -> [.186.112.202.53][..427]
detected: [...526] [ip4][..udp] [157.120.252.123][11982] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...525] [ip4][..udp] [165.128.253.116][53358] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 532 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 526|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 93]
new: [...527] [ip4][..udp] [..79.210.95.146][54728] -> [.165.114.202.61][..427]
detected: [...527] [ip4][..udp] [..79.210.95.146][54728] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...526] [ip4][..udp] [157.120.252.123][11982] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 533 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 527|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 93]
new: [...528] [ip4][..udp] [..185.31.153.50][50851] -> [.186.112.202.53][..427]
detected: [...528] [ip4][..udp] [..185.31.153.50][50851] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...527] [ip4][..udp] [..79.210.95.146][54728] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 534 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 528|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 93]
new: [...529] [ip4][..udp] [.34.119.122.126][34795] -> [...90.141.37.56][..427]
detected: [...529] [ip4][..udp] [.34.119.122.126][34795] -> [...90.141.37.56][..427] [Service_Location_Protocol][Google][RPC][Acceptable]
idle: [...528] [ip4][..udp] [..185.31.153.50][50851] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 535 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 529|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 93]
new: [...530] [ip4][..udp] [.253.112.232.91][40051] -> [..69.109.187.54][..427]
detected: [...530] [ip4][..udp] [.253.112.232.91][40051] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...529] [ip4][..udp] [.34.119.122.126][34795] -> [...90.141.37.56][..427] [Service_Location_Protocol][Google][RPC][Acceptable]
DAEMON-EVENT: [Processed: 536 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 530|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 93]
new: [...531] [ip4][..udp] [.98.103.253.115][47719] -> [..90.111.212.50][..427]
detected: [...531] [ip4][..udp] [.98.103.253.115][47719] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...530] [ip4][..udp] [.253.112.232.91][40051] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...532] [ip4][..udp] [.228.255.84.119][61523] -> [..74.111.203.55][..427]
detected: [...532] [ip4][..udp] [.228.255.84.119][61523] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...531] [ip4][..udp] [.98.103.253.115][47719] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 538 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 532|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 93]
new: [...533] [ip4][..udp] [.178.240.255.34][54964] -> [..69.109.187.54][..427]
detected: [...533] [ip4][..udp] [.178.240.255.34][54964] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...532] [ip4][..udp] [.228.255.84.119][61523] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...534] [ip4][..udp] [.89.236.122.100][51926] -> [..90.145.180.58][..427]
detected: [...534] [ip4][..udp] [.89.236.122.100][51926] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...533] [ip4][..udp] [.178.240.255.34][54964] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 540 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 534|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 93]
new: [...535] [ip4][..udp] [154.129.123.124][35057] -> [..69.109.187.54][..427]
detected: [...535] [ip4][..udp] [154.129.123.124][35057] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...534] [ip4][..udp] [.89.236.122.100][51926] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 541 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 535|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 93]
new: [...536] [ip4][..udp] [..35.252.69.113][61013] -> [..90.111.212.50][..427]
detected: [...536] [ip4][..udp] [..35.252.69.113][61013] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...535] [ip4][..udp] [154.129.123.124][35057] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...537] [ip4][..udp] [..94.210.194.31][53432] -> [...85.111.52.57][..427]
detected: [...537] [ip4][..udp] [..94.210.194.31][53432] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...536] [ip4][..udp] [..35.252.69.113][61013] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 543 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 537|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 93]
new: [...538] [ip4][..udp] [..231.38.82.221][16953] -> [..90.111.212.50][..427]
detected: [...538] [ip4][..udp] [..231.38.82.221][16953] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...537] [ip4][..udp] [..94.210.194.31][53432] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...539] [ip4][..udp] [..88.31.110.219][39592] -> [...85.111.52.57][..427]
detected: [...539] [ip4][..udp] [..88.31.110.219][39592] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...538] [ip4][..udp] [..231.38.82.221][16953] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 545 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 539|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 93]
new: [...540] [ip4][..udp] [231.223.121.213][.4034] -> [..69.109.187.54][..427]
detected: [...540] [ip4][..udp] [231.223.121.213][.4034] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...539] [ip4][..udp] [..88.31.110.219][39592] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 546 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 540|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 93]
new: [...541] [ip4][..udp] [...64.63.36.139][49841] -> [.165.114.202.61][..427]
detected: [...541] [ip4][..udp] [...64.63.36.139][49841] -> [.165.114.202.61][..427] [Service_Location_Protocol][Twitter][RPC][Acceptable]
idle: [...540] [ip4][..udp] [231.223.121.213][.4034] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...542] [ip4][..udp] [..71.191.53.138][45513] -> [..90.111.212.50][..427]
detected: [...542] [ip4][..udp] [..71.191.53.138][45513] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...541] [ip4][..udp] [...64.63.36.139][49841] -> [.165.114.202.61][..427] [Service_Location_Protocol][Twitter][RPC][Acceptable]
new: [...543] [ip4][..udp] [...64.63.52.142][14637] -> [..90.147.171.51][..427]
detected: [...543] [ip4][..udp] [...64.63.52.142][14637] -> [..90.147.171.51][..427] [Service_Location_Protocol][Twitter][RPC][Acceptable]
idle: [...542] [ip4][..udp] [..71.191.53.138][45513] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...541] [ip4][..udp] [...64.63.36.139][49841] -> [.165.114.202.61][..427] [Service_Location_Protocol][Twitter][RPC][Acceptable]
new: [...544] [ip4][..udp] [...64.63.36.139][49841] -> [..69.109.187.54][..427]
detected: [...544] [ip4][..udp] [...64.63.36.139][49841] -> [..69.109.187.54][..427] [Service_Location_Protocol][Twitter][RPC][Acceptable]
idle: [...543] [ip4][..udp] [...64.63.52.142][14637] -> [..90.147.171.51][..427] [Service_Location_Protocol][Twitter][RPC][Acceptable]
DAEMON-EVENT: [Processed: 550 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 544|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 94]
new: [...545] [ip4][..udp] [..191.57.36.135][30888] -> [..165.144.84.62][..427]
detected: [...545] [ip4][..udp] [..191.57.36.135][30888] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...544] [ip4][..udp] [...64.63.36.139][49841] -> [..69.109.187.54][..427] [Service_Location_Protocol][Twitter][RPC][Acceptable]
new: [...546] [ip4][..udp] [.184.193.58.134][21356] -> [..74.111.203.55][..427]
detected: [...546] [ip4][..udp] [.184.193.58.134][21356] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...544] [ip4][..udp] [...64.63.36.139][49841] -> [..69.109.187.54][..427] [Service_Location_Protocol][Twitter][RPC][Acceptable]
update: [...545] [ip4][..udp] [..191.57.36.135][30888] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...547] [ip4][..udp] [...64.63.52.142][45266] -> [...85.111.52.57][..427]
detected: [...547] [ip4][..udp] [...64.63.52.142][45266] -> [...85.111.52.57][..427] [Service_Location_Protocol][Twitter][RPC][Acceptable]
idle: [...545] [ip4][..udp] [..191.57.36.135][30888] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...546] [ip4][..udp] [.184.193.58.134][21356] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...548] [ip4][..udp] [.184.193.58.134][.6016] -> [..90.145.180.58][..427]
detected: [...548] [ip4][..udp] [.184.193.58.134][.6016] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...547] [ip4][..udp] [...64.63.52.142][45266] -> [...85.111.52.57][..427] [Service_Location_Protocol][Twitter][RPC][Acceptable]
idle: [...546] [ip4][..udp] [.184.193.58.134][21356] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 554 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 548|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 97]
new: [...549] [ip4][..udp] [.184.193.58.134][21356] -> [...90.141.37.56][..427]
detected: [...549] [ip4][..udp] [.184.193.58.134][21356] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...548] [ip4][..udp] [.184.193.58.134][.6016] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 555 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 549|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 97]
new: [...550] [ip4][..udp] [..51.242.192.58][51989] -> [..165.144.84.62][..427]
detected: [...550] [ip4][..udp] [..51.242.192.58][51989] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...549] [ip4][..udp] [.184.193.58.134][21356] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 556 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 550|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 97]
new: [...551] [ip4][..udp] [.64.193.196.133][45764] -> [.186.112.202.53][..427]
detected: [...551] [ip4][..udp] [.64.193.196.133][45764] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...550] [ip4][..udp] [..51.242.192.58][51989] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 557 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 551|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 97]
new: [...552] [ip4][..udp] [.185.29.253.207][55308] -> [...90.141.37.56][..427]
detected: [...552] [ip4][..udp] [.185.29.253.207][55308] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...551] [ip4][..udp] [.64.193.196.133][45764] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 558 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 552|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 97]
new: [...553] [ip4][..udp] [...49.49.71.169][56940] -> [..90.147.171.51][..427]
detected: [...553] [ip4][..udp] [...49.49.71.169][56940] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...552] [ip4][..udp] [.185.29.253.207][55308] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 559 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 553|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 97]
new: [...554] [ip4][..udp] [...198.23.89.28][55179] -> [..90.111.212.50][..427]
detected: [...554] [ip4][..udp] [...198.23.89.28][55179] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...553] [ip4][..udp] [...49.49.71.169][56940] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 560 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 554|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 97]
new: [...555] [ip4][..udp] [..231.38.82.221][33154] -> [.186.112.202.53][..427]
detected: [...555] [ip4][..udp] [..231.38.82.221][33154] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...554] [ip4][..udp] [...198.23.89.28][55179] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 561 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 555|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 97]
new: [...556] [ip4][..udp] [...43.95.195.22][50287] -> [...85.111.52.57][..427]
detected: [...556] [ip4][..udp] [...43.95.195.22][50287] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...555] [ip4][..udp] [..231.38.82.221][33154] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 563 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 556|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 97]
new: [...557] [ip4][..udp] [..235.98.65.133][26337] -> [.165.114.202.61][..427]
detected: [...557] [ip4][..udp] [..235.98.65.133][26337] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...556] [ip4][..udp] [...43.95.195.22][50287] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 565 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 557|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 97]
new: [...558] [ip4][..udp] [.159.60.180.118][39471] -> [.165.114.202.61][..427]
detected: [...558] [ip4][..udp] [.159.60.180.118][39471] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...557] [ip4][..udp] [..235.98.65.133][26337] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 566 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 558|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 97]
new: [...559] [ip4][..udp] [.164.192.91.117][41275] -> [..165.144.84.62][..427]
detected: [...559] [ip4][..udp] [.164.192.91.117][41275] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...558] [ip4][..udp] [.159.60.180.118][39471] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 567 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 559|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 97]
new: [...560] [ip4][..udp] [155.160.165.208][51124] -> [..69.109.187.54][..427]
detected: [...560] [ip4][..udp] [155.160.165.208][51124] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...559] [ip4][..udp] [.164.192.91.117][41275] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 568 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 560|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 97]
new: [...561] [ip4][..udp] [...35.0.100.115][65092] -> [.186.112.202.53][..427]
detected: [...561] [ip4][..udp] [...35.0.100.115][65092] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...560] [ip4][..udp] [155.160.165.208][51124] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 569 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 561|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 97]
new: [...562] [ip4][..udp] [231.223.121.213][15170] -> [..90.147.171.51][..427]
detected: [...562] [ip4][..udp] [231.223.121.213][15170] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...561] [ip4][..udp] [...35.0.100.115][65092] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 570 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 562|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 97]
new: [...563] [ip4][..udp] [...65.218.6.160][55146] -> [.165.114.202.61][..427]
detected: [...563] [ip4][..udp] [...65.218.6.160][55146] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...562] [ip4][..udp] [231.223.121.213][15170] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 571 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 563|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 97]
new: [...564] [ip4][..udp] [.93.102.124.112][64449] -> [...85.111.52.57][..427]
detected: [...564] [ip4][..udp] [.93.102.124.112][64449] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...563] [ip4][..udp] [...65.218.6.160][55146] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 572 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 564|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 97]
new: [...565] [ip4][..udp] [..32.248.84.127][45264] -> [...90.141.37.56][..427]
detected: [...565] [ip4][..udp] [..32.248.84.127][45264] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...564] [ip4][..udp] [.93.102.124.112][64449] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 573 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 565|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 97]
new: [...566] [ip4][..udp] [....69.24.27.60][56117] -> [..90.111.212.50][..427]
detected: [...566] [ip4][..udp] [....69.24.27.60][56117] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...565] [ip4][..udp] [..32.248.84.127][45264] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 574 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 566|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 97]
new: [...567] [ip4][..udp] [..64.62.219.130][17454] -> [...85.111.52.57][..427]
detected: [...567] [ip4][..udp] [..64.62.219.130][17454] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...566] [ip4][..udp] [....69.24.27.60][56117] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...568] [ip4][..udp] [...64.63.52.142][21065] -> [..90.111.212.50][..427]
detected: [...568] [ip4][..udp] [...64.63.52.142][21065] -> [..90.111.212.50][..427] [Service_Location_Protocol][Twitter][RPC][Acceptable]
new: [...569] [ip4][..udp] [...64.63.52.142][50624] -> [..69.109.187.54][..427]
detected: [...569] [ip4][..udp] [...64.63.52.142][50624] -> [..69.109.187.54][..427] [Service_Location_Protocol][Twitter][RPC][Acceptable]
idle: [...568] [ip4][..udp] [...64.63.52.142][21065] -> [..90.111.212.50][..427] [Service_Location_Protocol][Twitter][RPC][Acceptable]
idle: [...567] [ip4][..udp] [..64.62.219.130][17454] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...570] [ip4][..udp] [...9.160.170.26][53573] -> [..69.109.187.54][..427]
detected: [...570] [ip4][..udp] [...9.160.170.26][53573] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 578 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 570|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 97]
new: [...571] [ip4][..udp] [.64.193.196.133][51380] -> [..90.145.180.58][..427]
detected: [...571] [ip4][..udp] [.64.193.196.133][51380] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...570] [ip4][..udp] [...9.160.170.26][53573] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...569] [ip4][..udp] [...64.63.52.142][50624] -> [..69.109.187.54][..427] [Service_Location_Protocol][Twitter][RPC][Acceptable]
new: [...572] [ip4][..udp] [...80.51.127.74][51252] -> [...90.141.37.56][..427]
detected: [...572] [ip4][..udp] [...80.51.127.74][51252] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...573] [ip4][..udp] [.160.71.213.140][41896] -> [.186.112.202.53][..427]
detected: [...573] [ip4][..udp] [.160.71.213.140][41896] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...572] [ip4][..udp] [...80.51.127.74][51252] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...571] [ip4][..udp] [.64.193.196.133][51380] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 581 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 3 / 573|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 99]
new: [...574] [ip4][..udp] [..191.57.36.135][38472] -> [..165.144.84.62][..427]
detected: [...574] [ip4][..udp] [..191.57.36.135][38472] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...572] [ip4][..udp] [...80.51.127.74][51252] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...571] [ip4][..udp] [.64.193.196.133][51380] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...573] [ip4][..udp] [.160.71.213.140][41896] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...575] [ip4][..udp] [.65.193.203.129][63990] -> [...90.141.37.56][..427]
detected: [...575] [ip4][..udp] [.65.193.203.129][63990] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...574] [ip4][..udp] [..191.57.36.135][38472] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 583 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 575|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 99]
new: [...576] [ip4][..udp] [..71.191.53.138][59582] -> [.165.114.202.61][..427]
detected: [...576] [ip4][..udp] [..71.191.53.138][59582] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...575] [ip4][..udp] [.65.193.203.129][63990] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 584 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 576|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 99]
new: [...577] [ip4][..udp] [.160.71.213.140][32482] -> [..74.111.203.55][..427]
detected: [...577] [ip4][..udp] [.160.71.213.140][32482] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...576] [ip4][..udp] [..71.191.53.138][59582] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 585 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 577|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 99]
new: [...578] [ip4][..udp] [.98.103.253.115][41415] -> [..74.111.203.55][..427]
detected: [...578] [ip4][..udp] [.98.103.253.115][41415] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...577] [ip4][..udp] [.160.71.213.140][32482] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 586 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 578|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 99]
new: [...579] [ip4][..udp] [...33.216.90.56][56415] -> [..165.144.84.62][..427]
detected: [...579] [ip4][..udp] [...33.216.90.56][56415] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...578] [ip4][..udp] [.98.103.253.115][41415] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...580] [ip4][..udp] [154.129.123.124][.6873] -> [.186.112.202.53][..427]
detected: [...580] [ip4][..udp] [154.129.123.124][.6873] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...579] [ip4][..udp] [...33.216.90.56][56415] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...581] [ip4][..udp] [.210.12.216.151][55745] -> [..90.145.180.58][..427]
detected: [...581] [ip4][..udp] [.210.12.216.151][55745] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...580] [ip4][..udp] [154.129.123.124][.6873] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 589 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 581|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 100]
new: [...582] [ip4][..udp] [..65.20.223.151][51977] -> [..90.147.171.51][..427]
detected: [...582] [ip4][..udp] [..65.20.223.151][51977] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...581] [ip4][..udp] [.210.12.216.151][55745] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...580] [ip4][..udp] [154.129.123.124][.6873] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 590 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 582|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 100]
new: [...583] [ip4][..udp] [..88.31.110.219][54342] -> [.165.114.202.61][..427]
detected: [...583] [ip4][..udp] [..88.31.110.219][54342] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...582] [ip4][..udp] [..65.20.223.151][51977] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 591 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 583|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 100]
new: [...584] [ip4][..udp] [206.206.184.241][50350] -> [..69.109.187.54][..427]
detected: [...584] [ip4][..udp] [206.206.184.241][50350] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...583] [ip4][..udp] [..88.31.110.219][54342] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...585] [ip4][..udp] [..190.35.225.89][52867] -> [...85.111.52.57][..427]
detected: [...585] [ip4][..udp] [..190.35.225.89][52867] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 593 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 585|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 100]
new: [...586] [ip4][..udp] [..227.7.178.223][63301] -> [..165.144.84.62][..427]
detected: [...586] [ip4][..udp] [..227.7.178.223][63301] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...584] [ip4][..udp] [206.206.184.241][50350] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...585] [ip4][..udp] [..190.35.225.89][52867] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 594 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 586|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 100]
new: [...587] [ip4][..udp] [.34.214.128.211][50699] -> [..74.111.203.55][..427]
detected: [...587] [ip4][..udp] [.34.214.128.211][50699] -> [..74.111.203.55][..427] [Service_Location_Protocol][AmazonAWS][RPC][Acceptable]
idle: [...586] [ip4][..udp] [..227.7.178.223][63301] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 595 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 587|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 100]
new: [...588] [ip4][..udp] [..67.159.16.150][44047] -> [...85.111.52.57][..427]
detected: [...588] [ip4][..udp] [..67.159.16.150][44047] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...587] [ip4][..udp] [.34.214.128.211][50699] -> [..74.111.203.55][..427] [Service_Location_Protocol][AmazonAWS][RPC][Acceptable]
DAEMON-EVENT: [Processed: 596 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 588|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 100]
new: [...589] [ip4][..udp] [231.223.121.213][38016] -> [..74.111.203.55][..427]
detected: [...589] [ip4][..udp] [231.223.121.213][38016] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...588] [ip4][..udp] [..67.159.16.150][44047] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 597 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 589|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 100]
new: [...590] [ip4][..udp] [.218.225.124.29][52381] -> [..69.109.187.54][..427]
detected: [...590] [ip4][..udp] [.218.225.124.29][52381] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...589] [ip4][..udp] [231.223.121.213][38016] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 598 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 590|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 100]
new: [...591] [ip4][..udp] [.200.31.144.158][47273] -> [..74.111.203.55][..427]
detected: [...591] [ip4][..udp] [.200.31.144.158][47273] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...590] [ip4][..udp] [.218.225.124.29][52381] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...592] [ip4][..udp] [..49.45.160.215][52110] -> [.165.114.202.61][..427]
detected: [...592] [ip4][..udp] [..49.45.160.215][52110] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...591] [ip4][..udp] [.200.31.144.158][47273] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 600 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 592|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 100]
new: [...593] [ip4][..udp] [.200.31.144.158][56053] -> [..69.109.187.54][..427]
detected: [...593] [ip4][..udp] [.200.31.144.158][56053] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...592] [ip4][..udp] [..49.45.160.215][52110] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 601 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 593|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 100]
new: [...594] [ip4][..udp] [.200.31.144.158][44785] -> [..90.147.171.51][..427]
detected: [...594] [ip4][..udp] [.200.31.144.158][44785] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...593] [ip4][..udp] [.200.31.144.158][56053] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 602 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 594|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 100]
new: [...595] [ip4][..udp] [.200.31.144.158][54403] -> [...90.141.37.56][..427]
detected: [...595] [ip4][..udp] [.200.31.144.158][54403] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...594] [ip4][..udp] [.200.31.144.158][44785] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...596] [ip4][..udp] [152.255.170.124][.5941] -> [...85.111.52.57][..427]
detected: [...596] [ip4][..udp] [152.255.170.124][.5941] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...595] [ip4][..udp] [.200.31.144.158][54403] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 604 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 596|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 100]
new: [...597] [ip4][..udp] [.200.31.144.158][41849] -> [..90.111.212.50][..427]
detected: [...597] [ip4][..udp] [.200.31.144.158][41849] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...596] [ip4][..udp] [152.255.170.124][.5941] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 605 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 597|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 100]
new: [...598] [ip4][..udp] [.200.31.144.158][55801] -> [.165.114.202.61][..427]
detected: [...598] [ip4][..udp] [.200.31.144.158][55801] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...597] [ip4][..udp] [.200.31.144.158][41849] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 606 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 598|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 100]
new: [...599] [ip4][..udp] [.200.31.144.158][59938] -> [..165.144.84.62][..427]
detected: [...599] [ip4][..udp] [.200.31.144.158][59938] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...598] [ip4][..udp] [.200.31.144.158][55801] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 607 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 599|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 100]
new: [...600] [ip4][..udp] [157.120.252.123][42800] -> [..90.147.171.51][..427]
detected: [...600] [ip4][..udp] [157.120.252.123][42800] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...599] [ip4][..udp] [.200.31.144.158][59938] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 608 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 600|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 100]
new: [...601] [ip4][..udp] [.155.185.93.215][16031] -> [..165.144.84.62][..427]
detected: [...601] [ip4][..udp] [.155.185.93.215][16031] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...600] [ip4][..udp] [157.120.252.123][42800] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 609 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 601|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 100]
new: [...602] [ip4][..udp] [....174.50.7.11][49286] -> [.186.112.202.53][..427]
detected: [...602] [ip4][..udp] [....174.50.7.11][49286] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...601] [ip4][..udp] [.155.185.93.215][16031] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 610 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 602|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 100]
new: [...603] [ip4][..udp] [..89.214.56.129][54129] -> [..74.111.203.55][..427]
detected: [...603] [ip4][..udp] [..89.214.56.129][54129] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...602] [ip4][..udp] [....174.50.7.11][49286] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 611 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 603|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 100]
new: [...604] [ip4][..udp] [.166.209.36.168][54765] -> [...90.141.37.56][..427]
detected: [...604] [ip4][..udp] [.166.209.36.168][54765] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...603] [ip4][..udp] [..89.214.56.129][54129] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 612 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 604|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 100]
new: [...605] [ip4][..udp] [..70.191.37.189][53867] -> [..90.145.180.58][..427]
detected: [...605] [ip4][..udp] [..70.191.37.189][53867] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...604] [ip4][..udp] [.166.209.36.168][54765] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...606] [ip4][..udp] [..166.70.59.181][28945] -> [..69.109.187.54][..427]
detected: [...606] [ip4][..udp] [..166.70.59.181][28945] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...605] [ip4][..udp] [..70.191.37.189][53867] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...607] [ip4][..udp] [.88.192.213.176][12807] -> [.165.114.202.61][..427]
detected: [...607] [ip4][..udp] [.88.192.213.176][12807] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...606] [ip4][..udp] [..166.70.59.181][28945] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...608] [ip4][..udp] [.88.192.213.176][12807] -> [..165.144.84.62][..427]
detected: [...608] [ip4][..udp] [.88.192.213.176][12807] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...606] [ip4][..udp] [..166.70.59.181][28945] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
update: [...607] [ip4][..udp] [.88.192.213.176][12807] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...609] [ip4][..udp] [..95.185.37.180][56601] -> [...85.111.52.57][..427]
detected: [...609] [ip4][..udp] [..95.185.37.180][56601] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...608] [ip4][..udp] [.88.192.213.176][12807] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...606] [ip4][..udp] [..166.70.59.181][28945] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...607] [ip4][..udp] [.88.192.213.176][12807] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 617 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 609|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 103]
new: [...610] [ip4][..udp] [..88.63.218.184][57760] -> [.186.112.202.53][..427]
detected: [...610] [ip4][..udp] [..88.63.218.184][57760] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...609] [ip4][..udp] [..95.185.37.180][56601] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 618 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 610|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 103]
new: [...611] [ip4][..udp] [.95.190.219.185][65399] -> [..90.111.212.50][..427]
detected: [...611] [ip4][..udp] [.95.190.219.185][65399] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...610] [ip4][..udp] [..88.63.218.184][57760] -> [.186.112.202.53][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...612] [ip4][..udp] [...71.64.36.183][43664] -> [..90.147.171.51][..427]
detected: [...612] [ip4][..udp] [...71.64.36.183][43664] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...611] [ip4][..udp] [.95.190.219.185][65399] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...613] [ip4][..udp] [..64.56.203.178][58318] -> [..74.111.203.55][..427]
detected: [...613] [ip4][..udp] [..64.56.203.178][58318] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 621 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 613|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 103]
new: [...614] [ip4][..udp] [.93.102.124.112][43680] -> [..69.109.187.54][..427]
detected: [...614] [ip4][..udp] [.93.102.124.112][43680] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...613] [ip4][..udp] [..64.56.203.178][58318] -> [..74.111.203.55][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...612] [ip4][..udp] [...71.64.36.183][43664] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 622 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 614|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 103]
new: [...615] [ip4][..udp] [..185.27.37.156][54712] -> [..90.145.180.58][..427]
detected: [...615] [ip4][..udp] [..185.27.37.156][54712] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...614] [ip4][..udp] [.93.102.124.112][43680] -> [..69.109.187.54][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 623 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 615|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 103]
new: [...616] [ip4][..udp] [186.213.158.225][53551] -> [..90.111.212.50][..427]
detected: [...616] [ip4][..udp] [186.213.158.225][53551] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...615] [ip4][..udp] [..185.27.37.156][54712] -> [..90.145.180.58][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 624 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 616|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 103]
new: [...617] [ip4][..udp] [..167.7.154.125][55642] -> [...90.141.37.56][..427]
detected: [...617] [ip4][..udp] [..167.7.154.125][55642] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...616] [ip4][..udp] [186.213.158.225][53551] -> [..90.111.212.50][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 625 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 1 / 617|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 103]
new: [...618] [ip4][..udp] [.70.216.186.103][52251] -> [..90.147.171.51][..427]
detected: [...618] [ip4][..udp] [.70.216.186.103][52251] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...617] [ip4][..udp] [..167.7.154.125][55642] -> [...90.141.37.56][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...619] [ip4][..udp] [..67.159.16.150][26319] -> [.165.114.202.61][..427]
detected: [...619] [ip4][..udp] [..67.159.16.150][26319] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: [Processed: 627 pkts][ZLib][compressions: 0|diff: 0 / 0]
DAEMON-EVENT: [Flows][active: 2 / 619|skipped: 0|!detected: 0|guessed: 0|detection-updates: 0|updates: 103]
new: [...620] [ip4][..udp] [....58.22.67.22][52092] -> [...85.111.52.57][..427]
detected: [...620] [ip4][..udp] [....58.22.67.22][52092] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...618] [ip4][..udp] [.70.216.186.103][52251] -> [..90.147.171.51][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...619] [ip4][..udp] [..67.159.16.150][26319] -> [.165.114.202.61][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
new: [...621] [ip4][..udp] [..217.39.155.99][51503] -> [..165.144.84.62][..427]
detected: [...621] [ip4][..udp] [..217.39.155.99][51503] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...620] [ip4][..udp] [....58.22.67.22][52092] -> [...85.111.52.57][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
idle: [...621] [ip4][..udp] [..217.39.155.99][51503] -> [..165.144.84.62][..427] [Service_Location_Protocol][Unknown][RPC][Acceptable]
DAEMON-EVENT: shutdown
|