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
|
-----------------------------------------------------------
* NOTE: This is demo app to show *some* nDPI features.
* In this demo we have implemented only some basic features
* just to show you what you can do with the library. Feel
* free to extend it and send us the patches for inclusion
------------------------------------------------------------
Using nDPI (1.7.1-dev-282-278a067) [1 thread(s)]
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size is 135
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 0 as entry 0
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 1 as entry 1
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 2 as entry 2
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 5 as entry 3
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 6 as entry 4
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 7 as entry 5
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 8 as entry 6
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 10 as entry 7
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_no_payload, additional adding buffer 10 to no_payload process
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 11 as entry 8
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 12 as entry 9
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 13 as entry 10
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 14 as entry 11
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 15 as entry 12
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 16 as entry 13
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_no_payload, additional adding buffer 16 to no_payload process
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 17 as entry 14
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 18 as entry 15
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 19 as entry 16
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 20 as entry 17
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 21 as entry 18
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_no_payload, additional adding buffer 21 to no_payload process
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 22 as entry 19
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 23 as entry 20
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 24 as entry 21
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 25 as entry 22
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 26 as entry 23
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 27 as entry 24
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 29 as entry 25
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 30 as entry 26
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 31 as entry 27
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 32 as entry 28
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 33 as entry 29
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 34 as entry 30
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 38 as entry 31
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 40 as entry 32
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 42 as entry 33
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 43 as entry 34
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 44 as entry 35
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_no_payload, additional adding buffer 44 to no_payload process
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 46 as entry 36
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 47 as entry 37
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_no_payload, additional adding buffer 47 to no_payload process
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 49 as entry 38
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 50 as entry 39
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 51 as entry 40
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 52 as entry 41
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 54 as entry 42
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 56 as entry 43
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 57 as entry 44
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 58 as entry 45
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 59 as entry 46
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 62 as entry 47
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 65 as entry 48
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 66 as entry 49
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 67 as entry 50
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 68 as entry 51
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 69 as entry 52
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 70 as entry 53
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 71 as entry 54
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 72 as entry 55
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 73 as entry 56
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 75 as entry 57
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 76 as entry 58
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 77 as entry 59
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 78 as entry 60
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 80 as entry 61
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 81 as entry 62
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 82 as entry 63
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 84 as entry 64
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 85 as entry 65
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 86 as entry 66
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 87 as entry 67
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 88 as entry 68
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 89 as entry 69
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 90 as entry 70
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 91 as entry 71
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 92 as entry 72
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 93 as entry 73
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 96 as entry 74
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 98 as entry 75
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 99 as entry 76
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 101 as entry 77
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 104 as entry 78
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 105 as entry 79
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 106 as entry 80
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 107 as entry 81
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 108 as entry 82
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 110 as entry 83
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 111 as entry 84
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 112 as entry 85
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 113 as entry 86
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 114 as entry 87
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 115 as entry 88
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 116 as entry 89
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 117 as entry 90
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 118 as entry 91
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_no_payload, additional adding buffer 118 to no_payload process
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 119 as entry 92
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 120 as entry 93
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_no_payload, additional adding buffer 120 to no_payload process
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 122 as entry 94
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 124 as entry 95
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 125 as entry 96
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_no_payload, additional adding buffer 125 to no_payload process
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 126 as entry 97
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_no_payload, additional adding buffer 126 to no_payload process
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 133 as entry 98
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_payload, adding buffer 134 as entry 99
08/Feb/2016 22:56:52 DEBUG: callback_buffer_tcp_no_payload, additional adding buffer 134 to no_payload process
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 1 as entry 0
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 3 as entry 1
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 4 as entry 2
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 5 as entry 3
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 7 as entry 4
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 8 as entry 5
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 9 as entry 6
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 10 as entry 7
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 12 as entry 8
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 14 as entry 9
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 15 as entry 10
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 16 as entry 11
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 17 as entry 12
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 21 as entry 13
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 26 as entry 14
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 28 as entry 15
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 29 as entry 16
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 31 as entry 17
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 32 as entry 18
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 33 as entry 19
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 34 as entry 20
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 35 as entry 21
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 36 as entry 22
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 37 as entry 23
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 38 as entry 24
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 39 as entry 25
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 41 as entry 26
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 42 as entry 27
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 44 as entry 28
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 45 as entry 29
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 46 as entry 30
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 47 as entry 31
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 48 as entry 32
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 53 as entry 33
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 54 as entry 34
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 55 as entry 35
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 60 as entry 36
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 61 as entry 37
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 62 as entry 38
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 63 as entry 39
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 64 as entry 40
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 67 as entry 41
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 70 as entry 42
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 73 as entry 43
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 74 as entry 44
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 75 as entry 45
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 76 as entry 46
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 77 as entry 47
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 78 as entry 48
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 79 as entry 49
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 83 as entry 50
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 86 as entry 51
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 87 as entry 52
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 92 as entry 53
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 94 as entry 54
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 95 as entry 55
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 96 as entry 56
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 97 as entry 57
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 100 as entry 58
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 102 as entry 59
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 103 as entry 60
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 104 as entry 61
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 105 as entry 62
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 106 as entry 63
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 107 as entry 64
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 108 as entry 65
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 109 as entry 66
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 112 as entry 67
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 120 as entry 68
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 121 as entry 69
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 123 as entry 70
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 126 as entry 71
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 127 as entry 72
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 128 as entry 73
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 129 as entry 74
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 130 as entry 75
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 131 as entry 76
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 132 as entry 77
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 133 as entry 78
08/Feb/2016 22:56:52 DEBUG: callback_buffer_size_udp: adding buffer : 134 as entry 79
Reading packets from pcap file ../../coap.pcap...
Running thread 0...
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: CoAP detection...
08/Feb/2016 22:56:52 DEBUG: ====>>>> COAP: C�� [len: 93]
08/Feb/2016 22:56:52 DEBUG: Starcraft protocol detection...
08/Feb/2016 22:56:52 DEBUG: Starcraft excluded
08/Feb/2016 22:56:52 DEBUG: search stun.
08/Feb/2016 22:56:52 DEBUG: exclude rtp.
08/Feb/2016 22:56:52 TRACE: RTSP detection...
08/Feb/2016 22:56:52 DEBUG: maybe handshake 1; need next packet, return.
08/Feb/2016 22:56:52 DEBUG: sip detection...
08/Feb/2016 22:56:52 DEBUG: need next packet.
08/Feb/2016 22:56:52 DEBUG: searching for HEP.
08/Feb/2016 22:56:52 DEBUG: exclude HEP.
08/Feb/2016 22:56:52 DEBUG: EDONKEY detection...
08/Feb/2016 22:56:52 DEBUG: EDONKEY stage 0:
08/Feb/2016 22:56:52 DEBUG: excluded at stage 0
08/Feb/2016 22:56:52 DEBUG: search yahoo
08/Feb/2016 22:56:52 TRACE: JABBER detection....
08/Feb/2016 22:56:52 DEBUG: packet_counter: 1
08/Feb/2016 22:56:52 DEBUG: search DNS.
08/Feb/2016 22:56:52 DEBUG: exclude vmware.
08/Feb/2016 22:56:52 DEBUG: UDP FOUND
08/Feb/2016 22:56:52 DEBUG: iMesh UDP packetlen: 93
08/Feb/2016 22:56:52 DEBUG: search tvants.
08/Feb/2016 22:56:52 DEBUG: exclude tvants.
08/Feb/2016 22:56:52 DEBUG: search sopcast.
08/Feb/2016 22:56:52 DEBUG: exclude sopcast.
08/Feb/2016 22:56:52 DEBUG: search tvuplayer.
08/Feb/2016 22:56:52 DEBUG: exclude tvuplayer.
08/Feb/2016 22:56:52 DEBUG: exclude ppstream.
08/Feb/2016 22:56:52 DEBUG: PPLIVE detection...
08/Feb/2016 22:56:52 DEBUG: PPLIVE stage 0:
08/Feb/2016 22:56:52 DEBUG: PPLIVE stage 0:
08/Feb/2016 22:56:52 DEBUG: PPLIVE stage 0:
08/Feb/2016 22:56:52 DEBUG: exclude MGCP.
08/Feb/2016 22:56:52 DEBUG: ZATTOO: discarded the flow (UDP): packet_size: 93; Flowstage: 0
08/Feb/2016 22:56:52 DEBUG: exclude zattoo.
08/Feb/2016 22:56:52 DEBUG: search qq udp.
08/Feb/2016 22:56:52 DEBUG: QQ excluded
08/Feb/2016 22:56:52 DEBUG: excluding thunder udp at stage 0
08/Feb/2016 22:56:52 TRACE: TEAMWIEWER detection...
08/Feb/2016 22:56:52 DEBUG: search socrates.
08/Feb/2016 22:56:52 DEBUG: exclude socrates.
08/Feb/2016 22:56:52 DEBUG: STEAM detection...
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: NTP excluded.
08/Feb/2016 22:56:52 DEBUG: NFS user match stage 1
08/Feb/2016 22:56:52 DEBUG: NFS user match stage 2
08/Feb/2016 22:56:52 DEBUG: search ssdp.
08/Feb/2016 22:56:52 DEBUG: ssdp excluded.
08/Feb/2016 22:56:52 DEBUG: Quake excluded.
08/Feb/2016 22:56:52 DEBUG: SNMP excluded.
08/Feb/2016 22:56:52 DEBUG: search syslog
08/Feb/2016 22:56:52 DEBUG: no syslog detected.
08/Feb/2016 22:56:52 DEBUG: netbios udp start
08/Feb/2016 22:56:52 DEBUG: exclude netbios
08/Feb/2016 22:56:52 DEBUG: MDNS udp start
08/Feb/2016 22:56:52 DEBUG: search ipp
08/Feb/2016 22:56:52 DEBUG: searching for a payload with a pattern like 'number(1to8)blanknumber(1to3)ipp://.
08/Feb/2016 22:56:52 DEBUG: payload does not begin with a number.
08/Feb/2016 22:56:52 DEBUG: no ipp detected.
08/Feb/2016 22:56:52 DEBUG: search ldap
08/Feb/2016 22:56:52 DEBUG: ldap excluded.
08/Feb/2016 22:56:52 DEBUG: search WARCRAFT3
08/Feb/2016 22:56:52 DEBUG: no warcraft3 detected.
08/Feb/2016 22:56:52 DEBUG: search xdmcp.
08/Feb/2016 22:56:52 DEBUG: exclude xdmcp.
08/Feb/2016 22:56:52 DEBUG: search TFTP.
08/Feb/2016 22:56:52 DEBUG: exclude TFTP.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 50
08/Feb/2016 22:56:52 DEBUG: search aimini.
08/Feb/2016 22:56:52 DEBUG: exclude aimini.
08/Feb/2016 22:56:52 DEBUG: search florensia.
08/Feb/2016 22:56:52 DEBUG: exclude florensia.
08/Feb/2016 22:56:52 DEBUG: search crossfire.
08/Feb/2016 22:56:52 DEBUG: exclude crossfire.
08/Feb/2016 22:56:52 DEBUG: search armagetron.
08/Feb/2016 22:56:52 DEBUG: exclude armagetron.
08/Feb/2016 22:56:52 DEBUG: dropbox detection...
08/Feb/2016 22:56:52 DEBUG: exclude dropbox.
08/Feb/2016 22:56:52 DEBUG: spotify detection...
08/Feb/2016 22:56:52 DEBUG: exclude spotify.
08/Feb/2016 22:56:52 DEBUG: radius detection...
08/Feb/2016 22:56:52 DEBUG: gtp detection...
08/Feb/2016 22:56:52 DEBUG: netflow detection...
08/Feb/2016 22:56:52 DEBUG: sflow detection...
08/Feb/2016 22:56:52 DEBUG: search H323.
08/Feb/2016 22:56:52 DEBUG: calculated dport over udp.
08/Feb/2016 22:56:52 DEBUG: search for NOE.
08/Feb/2016 22:56:52 DEBUG: calculating dport over udp.
08/Feb/2016 22:56:52 DEBUG: search CISCOVPN.
08/Feb/2016 22:56:52 DEBUG: calculated CISCOVPN over udp ports.
08/Feb/2016 22:56:52 DEBUG: exclude CISCOVPN.
08/Feb/2016 22:56:52 DEBUG: TEAMSPEAK excluded.
08/Feb/2016 22:56:52 DEBUG: search for VIBER.
08/Feb/2016 22:56:52 DEBUG: calculating dport over udp.
08/Feb/2016 22:56:52 DEBUG: exclude VIBER.
08/Feb/2016 22:56:52 DEBUG: search for RTCP.
08/Feb/2016 22:56:52 DEBUG: exclude RTCP.
08/Feb/2016 22:56:52 TRACE: PANDO detection...
08/Feb/2016 22:56:52 DEBUG: PANDO stage 0:
08/Feb/2016 22:56:52 DEBUG: search for MEGACO.
08/Feb/2016 22:56:52 DEBUG: exclude MEGACO.
08/Feb/2016 22:56:52 TRACE: VHUA detection...
08/Feb/2016 22:56:52 TRACE: TELEGRAM detection...
08/Feb/2016 22:56:52 DEBUG: calculating quic over udp.
08/Feb/2016 22:56:52 DEBUG: exclude quic.
08/Feb/2016 22:56:52 DEBUG: Exclude eaq.
08/Feb/2016 22:56:52 DEBUG: Exclude kakaotalk_voice.
08/Feb/2016 22:56:52 DEBUG: search for MPEGTS.
08/Feb/2016 22:56:52 DEBUG: Excluded MPEGTS.
08/Feb/2016 22:56:52 TRACE: UBNTAC2 detection... plen:93 62202:5683
08/Feb/2016 22:56:52 DEBUG: CoAP detection...
08/Feb/2016 22:56:52 DEBUG: ====>>>> COAP: C�� [len: 93]
08/Feb/2016 22:56:52 DEBUG: skype detection...
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: HTTP detection...
08/Feb/2016 22:56:52 DEBUG: HTTP stage 0:
08/Feb/2016 22:56:52 DEBUG: ====>>>> HTTP: 2T08/Feb/2016 22:56:52 DEBUG: Filename HTTP not found, we look for possible truncate flow...
08/Feb/2016 22:56:52 DEBUG: Exclude HTTP
08/Feb/2016 22:56:52 DEBUG: Starcraft protocol detection...
08/Feb/2016 22:56:52 DEBUG: Starcraft excluded
08/Feb/2016 22:56:52 DEBUG: search ssl
08/Feb/2016 22:56:52 DEBUG: first ssl packet
08/Feb/2016 22:56:52 DEBUG: exclude ssl
08/Feb/2016 22:56:52 TRACE: RTSP detection...
08/Feb/2016 22:56:52 DEBUG: maybe handshake 1; need next packet, return.
08/Feb/2016 22:56:52 DEBUG: sip detection...
08/Feb/2016 22:56:52 DEBUG: exclude sip.
08/Feb/2016 22:56:52 DEBUG: searching for HEP.
08/Feb/2016 22:56:52 DEBUG: exclude HEP.
08/Feb/2016 22:56:52 DEBUG: EDONKEY detection...
08/Feb/2016 22:56:52 DEBUG: EDONKEY stage 0:
08/Feb/2016 22:56:52 TRACE: fasttrack/kazaa excluded.
08/Feb/2016 22:56:52 TRACE: MSN tcp detection...
08/Feb/2016 22:56:52 DEBUG: msn 7.
08/Feb/2016 22:56:52 TRACE: MSN tcp excluded.
08/Feb/2016 22:56:52 DEBUG: search yahoo
08/Feb/2016 22:56:52 DEBUG: OSCAR :: TCP
08/Feb/2016 22:56:52 DEBUG: search applejuice.
08/Feb/2016 22:56:52 DEBUG: exclude applejuice.
08/Feb/2016 22:56:52 DEBUG: Soulseek: search soulseec tcp
08/Feb/2016 22:56:52 DEBUG: irc : search irc
08/Feb/2016 22:56:52 DEBUG: called ndpi_search_irc_ssl_detect_ninty_percent_but_very_fast
08/Feb/2016 22:56:52 DEBUG: detected_irc:08/Feb/2016 22:56:52 TRACE: JABBER detection....
08/Feb/2016 22:56:52 DEBUG: packet_counter: 1
08/Feb/2016 22:56:52 DEBUG: search mail_pop
08/Feb/2016 22:56:52 DEBUG: exclude mail_pop
08/Feb/2016 22:56:52 DEBUG: search IMAP.
08/Feb/2016 22:56:52 DEBUG: exclude IMAP.
08/Feb/2016 22:56:52 DEBUG: search mail_smtp.
08/Feb/2016 22:56:52 DEBUG: exclude smtp
08/Feb/2016 22:56:52 DEBUG: USENET: search usenet.
08/Feb/2016 22:56:52 DEBUG: USENET: STAGE IS 0.
08/Feb/2016 22:56:52 DEBUG: USENET: exclude usenet.
08/Feb/2016 22:56:52 DEBUG: search DNS.
08/Feb/2016 22:56:52 DEBUG: TCP FOUND :: Payload 86
08/Feb/2016 22:56:52 DEBUG: search tvants.
08/Feb/2016 22:56:52 DEBUG: exclude tvants.
08/Feb/2016 22:56:52 DEBUG: exclude sopcast TCP.
08/Feb/2016 22:56:52 DEBUG: search tvuplayer.
08/Feb/2016 22:56:52 DEBUG: exclude tvuplayer.
08/Feb/2016 22:56:52 DEBUG: exclude ppstream.
08/Feb/2016 22:56:52 DEBUG: ZATTOO: discarted the flow (TCP): packet_size: 86; Flowstage: 0
08/Feb/2016 22:56:52 DEBUG: exclude zattoo.
08/Feb/2016 22:56:52 DEBUG: excluding ssh at stage 0
08/Feb/2016 22:56:52 DEBUG: excluding thunder tcp at stage 0
08/Feb/2016 22:56:52 TRACE: TEAMWIEWER detection...
08/Feb/2016 22:56:52 DEBUG: search socrates.
08/Feb/2016 22:56:52 DEBUG: exclude socrates.
08/Feb/2016 22:56:52 DEBUG: STEAM detection...
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: exclude activesync
08/Feb/2016 22:56:52 DEBUG: search SMB.
08/Feb/2016 22:56:52 DEBUG: exclude SMB.
08/Feb/2016 22:56:52 DEBUG: search telnet.
08/Feb/2016 22:56:52 DEBUG: NFS user match stage 1
08/Feb/2016 22:56:52 DEBUG: Search World of Warcraft.
08/Feb/2016 22:56:52 DEBUG: search icecast.
08/Feb/2016 22:56:52 DEBUG: Icecast excluded.
08/Feb/2016 22:56:52 DEBUG: search shoutcast.
08/Feb/2016 22:56:52 DEBUG: Shoutcast excluded.
08/Feb/2016 22:56:52 DEBUG: no KERBEROS detected.
08/Feb/2016 22:56:52 DEBUG: search syslog
08/Feb/2016 22:56:52 DEBUG: no syslog detected.
08/Feb/2016 22:56:52 DEBUG: DDL: Packet too small.
08/Feb/2016 22:56:52 DEBUG: Nothing Found
08/Feb/2016 22:56:52 DEBUG: netbios tcp start
08/Feb/2016 22:56:52 DEBUG: exclude netbios
08/Feb/2016 22:56:52 DEBUG: search ipp
08/Feb/2016 22:56:52 DEBUG: searching for a payload with a pattern like 'number(1to8)blanknumber(1to3)ipp://.
08/Feb/2016 22:56:52 DEBUG: read symbols while the symbol is a number.
08/Feb/2016 22:56:52 DEBUG: there is no blank following the number.
08/Feb/2016 22:56:52 DEBUG: no ipp detected.
08/Feb/2016 22:56:52 DEBUG: search ldap
08/Feb/2016 22:56:52 DEBUG: ldap excluded.
08/Feb/2016 22:56:52 DEBUG: search WARCRAFT3
08/Feb/2016 22:56:52 DEBUG: no warcraft3 detected.
08/Feb/2016 22:56:52 DEBUG: search xdmcp.
08/Feb/2016 22:56:52 DEBUG: exclude xdmcp.
08/Feb/2016 22:56:52 DEBUG: search mssql.
08/Feb/2016 22:56:52 DEBUG: exclude mssql.
08/Feb/2016 22:56:52 DEBUG: exclude pptp.
08/Feb/2016 22:56:52 DEBUG: exclude stealthnet.
08/Feb/2016 22:56:52 DEBUG: search meebo.
08/Feb/2016 22:56:52 DEBUG: flash not yet excluded. need next packet.
08/Feb/2016 22:56:52 DEBUG: AFP excluded.
08/Feb/2016 22:56:52 DEBUG: search aimini.
08/Feb/2016 22:56:52 DEBUG: exclude aimini.
08/Feb/2016 22:56:52 DEBUG: search florensia.
08/Feb/2016 22:56:52 DEBUG: exclude florensia.
08/Feb/2016 22:56:52 DEBUG: exclude maplestory.
08/Feb/2016 22:56:52 DEBUG: exclude dofus.
08/Feb/2016 22:56:52 DEBUG: search world_of_kung_fu.
08/Feb/2016 22:56:52 DEBUG: exclude world_of_kung_fu.
08/Feb/2016 22:56:52 DEBUG: search fiesta.
08/Feb/2016 22:56:52 DEBUG: exclude fiesta.
08/Feb/2016 22:56:52 DEBUG: search crossfire.
08/Feb/2016 22:56:52 DEBUG: exclude crossfire.
08/Feb/2016 22:56:52 DEBUG: search guildwars.
08/Feb/2016 22:56:52 DEBUG: exclude guildwars.
08/Feb/2016 22:56:52 DEBUG: spotify detection...
08/Feb/2016 22:56:52 DEBUG: exclude spotify.
08/Feb/2016 22:56:52 DEBUG: citrix detection...
08/Feb/2016 22:56:52 DEBUG: lotus_notes detection...
08/Feb/2016 22:56:52 DEBUG: search H323.
08/Feb/2016 22:56:52 DEBUG: calculated dport over tcp.
08/Feb/2016 22:56:52 DEBUG: search for NOE.
08/Feb/2016 22:56:52 DEBUG: exclude NOE.
08/Feb/2016 22:56:52 DEBUG: search CISCOVPN.
08/Feb/2016 22:56:52 DEBUG: calculated CISCOVPN over tcp ports.
08/Feb/2016 22:56:52 DEBUG: exclude CISCOVPN.
08/Feb/2016 22:56:52 DEBUG: TEAMSPEAK excluded.
08/Feb/2016 22:56:52 DEBUG: search for TOR.
08/Feb/2016 22:56:52 DEBUG: calculating TOR over tcp.
08/Feb/2016 22:56:52 DEBUG: search for SKINNY.
08/Feb/2016 22:56:52 DEBUG: calculating SKINNY over tcp.
08/Feb/2016 22:56:52 DEBUG: search for RTCP.
08/Feb/2016 22:56:52 DEBUG: calculating dport over tcp.
08/Feb/2016 22:56:52 DEBUG: search for RSYNC.
08/Feb/2016 22:56:52 DEBUG: calculating RSYNC over tcp.
08/Feb/2016 22:56:52 TRACE: WHOIS Excluded.
08/Feb/2016 22:56:52 DEBUG: search for ORACLE.
08/Feb/2016 22:56:52 DEBUG: calculating ORACLE over tcp.
08/Feb/2016 22:56:52 DEBUG: search for CORBA.
08/Feb/2016 22:56:52 DEBUG: calculating CORBA over tcp.
08/Feb/2016 22:56:52 DEBUG: RTMP detection...
08/Feb/2016 22:56:52 DEBUG: RTMP stage 0:
08/Feb/2016 22:56:52 DEBUG: FTP_CONTROL detection...
08/Feb/2016 22:56:52 DEBUG: FTP_CONTROL stage 0:
08/Feb/2016 22:56:52 DEBUG: FTP_DATA detection...
08/Feb/2016 22:56:52 TRACE: PANDO detection...
08/Feb/2016 22:56:52 DEBUG: PANDO stage 0:
08/Feb/2016 22:56:52 DEBUG: Redis detection...
08/Feb/2016 22:56:52 TRACE: ZMQ detection...
08/Feb/2016 22:56:52 TRACE: TELEGRAM detection...
08/Feb/2016 22:56:52 DEBUG: skype detection...
08/Feb/2016 22:56:52 DEBUG: stage 0 has no direct detection, fall through
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: CoAP detection...
08/Feb/2016 22:56:52 DEBUG: ====>>>> COAP: cD�� [len: 19]
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 0
08/Feb/2016 22:56:52 DEBUG: search stun.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 2
08/Feb/2016 22:56:52 TRACE: RTSP detection...
08/Feb/2016 22:56:52 DEBUG: didn't find handshake, exclude.
08/Feb/2016 22:56:52 DEBUG: sip detection...
08/Feb/2016 22:56:52 DEBUG: need next packet.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 5
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 6
08/Feb/2016 22:56:52 DEBUG: EDONKEY detection...
08/Feb/2016 22:56:52 DEBUG: EDONKEY stage 0:
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 8
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 9
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 10
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 11
08/Feb/2016 22:56:52 TRACE: JABBER detection....
08/Feb/2016 22:56:52 DEBUG: packet_counter: 2
08/Feb/2016 22:56:52 DEBUG: search DNS.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 15
08/Feb/2016 22:56:52 DEBUG: UDP FOUND
08/Feb/2016 22:56:52 DEBUG: iMesh UDP packetlen: 19
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 17
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 18
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 19
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 20
08/Feb/2016 22:56:52 DEBUG: PPLIVE detection...
08/Feb/2016 22:56:52 DEBUG: PPLIVE stage 0:
08/Feb/2016 22:56:52 DEBUG: PPLIVE stage 0:
08/Feb/2016 22:56:52 DEBUG: PPLIVE stage 0:
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 22
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 23
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 24
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 25
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 26
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 27
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 28
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 29
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 30
08/Feb/2016 22:56:52 DEBUG: STEAM detection...
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 32
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 33
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 34
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 35
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 36
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 37
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 38
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 39
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 40
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 41
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 42
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 43
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 44
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 45
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 46
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 47
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 48
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 49
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 50
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 51
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 52
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 53
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 54
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 55
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 56
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 57
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 58
08/Feb/2016 22:56:52 DEBUG: netflow detection...
08/Feb/2016 22:56:52 DEBUG: sflow detection...
08/Feb/2016 22:56:52 DEBUG: search H323.
08/Feb/2016 22:56:52 DEBUG: calculated dport over udp.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 62
08/Feb/2016 22:56:52 DEBUG: search for NOE.
08/Feb/2016 22:56:52 DEBUG: calculating dport over udp.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 64
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 65
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 66
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 67
08/Feb/2016 22:56:52 TRACE: PANDO detection...
08/Feb/2016 22:56:52 DEBUG: PANDO stage 0:
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 69
08/Feb/2016 22:56:52 TRACE: VHUA detection...
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 71
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 72
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 73
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 74
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 75
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 76
08/Feb/2016 22:56:52 DEBUG: CoAP detection...
08/Feb/2016 22:56:52 DEBUG: ====>>>> COAP: cD�� [len: 19]
08/Feb/2016 22:56:52 DEBUG: skype detection...
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 TRACE: RTSP detection...
08/Feb/2016 22:56:52 DEBUG: didn't find handshake, exclude.
08/Feb/2016 22:56:52 DEBUG: EDONKEY detection...
08/Feb/2016 22:56:52 DEBUG: EDONKEY stage 0:
08/Feb/2016 22:56:52 DEBUG: OSCAR :: TCP
08/Feb/2016 22:56:52 DEBUG: irc : search irc
08/Feb/2016 22:56:52 DEBUG: called ndpi_search_irc_ssl_detect_ninty_percent_but_very_fast
08/Feb/2016 22:56:52 DEBUG: detected_irc:08/Feb/2016 22:56:52 TRACE: JABBER detection....
08/Feb/2016 22:56:52 DEBUG: packet_counter: 2
08/Feb/2016 22:56:52 DEBUG: search DNS.
08/Feb/2016 22:56:52 DEBUG: TCP FOUND :: Payload 4
08/Feb/2016 22:56:52 DEBUG: STEAM detection...
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: search telnet.
08/Feb/2016 22:56:52 DEBUG: search meebo.
08/Feb/2016 22:56:52 DEBUG: flash not yet excluded. need next packet.
08/Feb/2016 22:56:52 DEBUG: citrix detection...
08/Feb/2016 22:56:52 DEBUG: lotus_notes detection...
08/Feb/2016 22:56:52 DEBUG: search H323.
08/Feb/2016 22:56:52 DEBUG: calculated dport over tcp.
08/Feb/2016 22:56:52 DEBUG: search for TOR.
08/Feb/2016 22:56:52 DEBUG: calculating TOR over tcp.
08/Feb/2016 22:56:52 DEBUG: search for SKINNY.
08/Feb/2016 22:56:52 DEBUG: calculating SKINNY over tcp.
08/Feb/2016 22:56:52 DEBUG: search for RTCP.
08/Feb/2016 22:56:52 DEBUG: calculating dport over tcp.
08/Feb/2016 22:56:52 DEBUG: search for RSYNC.
08/Feb/2016 22:56:52 DEBUG: calculating RSYNC over tcp.
08/Feb/2016 22:56:52 DEBUG: search for ORACLE.
08/Feb/2016 22:56:52 DEBUG: calculating ORACLE over tcp.
08/Feb/2016 22:56:52 DEBUG: search for CORBA.
08/Feb/2016 22:56:52 DEBUG: calculating CORBA over tcp.
08/Feb/2016 22:56:52 DEBUG: RTMP detection...
08/Feb/2016 22:56:52 DEBUG: RTMP stage 0:
08/Feb/2016 22:56:52 DEBUG: FTP_CONTROL detection...
08/Feb/2016 22:56:52 DEBUG: FTP_CONTROL stage 0:
08/Feb/2016 22:56:52 TRACE: PANDO detection...
08/Feb/2016 22:56:52 DEBUG: PANDO stage 0:
08/Feb/2016 22:56:52 DEBUG: Redis detection...
08/Feb/2016 22:56:52 DEBUG: Exclude Redis.
08/Feb/2016 22:56:52 TRACE: ZMQ detection...
08/Feb/2016 22:56:52 DEBUG: skype detection...
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: EDONKEY detection...
08/Feb/2016 22:56:52 DEBUG: EDONKEY stage 0:
08/Feb/2016 22:56:52 TRACE: JABBER detection....
08/Feb/2016 22:56:52 DEBUG: STEAM detection...
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: FTP_CONTROL detection...
08/Feb/2016 22:56:52 DEBUG: FTP_CONTROL stage 0:
08/Feb/2016 22:56:52 TRACE: PANDO detection...
08/Feb/2016 22:56:52 DEBUG: PANDO stage 0:
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: EDONKEY detection...
08/Feb/2016 22:56:52 DEBUG: EDONKEY stage 0:
08/Feb/2016 22:56:52 DEBUG: irc : search irc
08/Feb/2016 22:56:52 DEBUG: called ndpi_search_irc_ssl_detect_ninty_percent_but_very_fast
08/Feb/2016 22:56:52 DEBUG: detected_irc:08/Feb/2016 22:56:52 TRACE: JABBER detection....
08/Feb/2016 22:56:52 TRACE: JABBER Excluded.
08/Feb/2016 22:56:52 DEBUG: search DNS.
08/Feb/2016 22:56:52 DEBUG: TCP FOUND :: Payload 60
08/Feb/2016 22:56:52 DEBUG: STEAM detection...
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: search telnet.
08/Feb/2016 22:56:52 DEBUG: search meebo.
08/Feb/2016 22:56:52 DEBUG: flash not yet excluded. need next packet.
08/Feb/2016 22:56:52 DEBUG: citrix detection...
08/Feb/2016 22:56:52 DEBUG: lotus_notes detection...
08/Feb/2016 22:56:52 DEBUG: search H323.
08/Feb/2016 22:56:52 DEBUG: calculated dport over tcp.
08/Feb/2016 22:56:52 DEBUG: search for TOR.
08/Feb/2016 22:56:52 DEBUG: calculating TOR over tcp.
08/Feb/2016 22:56:52 DEBUG: search for SKINNY.
08/Feb/2016 22:56:52 DEBUG: calculating SKINNY over tcp.
08/Feb/2016 22:56:52 DEBUG: search for RTCP.
08/Feb/2016 22:56:52 DEBUG: calculating dport over tcp.
08/Feb/2016 22:56:52 DEBUG: search for RSYNC.
08/Feb/2016 22:56:52 DEBUG: calculating RSYNC over tcp.
08/Feb/2016 22:56:52 DEBUG: search for ORACLE.
08/Feb/2016 22:56:52 DEBUG: calculating ORACLE over tcp.
08/Feb/2016 22:56:52 DEBUG: search for CORBA.
08/Feb/2016 22:56:52 DEBUG: calculating CORBA over tcp.
08/Feb/2016 22:56:52 DEBUG: RTMP detection...
08/Feb/2016 22:56:52 DEBUG: RTMP stage 0:
08/Feb/2016 22:56:52 DEBUG: FTP_CONTROL detection...
08/Feb/2016 22:56:52 DEBUG: FTP_CONTROL stage 0:
08/Feb/2016 22:56:52 TRACE: PANDO detection...
08/Feb/2016 22:56:52 DEBUG: PANDO stage 0:
08/Feb/2016 22:56:52 TRACE: ZMQ detection...
08/Feb/2016 22:56:52 DEBUG: skype detection...
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: EDONKEY detection...
08/Feb/2016 22:56:52 DEBUG: EDONKEY stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM detection...
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: FTP_CONTROL detection...
08/Feb/2016 22:56:52 DEBUG: FTP_CONTROL stage 0:
08/Feb/2016 22:56:52 TRACE: PANDO detection...
08/Feb/2016 22:56:52 DEBUG: PANDO stage 0:
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: EDONKEY detection...
08/Feb/2016 22:56:52 DEBUG: EDONKEY stage 0:
08/Feb/2016 22:56:52 DEBUG: irc : search irc
08/Feb/2016 22:56:52 DEBUG: called ndpi_search_irc_ssl_detect_ninty_percent_but_very_fast
08/Feb/2016 22:56:52 DEBUG: detected_irc:08/Feb/2016 22:56:52 DEBUG: search DNS.
08/Feb/2016 22:56:52 DEBUG: TCP FOUND :: Payload 4
08/Feb/2016 22:56:52 DEBUG: STEAM detection...
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: search telnet.
08/Feb/2016 22:56:52 DEBUG: search meebo.
08/Feb/2016 22:56:52 DEBUG: flash not yet excluded. need next packet.
08/Feb/2016 22:56:52 DEBUG: citrix detection...
08/Feb/2016 22:56:52 DEBUG: lotus_notes detection...
08/Feb/2016 22:56:52 DEBUG: search H323.
08/Feb/2016 22:56:52 DEBUG: calculated dport over tcp.
08/Feb/2016 22:56:52 DEBUG: search for TOR.
08/Feb/2016 22:56:52 DEBUG: calculating TOR over tcp.
08/Feb/2016 22:56:52 DEBUG: search for SKINNY.
08/Feb/2016 22:56:52 DEBUG: calculating SKINNY over tcp.
08/Feb/2016 22:56:52 DEBUG: search for RTCP.
08/Feb/2016 22:56:52 DEBUG: calculating dport over tcp.
08/Feb/2016 22:56:52 DEBUG: search for RSYNC.
08/Feb/2016 22:56:52 DEBUG: calculating RSYNC over tcp.
08/Feb/2016 22:56:52 DEBUG: search for ORACLE.
08/Feb/2016 22:56:52 DEBUG: calculating ORACLE over tcp.
08/Feb/2016 22:56:52 DEBUG: search for CORBA.
08/Feb/2016 22:56:52 DEBUG: calculating CORBA over tcp.
08/Feb/2016 22:56:52 DEBUG: RTMP detection...
08/Feb/2016 22:56:52 DEBUG: RTMP stage 0:
08/Feb/2016 22:56:52 DEBUG: FTP_CONTROL detection...
08/Feb/2016 22:56:52 DEBUG: FTP_CONTROL stage 0:
08/Feb/2016 22:56:52 TRACE: PANDO detection...
08/Feb/2016 22:56:52 DEBUG: PANDO stage 0:
08/Feb/2016 22:56:52 TRACE: ZMQ detection...
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: EDONKEY detection...
08/Feb/2016 22:56:52 DEBUG: EDONKEY stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM detection...
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: FTP_CONTROL detection...
08/Feb/2016 22:56:52 DEBUG: FTP_CONTROL stage 0:
08/Feb/2016 22:56:52 TRACE: PANDO detection...
08/Feb/2016 22:56:52 DEBUG: PANDO stage 0:
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: CoAP detection...
08/Feb/2016 22:56:52 DEBUG: ====>>>> COAP: B�� [len: 155]
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 0
08/Feb/2016 22:56:52 DEBUG: search stun.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 2
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 3
08/Feb/2016 22:56:52 DEBUG: sip detection...
08/Feb/2016 22:56:52 DEBUG: need next packet.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 5
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 6
08/Feb/2016 22:56:52 DEBUG: EDONKEY detection...
08/Feb/2016 22:56:52 DEBUG: EDONKEY stage 0:
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 8
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 9
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 10
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 11
08/Feb/2016 22:56:52 TRACE: JABBER detection....
08/Feb/2016 22:56:52 TRACE: JABBER Excluded.
08/Feb/2016 22:56:52 DEBUG: search DNS.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 15
08/Feb/2016 22:56:52 DEBUG: UDP FOUND
08/Feb/2016 22:56:52 DEBUG: iMesh UDP packetlen: 155
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 17
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 18
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 19
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 20
08/Feb/2016 22:56:52 DEBUG: PPLIVE detection...
08/Feb/2016 22:56:52 DEBUG: PPLIVE stage 0:
08/Feb/2016 22:56:52 DEBUG: PPLIVE stage 0:
08/Feb/2016 22:56:52 DEBUG: PPLIVE stage 0:
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 22
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 23
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 24
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 25
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 26
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 27
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 28
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 29
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 30
08/Feb/2016 22:56:52 DEBUG: STEAM detection...
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 32
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 33
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 34
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 35
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 36
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 37
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 38
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 39
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 40
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 41
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 42
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 43
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 44
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 45
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 46
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 47
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 48
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 49
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 50
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 51
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 52
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 53
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 54
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 55
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 56
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 57
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 58
08/Feb/2016 22:56:52 DEBUG: netflow detection...
08/Feb/2016 22:56:52 DEBUG: sflow detection...
08/Feb/2016 22:56:52 DEBUG: search H323.
08/Feb/2016 22:56:52 DEBUG: calculated dport over udp.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 62
08/Feb/2016 22:56:52 DEBUG: search for NOE.
08/Feb/2016 22:56:52 DEBUG: calculating dport over udp.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 64
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 65
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 66
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 67
08/Feb/2016 22:56:52 TRACE: PANDO detection...
08/Feb/2016 22:56:52 DEBUG: PANDO stage 0:
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 69
08/Feb/2016 22:56:52 TRACE: VHUA detection...
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 71
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 72
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 73
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 74
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 75
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 76
08/Feb/2016 22:56:52 DEBUG: CoAP detection...
08/Feb/2016 22:56:52 DEBUG: ====>>>> COAP: B�� [len: 155]
08/Feb/2016 22:56:52 DEBUG: skype detection...
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: EDONKEY detection...
08/Feb/2016 22:56:52 DEBUG: EDONKEY stage 0:
08/Feb/2016 22:56:52 DEBUG: irc : search irc
08/Feb/2016 22:56:52 DEBUG: called ndpi_search_irc_ssl_detect_ninty_percent_but_very_fast
08/Feb/2016 22:56:52 DEBUG: detected_irc:08/Feb/2016 22:56:52 DEBUG: search DNS.
08/Feb/2016 22:56:52 DEBUG: TCP FOUND :: Payload 150
08/Feb/2016 22:56:52 DEBUG: iMesh excluded at stage 0
08/Feb/2016 22:56:52 DEBUG: STEAM detection...
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: search telnet.
08/Feb/2016 22:56:52 DEBUG: search meebo.
08/Feb/2016 22:56:52 DEBUG: exclude meebo.
08/Feb/2016 22:56:52 DEBUG: search H323.
08/Feb/2016 22:56:52 DEBUG: calculated dport over tcp.
08/Feb/2016 22:56:52 DEBUG: search for TOR.
08/Feb/2016 22:56:52 DEBUG: calculating TOR over tcp.
08/Feb/2016 22:56:52 DEBUG: search for SKINNY.
08/Feb/2016 22:56:52 DEBUG: calculating SKINNY over tcp.
08/Feb/2016 22:56:52 DEBUG: search for RTCP.
08/Feb/2016 22:56:52 DEBUG: calculating dport over tcp.
08/Feb/2016 22:56:52 DEBUG: search for RSYNC.
08/Feb/2016 22:56:52 DEBUG: calculating RSYNC over tcp.
08/Feb/2016 22:56:52 DEBUG: search for ORACLE.
08/Feb/2016 22:56:52 DEBUG: calculating ORACLE over tcp.
08/Feb/2016 22:56:52 DEBUG: search for CORBA.
08/Feb/2016 22:56:52 DEBUG: calculating CORBA over tcp.
08/Feb/2016 22:56:52 DEBUG: RTMP detection...
08/Feb/2016 22:56:52 DEBUG: RTMP stage 0:
08/Feb/2016 22:56:52 DEBUG: FTP_CONTROL detection...
08/Feb/2016 22:56:52 DEBUG: FTP_CONTROL stage 0:
08/Feb/2016 22:56:52 TRACE: PANDO detection...
08/Feb/2016 22:56:52 DEBUG: PANDO stage 0:
08/Feb/2016 22:56:52 TRACE: ZMQ detection...
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: CoAP detection...
08/Feb/2016 22:56:52 DEBUG: ====>>>> COAP: bD�� [len: 18]
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 0
08/Feb/2016 22:56:52 DEBUG: search stun.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 2
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 3
08/Feb/2016 22:56:52 DEBUG: sip detection...
08/Feb/2016 22:56:52 DEBUG: need next packet.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 5
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 6
08/Feb/2016 22:56:52 DEBUG: EDONKEY detection...
08/Feb/2016 22:56:52 DEBUG: EDONKEY stage 0:
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 8
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 9
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 10
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 11
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 13
08/Feb/2016 22:56:52 DEBUG: search DNS.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 15
08/Feb/2016 22:56:52 DEBUG: UDP FOUND
08/Feb/2016 22:56:52 DEBUG: iMesh UDP packetlen: 18
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 17
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 18
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 19
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 20
08/Feb/2016 22:56:52 DEBUG: PPLIVE detection...
08/Feb/2016 22:56:52 DEBUG: PPLIVE stage 0:
08/Feb/2016 22:56:52 DEBUG: PPLIVE stage 0:
08/Feb/2016 22:56:52 DEBUG: PPLIVE stage 0:
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 22
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 23
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 24
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 25
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 26
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 27
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 28
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 29
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 30
08/Feb/2016 22:56:52 DEBUG: STEAM detection...
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 32
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 33
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 34
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 35
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 36
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 37
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 38
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 39
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 40
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 41
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 42
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 43
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 44
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 45
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 46
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 47
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 48
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 49
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 50
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 51
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 52
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 53
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 54
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 55
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 56
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 57
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 58
08/Feb/2016 22:56:52 DEBUG: netflow detection...
08/Feb/2016 22:56:52 DEBUG: sflow detection...
08/Feb/2016 22:56:52 DEBUG: search H323.
08/Feb/2016 22:56:52 DEBUG: calculated dport over udp.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 62
08/Feb/2016 22:56:52 DEBUG: search for NOE.
08/Feb/2016 22:56:52 DEBUG: calculating dport over udp.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 64
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 65
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 66
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 67
08/Feb/2016 22:56:52 TRACE: PANDO detection...
08/Feb/2016 22:56:52 DEBUG: PANDO stage 0:
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 69
08/Feb/2016 22:56:52 TRACE: VHUA detection...
08/Feb/2016 22:56:52 TRACE: Exclude VHUA.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 71
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 72
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 73
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 74
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 75
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 76
08/Feb/2016 22:56:52 DEBUG: CoAP detection...
08/Feb/2016 22:56:52 DEBUG: ====>>>> COAP: bD�� [len: 18]
08/Feb/2016 22:56:52 DEBUG: skype detection...
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: EDONKEY detection...
08/Feb/2016 22:56:52 DEBUG: EDONKEY stage 0:
08/Feb/2016 22:56:52 DEBUG: irc : search irc
08/Feb/2016 22:56:52 DEBUG: called ndpi_search_irc_ssl_detect_ninty_percent_but_very_fast
08/Feb/2016 22:56:52 DEBUG: detected_irc:08/Feb/2016 22:56:52 DEBUG: search DNS.
08/Feb/2016 22:56:52 DEBUG: STEAM detection...
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: search telnet.
08/Feb/2016 22:56:52 DEBUG: telnet excluded.
08/Feb/2016 22:56:52 DEBUG: search H323.
08/Feb/2016 22:56:52 DEBUG: calculated dport over tcp.
08/Feb/2016 22:56:52 DEBUG: search for TOR.
08/Feb/2016 22:56:52 DEBUG: calculating TOR over tcp.
08/Feb/2016 22:56:52 DEBUG: search for SKINNY.
08/Feb/2016 22:56:52 DEBUG: calculating SKINNY over tcp.
08/Feb/2016 22:56:52 DEBUG: search for RTCP.
08/Feb/2016 22:56:52 DEBUG: calculating dport over tcp.
08/Feb/2016 22:56:52 DEBUG: search for RSYNC.
08/Feb/2016 22:56:52 DEBUG: calculating RSYNC over tcp.
08/Feb/2016 22:56:52 DEBUG: search for ORACLE.
08/Feb/2016 22:56:52 DEBUG: calculating ORACLE over tcp.
08/Feb/2016 22:56:52 DEBUG: search for CORBA.
08/Feb/2016 22:56:52 DEBUG: calculating CORBA over tcp.
08/Feb/2016 22:56:52 DEBUG: RTMP detection...
08/Feb/2016 22:56:52 DEBUG: RTMP stage 0:
08/Feb/2016 22:56:52 DEBUG: FTP_CONTROL detection...
08/Feb/2016 22:56:52 DEBUG: FTP_CONTROL stage 0:
08/Feb/2016 22:56:52 TRACE: PANDO detection...
08/Feb/2016 22:56:52 DEBUG: PANDO stage 0:
08/Feb/2016 22:56:52 TRACE: ZMQ detection...
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: EDONKEY detection...
08/Feb/2016 22:56:52 DEBUG: EDONKEY stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM detection...
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: FTP_CONTROL detection...
08/Feb/2016 22:56:52 DEBUG: FTP_CONTROL stage 0:
08/Feb/2016 22:56:52 TRACE: PANDO detection...
08/Feb/2016 22:56:52 DEBUG: PANDO stage 0:
WARNING: only IPv4/IPv6 packets are supported in this demo (nDPI supports both IPv4 and IPv6), all other packets will be discarded
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: CoAP detection...
08/Feb/2016 22:56:52 DEBUG: ====>>>> COAP: D�� [len: 94]
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 0
08/Feb/2016 22:56:52 DEBUG: search stun.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 2
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 3
08/Feb/2016 22:56:52 DEBUG: sip detection...
08/Feb/2016 22:56:52 DEBUG: need next packet.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 5
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 6
08/Feb/2016 22:56:52 DEBUG: EDONKEY detection...
08/Feb/2016 22:56:52 DEBUG: EDONKEY stage 0:
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 8
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 9
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 10
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 11
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 13
08/Feb/2016 22:56:52 DEBUG: search DNS.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 15
08/Feb/2016 22:56:52 DEBUG: UDP FOUND
08/Feb/2016 22:56:52 DEBUG: iMesh UDP packetlen: 94
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 17
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 18
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 19
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 20
08/Feb/2016 22:56:52 DEBUG: PPLIVE detection...
08/Feb/2016 22:56:52 DEBUG: PPLIVE stage 0:
08/Feb/2016 22:56:52 DEBUG: PPLIVE stage 0:
08/Feb/2016 22:56:52 DEBUG: PPLIVE stage 0:
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 22
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 23
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 24
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 25
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 26
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 27
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 28
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 29
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 30
08/Feb/2016 22:56:52 DEBUG: STEAM detection...
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 32
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 33
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 34
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 35
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 36
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 37
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 38
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 39
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 40
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 41
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 42
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 43
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 44
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 45
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 46
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 47
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 48
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 49
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 50
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 51
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 52
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 53
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 54
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 55
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 56
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 57
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 58
08/Feb/2016 22:56:52 DEBUG: netflow detection...
08/Feb/2016 22:56:52 DEBUG: sflow detection...
08/Feb/2016 22:56:52 DEBUG: search H323.
08/Feb/2016 22:56:52 DEBUG: calculated dport over udp.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 62
08/Feb/2016 22:56:52 DEBUG: search for NOE.
08/Feb/2016 22:56:52 DEBUG: calculating dport over udp.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 64
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 65
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 66
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 67
08/Feb/2016 22:56:52 TRACE: PANDO detection...
08/Feb/2016 22:56:52 DEBUG: PANDO stage 0:
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 69
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 70
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 71
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 72
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 73
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 74
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 75
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 76
08/Feb/2016 22:56:52 DEBUG: CoAP detection...
08/Feb/2016 22:56:52 DEBUG: ====>>>> COAP: D�� [len: 94]
08/Feb/2016 22:56:52 DEBUG: skype detection...
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: EDONKEY detection...
08/Feb/2016 22:56:52 DEBUG: EDONKEY stage 0:
08/Feb/2016 22:56:52 DEBUG: irc : search irc
08/Feb/2016 22:56:52 DEBUG: called ndpi_search_irc_ssl_detect_ninty_percent_but_very_fast
08/Feb/2016 22:56:52 DEBUG: detected_irc:08/Feb/2016 22:56:52 DEBUG: search DNS.
08/Feb/2016 22:56:52 DEBUG: STEAM detection...
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: search H323.
08/Feb/2016 22:56:52 DEBUG: calculated dport over tcp.
08/Feb/2016 22:56:52 DEBUG: search for TOR.
08/Feb/2016 22:56:52 DEBUG: calculating TOR over tcp.
08/Feb/2016 22:56:52 DEBUG: search for SKINNY.
08/Feb/2016 22:56:52 DEBUG: calculating SKINNY over tcp.
08/Feb/2016 22:56:52 DEBUG: search for RTCP.
08/Feb/2016 22:56:52 DEBUG: calculating dport over tcp.
08/Feb/2016 22:56:52 DEBUG: search for RSYNC.
08/Feb/2016 22:56:52 DEBUG: calculating RSYNC over tcp.
08/Feb/2016 22:56:52 DEBUG: search for ORACLE.
08/Feb/2016 22:56:52 DEBUG: calculating ORACLE over tcp.
08/Feb/2016 22:56:52 DEBUG: search for CORBA.
08/Feb/2016 22:56:52 DEBUG: calculating CORBA over tcp.
08/Feb/2016 22:56:52 DEBUG: RTMP detection...
08/Feb/2016 22:56:52 DEBUG: RTMP stage 0:
08/Feb/2016 22:56:52 DEBUG: FTP_CONTROL detection...
08/Feb/2016 22:56:52 DEBUG: FTP_CONTROL stage 0:
08/Feb/2016 22:56:52 TRACE: PANDO detection...
08/Feb/2016 22:56:52 DEBUG: PANDO stage 0:
08/Feb/2016 22:56:52 TRACE: ZMQ detection...
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: CoAP detection...
08/Feb/2016 22:56:52 DEBUG: ====>>>> COAP: dD�� [len: 20]
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 0
08/Feb/2016 22:56:52 DEBUG: search stun.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 2
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 3
08/Feb/2016 22:56:52 DEBUG: sip detection...
08/Feb/2016 22:56:52 DEBUG: need next packet.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 5
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 6
08/Feb/2016 22:56:52 DEBUG: EDONKEY detection...
08/Feb/2016 22:56:52 DEBUG: EDONKEY stage 0:
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 8
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 9
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 10
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 11
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 13
08/Feb/2016 22:56:52 DEBUG: search DNS.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 15
08/Feb/2016 22:56:52 DEBUG: UDP FOUND
08/Feb/2016 22:56:52 DEBUG: iMesh UDP packetlen: 20
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 17
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 18
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 19
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 20
08/Feb/2016 22:56:52 DEBUG: PPLIVE detection...
08/Feb/2016 22:56:52 DEBUG: PPLIVE stage 0:
08/Feb/2016 22:56:52 DEBUG: PPLIVE stage 0:
08/Feb/2016 22:56:52 DEBUG: PPLIVE stage 0:
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 22
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 23
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 24
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 25
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 26
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 27
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 28
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 29
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 30
08/Feb/2016 22:56:52 DEBUG: STEAM detection...
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 32
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 33
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 34
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 35
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 36
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 37
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 38
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 39
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 40
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 41
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 42
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 43
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 44
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 45
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 46
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 47
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 48
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 49
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 50
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 51
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 52
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 53
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 54
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 55
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 56
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 57
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 58
08/Feb/2016 22:56:52 DEBUG: netflow detection...
08/Feb/2016 22:56:52 DEBUG: sflow detection...
08/Feb/2016 22:56:52 DEBUG: search H323.
08/Feb/2016 22:56:52 DEBUG: calculated dport over udp.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 62
08/Feb/2016 22:56:52 DEBUG: search for NOE.
08/Feb/2016 22:56:52 DEBUG: calculating dport over udp.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 64
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 65
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 66
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 67
08/Feb/2016 22:56:52 TRACE: PANDO detection...
08/Feb/2016 22:56:52 DEBUG: PANDO stage 0:
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 69
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 70
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 71
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 72
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 73
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 74
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 75
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 76
08/Feb/2016 22:56:52 DEBUG: CoAP detection...
08/Feb/2016 22:56:52 DEBUG: ====>>>> COAP: dD�� [len: 20]
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 78
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: CoAP detection...
08/Feb/2016 22:56:52 DEBUG: ====>>>> COAP: G�� [len: 160]
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 0
08/Feb/2016 22:56:52 DEBUG: search stun.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 2
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 3
08/Feb/2016 22:56:52 DEBUG: sip detection...
08/Feb/2016 22:56:52 DEBUG: need next packet.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 5
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 6
08/Feb/2016 22:56:52 DEBUG: EDONKEY detection...
08/Feb/2016 22:56:52 DEBUG: EDONKEY stage 0:
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 8
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 9
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 10
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 11
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 13
08/Feb/2016 22:56:52 DEBUG: search DNS.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 15
08/Feb/2016 22:56:52 DEBUG: UDP FOUND
08/Feb/2016 22:56:52 DEBUG: iMesh UDP packetlen: 160
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 17
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 18
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 19
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 20
08/Feb/2016 22:56:52 DEBUG: PPLIVE detection...
08/Feb/2016 22:56:52 DEBUG: PPLIVE stage 0:
08/Feb/2016 22:56:52 DEBUG: PPLIVE stage 0:
08/Feb/2016 22:56:52 DEBUG: PPLIVE stage 0:
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 22
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 23
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 24
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 25
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 26
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 27
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 28
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 29
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 30
08/Feb/2016 22:56:52 DEBUG: STEAM detection...
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 32
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 33
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 34
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 35
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 36
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 37
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 38
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 39
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 40
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 41
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 42
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 43
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 44
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 45
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 46
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 47
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 48
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 49
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 50
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 51
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 52
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 53
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 54
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 55
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 56
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 57
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 58
08/Feb/2016 22:56:52 DEBUG: netflow detection...
08/Feb/2016 22:56:52 DEBUG: sflow detection...
08/Feb/2016 22:56:52 DEBUG: search H323.
08/Feb/2016 22:56:52 DEBUG: calculated dport over udp.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 62
08/Feb/2016 22:56:52 DEBUG: search for NOE.
08/Feb/2016 22:56:52 DEBUG: calculating dport over udp.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 64
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 65
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 66
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 67
08/Feb/2016 22:56:52 TRACE: PANDO detection...
08/Feb/2016 22:56:52 DEBUG: PANDO stage 0:
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 69
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 70
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 71
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 72
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 73
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 74
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 75
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 76
08/Feb/2016 22:56:52 DEBUG: CoAP detection...
08/Feb/2016 22:56:52 DEBUG: ====>>>> COAP: G�� [len: 160]
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 78
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: CoAP detection...
08/Feb/2016 22:56:52 DEBUG: ====>>>> COAP: gD�� [len: 23]
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 0
08/Feb/2016 22:56:52 DEBUG: search stun.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 2
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 3
08/Feb/2016 22:56:52 DEBUG: sip detection...
08/Feb/2016 22:56:52 DEBUG: need next packet.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 5
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 6
08/Feb/2016 22:56:52 DEBUG: EDONKEY detection...
08/Feb/2016 22:56:52 DEBUG: EDONKEY stage 0:
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 8
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 9
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 10
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 11
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 13
08/Feb/2016 22:56:52 DEBUG: search DNS.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 15
08/Feb/2016 22:56:52 DEBUG: UDP FOUND
08/Feb/2016 22:56:52 DEBUG: iMesh UDP packetlen: 23
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 17
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 18
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 19
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 20
08/Feb/2016 22:56:52 DEBUG: PPLIVE detection...
08/Feb/2016 22:56:52 DEBUG: PPLIVE stage 0:
08/Feb/2016 22:56:52 DEBUG: PPLIVE stage 0:
08/Feb/2016 22:56:52 DEBUG: PPLIVE stage 0:
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 22
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 23
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 24
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 25
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 26
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 27
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 28
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 29
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 30
08/Feb/2016 22:56:52 DEBUG: STEAM detection...
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 32
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 33
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 34
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 35
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 36
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 37
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 38
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 39
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 40
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 41
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 42
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 43
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 44
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 45
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 46
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 47
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 48
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 49
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 50
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 51
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 52
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 53
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 54
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 55
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 56
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 57
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 58
08/Feb/2016 22:56:52 DEBUG: netflow detection...
08/Feb/2016 22:56:52 DEBUG: sflow detection...
08/Feb/2016 22:56:52 DEBUG: search H323.
08/Feb/2016 22:56:52 DEBUG: calculated dport over udp.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 62
08/Feb/2016 22:56:52 DEBUG: search for NOE.
08/Feb/2016 22:56:52 DEBUG: calculating dport over udp.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 64
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 65
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 66
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 67
08/Feb/2016 22:56:52 TRACE: PANDO detection...
08/Feb/2016 22:56:52 DEBUG: PANDO stage 0:
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 69
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 70
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 71
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 72
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 73
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 74
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 75
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 76
08/Feb/2016 22:56:52 DEBUG: CoAP detection...
08/Feb/2016 22:56:52 DEBUG: ====>>>> COAP: gD�� [len: 23]
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 78
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: CoAP detection...
08/Feb/2016 22:56:52 DEBUG: ====>>>> COAP: B�� [len: 92]
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 0
08/Feb/2016 22:56:52 DEBUG: search stun.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 2
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 3
08/Feb/2016 22:56:52 DEBUG: sip detection...
08/Feb/2016 22:56:52 DEBUG: need next packet.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 5
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 6
08/Feb/2016 22:56:52 DEBUG: EDONKEY detection...
08/Feb/2016 22:56:52 DEBUG: EDONKEY stage 0:
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 8
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 9
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 10
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 11
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 13
08/Feb/2016 22:56:52 DEBUG: search DNS.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 15
08/Feb/2016 22:56:52 DEBUG: UDP FOUND
08/Feb/2016 22:56:52 DEBUG: iMesh UDP packetlen: 92
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 17
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 18
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 19
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 20
08/Feb/2016 22:56:52 DEBUG: PPLIVE detection...
08/Feb/2016 22:56:52 DEBUG: PPLIVE stage 0:
08/Feb/2016 22:56:52 DEBUG: PPLIVE stage 0:
08/Feb/2016 22:56:52 DEBUG: PPLIVE stage 0:
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 22
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 23
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 24
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 25
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 26
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 27
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 28
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 29
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 30
08/Feb/2016 22:56:52 DEBUG: STEAM detection...
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: STEAM stage 0:
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 32
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 33
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 34
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 35
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 36
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 37
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 38
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 39
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 40
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 41
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 42
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 43
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 44
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 45
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 46
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 47
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 48
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 49
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 50
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 51
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 52
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 53
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 54
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 55
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 56
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 57
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 58
08/Feb/2016 22:56:52 DEBUG: netflow detection...
08/Feb/2016 22:56:52 DEBUG: sflow detection...
08/Feb/2016 22:56:52 DEBUG: search H323.
08/Feb/2016 22:56:52 DEBUG: calculated dport over udp.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 62
08/Feb/2016 22:56:52 DEBUG: search for NOE.
08/Feb/2016 22:56:52 DEBUG: calculating dport over udp.
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 64
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 65
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 66
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 67
08/Feb/2016 22:56:52 TRACE: PANDO detection...
08/Feb/2016 22:56:52 DEBUG: PANDO stage 0:
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 69
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 70
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 71
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 72
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 73
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 74
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 75
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 76
08/Feb/2016 22:56:52 DEBUG: CoAP detection...
08/Feb/2016 22:56:52 DEBUG: ====>>>> COAP: B�� [len: 92]
08/Feb/2016 22:56:52 DEBUG: [UDP,SKIP] dissector of protocol as callback_buffer idx = 78
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: ipv4 header
08/Feb/2016 22:56:52 DEBUG: netbios udp start
08/Feb/2016 22:56:52 DEBUG: found netbios port 137 and payload_packet_len 50
08/Feb/2016 22:56:52 DEBUG: found netbios with flag 0110 questions = 1 and answers = 0, authority, additional = 0
08/Feb/2016 22:56:52 DEBUG: Starcraft protocol detection...
08/Feb/2016 22:56:52 DEBUG: Starcraft excluded
nDPI Memory statistics:
nDPI Memory (once): 105.99 KB
Flow Memory (per flow): 1.94 KB
Actual Memory: 1.86 MB
Peak Memory: 1.86 MB
Traffic statistics:
Ethernet bytes: 13857 (includes ethernet CRC/IFC/trailer)
Discarded bytes: 102
IP packets: 122 of 124 packets total
IP bytes: 10929 (avg pkt size 88 bytes)
Unique flows: 3
TCP Packets: 85
UDP Packets: 37
VLAN Packets: 0
MPLS Packets: 0
PPPoE Packets: 0
Fragmented Packets: 0
Max Packet size: 170
Packet Len < 64: 82
Packet Len 64-128: 30
Packet Len 128-256: 10
Packet Len 256-1024: 0
Packet Len 1024-1500: 0
Packet Len > 1500: 0
nDPI throughput: 37.84 K pps / 32.79 Mb/sec
Traffic throughput: 3.54 pps / 3.15 Kb/sec
Traffic duration: 34.417 sec
Guessed flow protos: 1
Detected protocols:
Unknown packets: 85 bytes: 6989 flows: 1
NetBIOS packets: 7 bytes: 644 flows: 1
COAP packets: 30 bytes: 3296 flows: 1
Protocol statistics:
Acceptable 3940 bytes
Unrated 6989 bytes
|