-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunnormal.csv
We can't make this file beautiful and searchable because it's too large.
5141 lines (5141 loc) · 634 KB
/
unnormal.csv
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
No.;Time;Source;Destination;Protocol;Length;Info
1;0.000000;192.168.66.22;74.125.232.64;TCP;66;50393 > http(80) [SYN] Seq=0 Win=8192 Len=0 MSS=1460 WS=4 SACK_PERM
2;0.498086;74.125.232.64;192.168.66.22;TCP;66;http(80) > 50393 [SYN, ACK] Seq=0 Ack=1 Win=42900 Len=0 MSS=1367 SACK_PERM WS=128
3;0.498420;192.168.66.22;74.125.232.64;TCP;60;50393 > http(80) [ACK] Seq=1 Ack=1 Win=65616 Len=0
4;0.498959;192.168.66.22;74.125.232.64;HTTP;301;GET / HTTP/1.1
5;0.653061;74.125.232.64;192.168.66.22;TCP;66;[TCP Out-Of-Order] http(80) > 50393 [SYN, ACK] Seq=0 Ack=1 Win=42900 Len=0 MSS=1367 SACK_PERM WS=128
6;0.653289;192.168.66.22;74.125.232.64;TCP;66;[TCP Dup ACK 3#1] 50393 > http(80) [ACK] Seq=248 Ack=1 Win=65616 Len=0 SLE=0 SRE=1
7;0.834230;74.125.232.64;192.168.66.22;TCP;54;http(80) > 50393 [ACK] Seq=1 Ack=248 Win=44032 Len=0
8;0.988896;74.125.232.64;192.168.66.22;HTTP;574;HTTP/1.1 302 Found (text/html)
9;0.997513;192.168.66.22;192.168.66.1;DNS;73;Standard query 0xcbaf A www.google.at
10;1.196893;192.168.66.22;74.125.232.64;TCP;60;50393 > http(80) [ACK] Seq=248 Ack=521 Win=65096 Len=0
11;1.198590;192.168.66.1;192.168.66.22;DNS;137;Standard query response 0xcbaf A www.google.at A 173.194.116.111 A 173.194.116.119 A 173.194.116.127 A 173.194.116.120
12;1.200144;192.168.66.22;www.google.at;TCP;66;50394 > http(80) [SYN] Seq=0 Win=8192 Len=0 MSS=1460 WS=4 SACK_PERM
13;1.200146;192.168.66.22;www.google.at;TCP;66;50395 > http(80) [SYN] Seq=0 Win=8192 Len=0 MSS=1460 WS=4 SACK_PERM
14;1.734793;www.google.at;192.168.66.22;TCP;66;http(80) > 50394 [SYN, ACK] Seq=0 Ack=1 Win=42900 Len=0 MSS=1367 SACK_PERM WS=128
15;1.734831;www.google.at;192.168.66.22;TCP;66;http(80) > 50395 [SYN, ACK] Seq=0 Ack=1 Win=42900 Len=0 MSS=1367 SACK_PERM WS=128
16;1.735131;192.168.66.22;www.google.at;TCP;60;50394 > http(80) [ACK] Seq=1 Ack=1 Win=65616 Len=0
17;1.735133;192.168.66.22;www.google.at;TCP;60;50395 > http(80) [ACK] Seq=1 Ack=1 Win=65616 Len=0
18;1.735776;192.168.66.22;www.google.at;HTTP;338;GET /?gfe_rd=cr&ei=caeAVNyDM86o8wf654FA HTTP/1.1
19;1.884077;www.google.at;192.168.66.22;TCP;66;[TCP Out-Of-Order] http(80) > 50394 [SYN, ACK] Seq=0 Ack=1 Win=42900 Len=0 MSS=1367 SACK_PERM WS=128
20;1.884419;192.168.66.22;www.google.at;TCP;66;[TCP Dup ACK 16#1] 50394 > http(80) [ACK] Seq=1 Ack=1 Win=65616 Len=0 SLE=0 SRE=1
21;2.034518;www.google.at;192.168.66.22;TCP;66;[TCP Out-Of-Order] http(80) > 50395 [SYN, ACK] Seq=0 Ack=1 Win=42900 Len=0 MSS=1367 SACK_PERM WS=128
22;2.034856;192.168.66.22;www.google.at;TCP;66;[TCP Dup ACK 17#1] 50395 > http(80) [ACK] Seq=285 Ack=1 Win=65616 Len=0 SLE=0 SRE=1
23;2.185466;www.google.at;192.168.66.22;TCP;54;http(80) > 50395 [ACK] Seq=1 Ack=285 Win=44032 Len=0
24;2.185523;www.google.at;192.168.66.22;HTTP;1170;HTTP/1.1 302 Found (text/html)
25;2.197516;192.168.66.22;www.google.at;TCP;60;50394 > http(80) [FIN, ACK] Seq=1 Ack=1 Win=65616 Len=0
26;2.197949;192.168.66.22;www.google.at;TCP;66;50396 > https(443) [SYN] Seq=0 Win=8192 Len=0 MSS=1460 WS=4 SACK_PERM
27;2.398118;192.168.66.22;www.google.at;TCP;60;50395 > http(80) [ACK] Seq=285 Ack=1117 Win=64500 Len=0
28;2.555783;www.google.at;192.168.66.22;TCP;54;http(80) > 50394 [FIN, ACK] Seq=1 Ack=2 Win=43008 Len=0
29;2.556120;192.168.66.22;www.google.at;TCP;60;50394 > http(80) [ACK] Seq=2 Ack=2 Win=65616 Len=0
30;2.879157;www.google.at;192.168.66.22;TCP;66;https(443) > 50396 [SYN, ACK] Seq=0 Ack=1 Win=42900 Len=0 MSS=1367 SACK_PERM WS=128
31;2.879491;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1 Ack=1 Win=65616 Len=0
32;2.886210;192.168.66.22;www.google.at;SSLv2;126;Client Hello
33;3.032514;www.google.at;192.168.66.22;TCP;66;[TCP Out-Of-Order] https(443) > 50396 [SYN, ACK] Seq=0 Ack=1 Win=42900 Len=0 MSS=1367 SACK_PERM WS=128
34;3.032845;192.168.66.22;www.google.at;TCP;66;[TCP Dup ACK 31#1] 50396 > https(443) [ACK] Seq=73 Ack=1 Win=65616 Len=0 SLE=0 SRE=1
35;3.206233;www.google.at;192.168.66.22;TCP;54;https(443) > 50396 [ACK] Seq=1 Ack=73 Win=43008 Len=0
36;3.209296;www.google.at;192.168.66.22;TLSv1;1421;Server Hello
37;3.209363;www.google.at;192.168.66.22;TCP;1421;https(443) > 50396 [ACK] Seq=1368 Ack=73 Win=43008 Len=1367 [TCP segment of a reassembled PDU]
38;3.209426;www.google.at;192.168.66.22;TCP;1416;https(443) > 50396 [PSH, ACK] Seq=2735 Ack=73 Win=43008 Len=1362 [TCP segment of a reassembled PDU]
39;3.210061;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=73 Ack=2735 Win=65616 Len=0
40;3.210076;www.google.at;192.168.66.22;TCP;1421;https(443) > 50396 [ACK] Seq=4097 Ack=73 Win=43008 Len=1367 [TCP segment of a reassembled PDU]
41;3.210748;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=73 Ack=5464 Win=65616 Len=0
42;3.361416;www.google.at;192.168.66.22;TCP;1421;https(443) > 50396 [ACK] Seq=5464 Ack=73 Win=43008 Len=1367 [TCP segment of a reassembled PDU]
43;3.362205;www.google.at;192.168.66.22;TCP;1421;https(443) > 50396 [ACK] Seq=6831 Ack=73 Win=43008 Len=1367 [TCP segment of a reassembled PDU]
44;3.362275;www.google.at;192.168.66.22;TCP;1421;https(443) > 50396 [ACK] Seq=8198 Ack=73 Win=43008 Len=1367 [TCP segment of a reassembled PDU]
45;3.362319;www.google.at;192.168.66.22;TLSv1;481;Certificate
46;3.362373;www.google.at;192.168.66.22;TLSv1;399;Server Key Exchange, Server Hello Done
47;3.362881;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=73 Ack=8198 Win=65616 Len=0
48;3.362883;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=73 Ack=9992 Win=65616 Len=0
49;3.395404;192.168.66.22;www.google.at;TLSv1;188;Client Key Exchange, Change Cipher Spec, Encrypted Handshake Message
50;3.738489;www.google.at;192.168.66.22;TLSv1;113;Change Cipher Spec, Encrypted Handshake Message
51;3.776069;192.168.66.22;www.google.at;TLSv1;603;Application Data
52;4.120850;www.google.at;192.168.66.22;TCP;54;https(443) > 50396 [ACK] Seq=10396 Ack=756 Win=45184 Len=0
53;4.193182;www.google.at;192.168.66.22;TLSv1;1419;Application Data
54;4.193250;www.google.at;192.168.66.22;TLSv1;1421;Application Data
55;4.193310;www.google.at;192.168.66.22;TLSv1;1417;Application Data
56;4.193914;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=756 Ack=13128 Win=65616 Len=0
57;4.193968;www.google.at;192.168.66.22;TLSv1;1421;Application Data
58;4.194043;www.google.at;192.168.66.22;TLSv1;1421;Application Data
59;4.194101;www.google.at;192.168.66.22;TLSv1;1415;Application Data
60;4.194160;www.google.at;192.168.66.22;TLSv1;1421;Application Data
61;4.194636;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=756 Ack=15858 Win=65616 Len=0
62;4.194638;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=756 Ack=18586 Win=65616 Len=0
63;4.345395;www.google.at;192.168.66.22;TLSv1;1421;Application Data
64;4.346096;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=756 Ack=21320 Win=65616 Len=0
65;4.346151;www.google.at;192.168.66.22;TLSv1;1421;Application Data
66;4.346229;www.google.at;192.168.66.22;TLSv1;1413;Application Data
67;4.346877;www.google.at;192.168.66.22;TLSv1;1421;Application Data
68;4.346937;www.google.at;192.168.66.22;TLSv1;1421;Application Data
69;4.346941;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=756 Ack=24046 Win=65616 Len=0
70;4.347675;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=756 Ack=26780 Win=65616 Len=0
71;4.369829;www.google.at;192.168.66.22;TLSv1;1421;Application Data
72;4.369896;www.google.at;192.168.66.22;TLSv1;1421;Application Data
73;4.369958;www.google.at;192.168.66.22;TLSv1;1421;Application Data
74;4.370544;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=756 Ack=29514 Win=65616 Len=0
75;4.372287;192.168.66.22;www.google.at;TCP;60;50395 > http(80) [FIN, ACK] Seq=285 Ack=1117 Win=64500 Len=0
76;4.372289;192.168.66.22;www.google.at;TCP;66;50397 > https(443) [SYN] Seq=0 Win=8192 Len=0 MSS=1460 WS=4 SACK_PERM
77;4.391293;192.168.66.22;192.168.66.1;DNS;75;Standard query 0x87dd A ssl.gstatic.com
78;4.504100;www.google.at;192.168.66.22;TLSv1;1421;Application Data
79;4.504809;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=756 Ack=32248 Win=65616 Len=0
80;4.507862;192.168.66.22;www.google.at;TCP;66;50398 > https(443) [SYN] Seq=0 Win=8192 Len=0 MSS=1460 WS=4 SACK_PERM
81;4.511390;192.168.66.22;www.google.at;TCP;66;50399 > https(443) [SYN] Seq=0 Win=8192 Len=0 MSS=1460 WS=4 SACK_PERM
82;4.531014;www.google.at;192.168.66.22;TLSv1;1421;Application Data
83;4.531081;www.google.at;192.168.66.22;TLSv1;1421;Application Data
84;4.531778;www.google.at;192.168.66.22;TLSv1;1421;Application Data
85;4.531779;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=756 Ack=34982 Win=65616 Len=0
86;4.580461;www.google.at;192.168.66.22;TLSv1;1421;Application Data
87;4.581142;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=756 Ack=37716 Win=65616 Len=0
88;4.581245;www.google.at;192.168.66.22;TLSv1;1421;Application Data
89;4.581316;www.google.at;192.168.66.22;TLSv1;1421;Application Data
90;4.581996;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=756 Ack=40450 Win=65616 Len=0
91;4.582012;www.google.at;192.168.66.22;TLSv1;1421;Application Data
92;4.615535;www.google.at;192.168.66.22;TLSv1;1421;Application Data, Application Data
93;4.616234;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=756 Ack=43184 Win=65616 Len=0
94;4.617097;www.google.at;192.168.66.22;TLSv1;1421;Application Data
95;4.617877;www.google.at;192.168.66.22;TLSv1;1421;Application Data
96;4.618541;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=756 Ack=45918 Win=65616 Len=0
97;4.656373;www.google.at;192.168.66.22;TLSv1;1421;Application Data
98;4.656427;www.google.at;192.168.66.22;TLSv1;222;Application Data
99;4.657054;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=756 Ack=47453 Win=65616 Len=0
100;4.689284;192.168.66.22;www.google.at;TLSv1;811;Application Data
101;4.809131;www.google.at;192.168.66.22;TCP;54;http(80) > 50395 [FIN, ACK] Seq=1117 Ack=286 Win=44032 Len=0
102;4.809168;www.google.at;192.168.66.22;TCP;66;https(443) > 50397 [SYN, ACK] Seq=0 Ack=1 Win=42900 Len=0 MSS=1367 SACK_PERM WS=128
103;4.809261;192.168.66.1;192.168.66.22;DNS;107;Standard query response 0x87dd A ssl.gstatic.com A 173.194.67.94 A 173.194.67.120
104;4.809338;www.google.at;192.168.66.22;TCP;66;https(443) > 50399 [SYN, ACK] Seq=0 Ack=1 Win=42900 Len=0 MSS=1367 SACK_PERM WS=128
105;4.809369;www.google.at;192.168.66.22;TCP;66;https(443) > 50398 [SYN, ACK] Seq=0 Ack=1 Win=42900 Len=0 MSS=1367 SACK_PERM WS=128
106;4.809462;192.168.66.22;www.google.at;TCP;60;50395 > http(80) [ACK] Seq=286 Ack=1118 Win=64500 Len=0
107;4.809464;192.168.66.22;www.google.at;TCP;60;50397 > https(443) [ACK] Seq=1 Ack=1 Win=65616 Len=0
108;4.809465;192.168.66.22;www.google.at;TCP;60;50399 > https(443) [ACK] Seq=1 Ack=1 Win=65616 Len=0
109;4.809846;192.168.66.22;www.google.at;TCP;60;50398 > https(443) [ACK] Seq=1 Ack=1 Win=65616 Len=0
110;4.810966;192.168.66.22;ssl.gstatic.com;TCP;66;50400 > https(443) [SYN] Seq=0 Win=8192 Len=0 MSS=1460 WS=4 SACK_PERM
111;4.810968;192.168.66.22;ssl.gstatic.com;TCP;66;50401 > https(443) [SYN] Seq=0 Win=8192 Len=0 MSS=1460 WS=4 SACK_PERM
112;4.811335;192.168.66.22;www.google.at;TLSv1;203;Client Hello (SNI=www.google.at)
113;4.811337;192.168.66.22;www.google.at;TLSv1;203;Client Hello (SNI=www.google.at)
114;4.811683;192.168.66.22;www.google.at;TLSv1;203;Client Hello (SNI=www.google.at)
115;4.894458;192.168.66.22;192.168.66.1;DNS;75;Standard query 0xf638 A www.gstatic.com
116;4.900650;www.google.at;192.168.66.22;TCP;54;https(443) > 50396 [ACK] Seq=47453 Ack=1513 Win=46592 Len=0
117;4.900708;www.google.at;192.168.66.22;TLSv1;1419;Application Data
118;4.900771;www.google.at;192.168.66.22;TLSv1;1421;Application Data
119;4.901437;www.google.at;192.168.66.22;TLSv1;1417;Application Data
120;4.901457;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=50185 Win=65616 Len=0
121;4.901511;www.google.at;192.168.66.22;TLSv1;1421;Application Data
122;4.901567;www.google.at;192.168.66.22;TLSv1;1417;Application Data
123;4.901633;www.google.at;192.168.66.22;TLSv1;1421;Application Data
124;4.901688;www.google.at;192.168.66.22;TLSv1;1421;Application Data
125;4.902122;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=52915 Win=65616 Len=0
126;4.902124;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=55645 Win=65616 Len=0
127;4.902192;www.google.at;192.168.66.22;TLSv1;1415;Application Data
128;4.902254;www.google.at;192.168.66.22;TLSv1;1421;Application Data
129;4.902312;www.google.at;192.168.66.22;TLSv1;1421;Application Data
130;4.902520;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=58373 Win=65616 Len=0
131;4.903018;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=61107 Win=65616 Len=0
132;4.920602;www.google.at;192.168.66.22;TLSv1;1415;Application Data
133;4.921383;www.google.at;192.168.66.22;TLSv1;1421;Application Data
134;4.922051;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=63835 Win=65616 Len=0
135;4.922154;www.google.at;192.168.66.22;TLSv1;1421;Application Data
136;5.055056;www.google.at;192.168.66.22;TLSv1;1415;Application Data
137;5.055749;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=66563 Win=65616 Len=0
138;5.056584;www.google.at;192.168.66.22;TLSv1;1421;Application Data
139;5.060587;www.google.at;192.168.66.22;TLSv1;1421;Application Data
140;5.061282;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=69297 Win=65616 Len=0
141;5.061371;www.google.at;192.168.66.22;TLSv1;1421;Application Data
142;5.061440;www.google.at;192.168.66.22;TLSv1;1413;Application Data
143;5.062127;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=72023 Win=65616 Len=0
144;5.062142;www.google.at;192.168.66.22;TLSv1;1421;Application Data
145;5.062216;www.google.at;192.168.66.22;TLSv1;1421;Application Data
146;5.062275;www.google.at;192.168.66.22;TLSv1;1421;Application Data
147;5.062333;www.google.at;192.168.66.22;TLSv1;1421;Application Data
148;5.062391;www.google.at;192.168.66.22;TLSv1;1421;Application Data
149;5.062824;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=74757 Win=65616 Len=0
150;5.062892;www.google.at;192.168.66.22;TLSv1;1421;Application Data
151;5.062933;www.google.at;192.168.66.22;TCP;66;[TCP Out-Of-Order] https(443) > 50397 [SYN, ACK] Seq=0 Ack=1 Win=42900 Len=0 MSS=1367 SACK_PERM WS=128
152;5.063164;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=77491 Win=65616 Len=0
153;5.063568;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=80225 Win=65616 Len=0
154;5.063569;192.168.66.22;www.google.at;TCP;66;[TCP Dup ACK 107#1] 50397 > https(443) [ACK] Seq=150 Ack=1 Win=65616 Len=0 SLE=0 SRE=1
155;5.081461;www.google.at;192.168.66.22;TCP;54;https(443) > 50399 [ACK] Seq=1 Ack=150 Win=44032 Len=0
156;5.081497;www.google.at;192.168.66.22;TCP;54;https(443) > 50397 [ACK] Seq=1 Ack=150 Win=44032 Len=0
157;5.081528;www.google.at;192.168.66.22;TCP;54;https(443) > 50398 [ACK] Seq=1 Ack=150 Win=44032 Len=0
158;5.081587;www.google.at;192.168.66.22;TLSv1;1421;Server Hello
159;5.081647;www.google.at;192.168.66.22;TCP;1421;https(443) > 50399 [ACK] Seq=1368 Ack=150 Win=44032 Len=1367 [TCP segment of a reassembled PDU]
160;5.081701;www.google.at;192.168.66.22;TLSv1;844;Certificate, Server Key Exchange, Server Hello Done
161;5.082225;www.google.at;192.168.66.22;TLSv1;1421;Server Hello
162;5.082261;192.168.66.22;www.google.at;TCP;60;50399 > https(443) [ACK] Seq=150 Ack=2735 Win=65616 Len=0
163;5.082289;www.google.at;192.168.66.22;TCP;1421;https(443) > 50397 [ACK] Seq=1368 Ack=150 Win=44032 Len=1367 [TCP segment of a reassembled PDU]
164;5.083001;www.google.at;192.168.66.22;TLSv1;844;Certificate, Server Key Exchange, Server Hello Done
165;5.083024;192.168.66.22;www.google.at;TCP;60;50397 > https(443) [ACK] Seq=150 Ack=2735 Win=65616 Len=0
166;5.083078;www.google.at;192.168.66.22;TLSv1;1421;Server Hello
167;5.115457;192.168.66.22;www.google.at;TLSv1;188;Client Key Exchange, Change Cipher Spec, Encrypted Handshake Message
168;5.123746;192.168.66.22;www.google.at;TLSv1;188;Client Key Exchange, Change Cipher Spec, Encrypted Handshake Message
169;5.205261;www.google.at;192.168.66.22;TCP;1421;https(443) > 50398 [ACK] Seq=1368 Ack=150 Win=44032 Len=1367 [TCP segment of a reassembled PDU]
170;5.205338;www.google.at;192.168.66.22;TLSv1;844;Certificate, Server Key Exchange, Server Hello Done
171;5.205964;192.168.66.22;www.google.at;TCP;60;50398 > https(443) [ACK] Seq=150 Ack=2735 Win=65616 Len=0
172;5.206020;www.google.at;192.168.66.22;TLSv1;1421;Application Data
173;5.214631;www.google.at;192.168.66.22;TLSv1;1421;Application Data
174;5.214738;192.168.66.1;192.168.66.22;DNS;107;Standard query response 0xf638 A www.gstatic.com A 173.194.78.94 A 173.194.78.120
175;5.215307;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=82959 Win=65616 Len=0
176;5.215474;ssl.gstatic.com;192.168.66.22;TCP;66;https(443) > 50400 [SYN, ACK] Seq=0 Ack=1 Win=42900 Len=0 MSS=1367 SACK_PERM WS=128
177;5.215509;ssl.gstatic.com;192.168.66.22;TCP;66;https(443) > 50401 [SYN, ACK] Seq=0 Ack=1 Win=42900 Len=0 MSS=1367 SACK_PERM WS=128
178;5.215803;192.168.66.22;ssl.gstatic.com;TCP;60;50400 > https(443) [ACK] Seq=1 Ack=1 Win=65616 Len=0
179;5.215804;192.168.66.22;ssl.gstatic.com;TCP;60;50401 > https(443) [ACK] Seq=1 Ack=1 Win=65616 Len=0
180;5.216420;192.168.66.22;www.gstatic.com;TCP;66;50402 > https(443) [SYN] Seq=0 Win=8192 Len=0 MSS=1460 WS=4 SACK_PERM
181;5.216422;192.168.66.22;www.gstatic.com;TCP;66;50403 > https(443) [SYN] Seq=0 Win=8192 Len=0 MSS=1460 WS=4 SACK_PERM
182;5.217755;192.168.66.22;ssl.gstatic.com;SSLv2;126;Client Hello
183;5.217757;192.168.66.22;ssl.gstatic.com;SSLv2;126;Client Hello
184;5.220054;www.google.at;192.168.66.22;TLSv1;1421;Application Data
185;5.220839;www.google.at;192.168.66.22;TLSv1;1421;Application Data
186;5.220907;www.google.at;192.168.66.22;TLSv1;1421;Application Data
187;5.221175;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=85693 Win=65616 Len=0
188;5.221584;www.google.at;192.168.66.22;TLSv1;1421;Application Data
189;5.221646;www.google.at;192.168.66.22;TLSv1;1421;Application Data
190;5.221916;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=88427 Win=65616 Len=0
191;5.222366;www.google.at;192.168.66.22;TLSv1;1421;Application Data
192;5.222425;www.google.at;192.168.66.22;TLSv1;1421;Application Data
193;5.222485;www.google.at;192.168.66.22;TLSv1;1421;Application Data
194;5.222696;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=91161 Win=65616 Len=0
195;5.223028;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=93895 Win=65616 Len=0
196;5.228960;www.google.at;192.168.66.22;TLSv1;1421;Application Data
197;5.229025;www.google.at;192.168.66.22;TLSv1;1421;Application Data
198;5.229711;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=96629 Win=65616 Len=0
199;5.238711;192.168.66.22;www.google.at;TLSv1;188;Client Key Exchange, Change Cipher Spec, Encrypted Handshake Message
200;5.244864;www.google.at;192.168.66.22;TLSv1;1421;Application Data
201;5.245647;www.google.at;192.168.66.22;TLSv1;1421;Application Data
202;5.245715;www.google.at;192.168.66.22;TLSv1;1421;Application Data
203;5.245773;www.google.at;192.168.66.22;TLSv1;1421;Application Data
204;5.246323;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=99363 Win=65616 Len=0
205;5.246325;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=102097 Win=65616 Len=0
206;5.264303;www.google.at;192.168.66.22;TLSv1;1421;Application Data
207;5.265084;www.google.at;192.168.66.22;TLSv1;1421;Application Data
208;5.265156;www.google.at;192.168.66.22;TLSv1;1421;Application Data
209;5.265757;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=104831 Win=65616 Len=0
210;5.265863;www.google.at;192.168.66.22;TLSv1;1421;Application Data
211;5.266190;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=107565 Win=65616 Len=0
212;5.281096;www.google.at;192.168.66.22;TLSv1;1421;Application Data
213;5.281878;www.google.at;192.168.66.22;TLSv1;1421;Application Data
214;5.282541;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=110299 Win=65616 Len=0
215;5.355386;www.google.at;192.168.66.22;TLSv1;1421;Application Data
216;5.356165;www.google.at;192.168.66.22;TLSv1;1421;Application Data
217;5.356830;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=113033 Win=65616 Len=0
218;5.365159;www.google.at;192.168.66.22;TLSv1;1421;Application Data
219;5.377902;www.google.at;192.168.66.22;TLSv1;1421;Application Data
220;5.378596;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=115767 Win=65616 Len=0
221;5.401606;www.google.at;192.168.66.22;TLSv1;113;Change Cipher Spec, Encrypted Handshake Message
222;5.401643;www.google.at;192.168.66.22;TLSv1;113;Change Cipher Spec, Encrypted Handshake Message
223;5.401702;www.google.at;192.168.66.22;TLSv1;1421;Application Data
224;5.402393;www.google.at;192.168.66.22;TLSv1;1421;Application Data
225;5.403058;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=118501 Win=65616 Len=0
226;5.403161;www.google.at;192.168.66.22;TLSv1;1421;Application Data
227;5.409719;192.168.66.22;www.google.at;TLSv1;699;Application Data
228;5.410281;192.168.66.22;www.google.at;TLSv1;699;Application Data
229;5.413811;www.google.at;192.168.66.22;TLSv1;1421;Application Data
230;5.413865;ssl.gstatic.com;192.168.66.22;TCP;66;[TCP Out-Of-Order] https(443) > 50400 [SYN, ACK] Seq=0 Ack=1 Win=42900 Len=0 MSS=1367 SACK_PERM WS=128
231;5.413902;www.gstatic.com;192.168.66.22;TCP;66;https(443) > 50403 [SYN, ACK] Seq=0 Ack=1 Win=42900 Len=0 MSS=1367 SACK_PERM WS=128
232;5.413934;ssl.gstatic.com;192.168.66.22;TCP;54;https(443) > 50400 [ACK] Seq=1 Ack=73 Win=43008 Len=0
233;5.413966;www.gstatic.com;192.168.66.22;TCP;66;https(443) > 50402 [SYN, ACK] Seq=0 Ack=1 Win=42900 Len=0 MSS=1367 SACK_PERM WS=128
234;5.413998;ssl.gstatic.com;192.168.66.22;TCP;54;https(443) > 50401 [ACK] Seq=1 Ack=73 Win=43008 Len=0
235;5.414501;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=121235 Win=65616 Len=0
236;5.414503;192.168.66.22;ssl.gstatic.com;TCP;66;[TCP Dup ACK 178#1] 50400 > https(443) [ACK] Seq=73 Ack=1 Win=65616 Len=0 SLE=0 SRE=1
237;5.414504;192.168.66.22;www.gstatic.com;TCP;60;50403 > https(443) [ACK] Seq=1 Ack=1 Win=65616 Len=0
238;5.414506;192.168.66.22;www.gstatic.com;TCP;60;50402 > https(443) [ACK] Seq=1 Ack=1 Win=65616 Len=0
239;5.414578;ssl.gstatic.com;192.168.66.22;TLSv1;1421;Server Hello
240;5.415357;ssl.gstatic.com;192.168.66.22;TCP;1421;https(443) > 50400 [ACK] Seq=1368 Ack=73 Win=43008 Len=1367 [TCP segment of a reassembled PDU]
241;5.415426;ssl.gstatic.com;192.168.66.22;TCP;1416;https(443) > 50400 [PSH, ACK] Seq=2735 Ack=73 Win=43008 Len=1362 [TCP segment of a reassembled PDU]
242;5.415482;ssl.gstatic.com;192.168.66.22;TCP;1421;https(443) > 50400 [ACK] Seq=4097 Ack=73 Win=43008 Len=1367 [TCP segment of a reassembled PDU]
243;5.415690;192.168.66.22;www.gstatic.com;SSLv2;126;Client Hello
244;5.415691;192.168.66.22;www.gstatic.com;SSLv2;126;Client Hello
245;5.415693;192.168.66.22;ssl.gstatic.com;TCP;60;50400 > https(443) [ACK] Seq=73 Ack=2735 Win=65616 Len=0
246;5.416034;192.168.66.22;ssl.gstatic.com;TCP;60;50400 > https(443) [ACK] Seq=73 Ack=5464 Win=65616 Len=0
247;5.416115;ssl.gstatic.com;192.168.66.22;TCP;1421;https(443) > 50400 [ACK] Seq=5464 Ack=73 Win=43008 Len=1367 [TCP segment of a reassembled PDU]
248;5.416174;ssl.gstatic.com;192.168.66.22;TCP;1421;https(443) > 50400 [ACK] Seq=6831 Ack=73 Win=43008 Len=1367 [TCP segment of a reassembled PDU]
249;5.416233;ssl.gstatic.com;192.168.66.22;TCP;1421;https(443) > 50400 [ACK] Seq=8198 Ack=73 Win=43008 Len=1367 [TCP segment of a reassembled PDU]
250;5.416288;ssl.gstatic.com;192.168.66.22;TLSv1;481;Certificate
251;5.416795;192.168.66.22;ssl.gstatic.com;TCP;60;50400 > https(443) [ACK] Seq=73 Ack=8198 Win=65616 Len=0
252;5.416796;192.168.66.22;ssl.gstatic.com;TCP;60;50400 > https(443) [ACK] Seq=73 Ack=9992 Win=65616 Len=0
253;5.416942;ssl.gstatic.com;192.168.66.22;TLSv1;1421;Server Hello
254;5.417008;ssl.gstatic.com;192.168.66.22;TCP;1421;https(443) > 50401 [ACK] Seq=1368 Ack=73 Win=43008 Len=1367 [TCP segment of a reassembled PDU]
255;5.417068;ssl.gstatic.com;192.168.66.22;TCP;1416;https(443) > 50401 [PSH, ACK] Seq=2735 Ack=73 Win=43008 Len=1362 [TCP segment of a reassembled PDU]
256;5.417129;ssl.gstatic.com;192.168.66.22;TCP;1421;https(443) > 50401 [ACK] Seq=4097 Ack=73 Win=43008 Len=1367 [TCP segment of a reassembled PDU]
257;5.417189;ssl.gstatic.com;192.168.66.22;TCP;1421;https(443) > 50401 [ACK] Seq=5464 Ack=73 Win=43008 Len=1367 [TCP segment of a reassembled PDU]
258;5.417609;192.168.66.22;ssl.gstatic.com;TCP;60;50401 > https(443) [ACK] Seq=73 Ack=2735 Win=65616 Len=0
259;5.417697;ssl.gstatic.com;192.168.66.22;TCP;1421;https(443) > 50401 [ACK] Seq=6831 Ack=73 Win=43008 Len=1367 [TCP segment of a reassembled PDU]
260;5.417757;ssl.gstatic.com;192.168.66.22;TCP;1421;https(443) > 50401 [ACK] Seq=8198 Ack=73 Win=43008 Len=1367 [TCP segment of a reassembled PDU]
261;5.417802;ssl.gstatic.com;192.168.66.22;TLSv1;481;Certificate
262;5.417860;www.google.at;192.168.66.22;TLSv1;1421;Application Data
263;5.417917;www.google.at;192.168.66.22;TLSv1;1421;Application Data
264;5.417955;192.168.66.22;ssl.gstatic.com;TCP;60;50401 > https(443) [ACK] Seq=73 Ack=5464 Win=65616 Len=0
265;5.418290;192.168.66.22;ssl.gstatic.com;TCP;60;50401 > https(443) [ACK] Seq=73 Ack=8198 Win=65616 Len=0
266;5.418291;192.168.66.22;ssl.gstatic.com;TCP;60;50401 > https(443) [ACK] Seq=73 Ack=9992 Win=65188 Len=0
267;5.418461;www.google.at;192.168.66.22;TLSv1;1421;Application Data
268;5.418713;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=123969 Win=65616 Len=0
269;5.435599;www.google.at;192.168.66.22;TLSv1;1421;Application Data
270;5.436273;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=126703 Win=65616 Len=0
271;5.438132;ssl.gstatic.com;192.168.66.22;TLSv1;399;Server Key Exchange, Server Hello Done
272;5.438186;ssl.gstatic.com;192.168.66.22;TLSv1;399;Server Key Exchange, Server Hello Done
273;5.438218;www.google.at;192.168.66.22;TLSv1;113;Change Cipher Spec, Encrypted Handshake Message
274;5.438873;www.google.at;192.168.66.22;TLSv1;1421;Application Data
275;5.441124;192.168.66.22;www.google.at;TLSv1;683;Application Data
276;5.451455;192.168.66.22;ssl.gstatic.com;TLSv1;188;Client Key Exchange, Change Cipher Spec, Encrypted Handshake Message
277;5.452865;192.168.66.22;ssl.gstatic.com;TLSv1;188;Client Key Exchange, Change Cipher Spec, Encrypted Handshake Message
278;5.504672;www.google.at;192.168.66.22;TLSv1;1421;Application Data
279;5.505350;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=129437 Win=65616 Len=0
280;5.505454;www.google.at;192.168.66.22;TLSv1;1421;Application Data
281;5.505523;www.google.at;192.168.66.22;TLSv1;1421;Application Data
282;5.506202;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=132171 Win=65616 Len=0
283;5.515373;www.google.at;192.168.66.22;TLSv1;1421;Application Data
284;5.516156;www.google.at;192.168.66.22;TLSv1;1421;Application Data
285;5.516228;www.google.at;192.168.66.22;TLSv1;1421;Application Data
286;5.516507;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=134905 Win=76552 Len=0
287;5.544082;www.google.at;192.168.66.22;TLSv1;1421;Application Data
288;5.544779;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=137639 Win=76552 Len=0
289;5.544871;www.google.at;192.168.66.22;TLSv1;1421;Application Data
290;5.555040;www.google.at;192.168.66.22;TLSv1;1421;Application Data
291;5.555733;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=140373 Win=76552 Len=0
292;5.555825;www.google.at;192.168.66.22;TLSv1;1421;Application Data
293;5.555891;www.google.at;192.168.66.22;TLSv1;1421;Application Data
294;5.556602;www.google.at;192.168.66.22;TLSv1;1421;Application Data
295;5.556610;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=143107 Win=76552 Len=0
296;5.556669;www.google.at;192.168.66.22;TLSv1;1421;Application Data
297;5.556727;www.google.at;192.168.66.22;TLSv1;1421;Application Data
298;5.557329;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=145841 Win=76552 Len=0
299;5.575505;www.google.at;192.168.66.22;TLSv1;1421;Application Data, Application Data
300;5.576184;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=148575 Win=76552 Len=0
301;5.576279;www.google.at;192.168.66.22;TLSv1;1421;Application Data
302;5.576349;www.google.at;192.168.66.22;TLSv1;1421;Application Data
303;5.576413;www.google.at;192.168.66.22;TLSv1;1421;Application Data
304;5.577002;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=151309 Win=76552 Len=0
305;5.593884;www.google.at;192.168.66.22;TLSv1;1421;Application Data
306;5.593948;www.google.at;192.168.66.22;TLSv1;1419;Application Data
307;5.594584;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=154043 Win=90220 Len=0
308;5.598552;www.google.at;192.168.66.22;TLSv1;939;Application Data
309;5.598885;192.168.66.22;www.google.at;TCP;60;50397 > https(443) [ACK] Seq=929 Ack=5834 Win=65616 Len=0
310;5.599303;www.google.at;192.168.66.22;TLSv1;1421;Application Data
311;5.599363;www.google.at;192.168.66.22;TLSv1;1421;Application Data
312;5.600064;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=156777 Win=90220 Len=0
313;5.605174;www.google.at;192.168.66.22;TLSv1;1421;Application Data
314;5.605943;www.google.at;192.168.66.22;TLSv1;1419;Application Data
315;5.606010;www.google.at;192.168.66.22;TLSv1;1419;Application Data
316;5.606066;www.google.at;192.168.66.22;TLSv1;1419;Application Data
317;5.606670;192.168.66.22;www.google.at;TCP;60;50399 > https(443) [ACK] Seq=929 Ack=6314 Win=65616 Len=0
318;5.606728;www.google.at;192.168.66.22;TLSv1;1421;Application Data
319;5.606795;www.google.at;192.168.66.22;TLSv1;1417;Application Data
320;5.606853;www.google.at;192.168.66.22;TLSv1;1419;Application Data
321;5.606911;www.google.at;192.168.66.22;TLSv1;1419;Application Data
322;5.607058;192.168.66.22;www.google.at;TCP;60;50399 > https(443) [ACK] Seq=929 Ack=9046 Win=65616 Len=0
323;5.607398;192.168.66.22;www.google.at;TCP;60;50399 > https(443) [ACK] Seq=929 Ack=11774 Win=65616 Len=0
324;5.611864;www.google.at;192.168.66.22;TLSv1;1419;Application Data
325;5.611921;www.gstatic.com;192.168.66.22;TCP;54;https(443) > 50403 [ACK] Seq=1 Ack=73 Win=43008 Len=0
326;5.612569;192.168.66.22;www.google.at;TCP;60;50399 > https(443) [ACK] Seq=929 Ack=14504 Win=65616 Len=0
327;5.612657;www.gstatic.com;192.168.66.22;TLSv1;1421;Server Hello
328;5.612725;www.gstatic.com;192.168.66.22;TCP;1421;https(443) > 50403 [ACK] Seq=1368 Ack=73 Win=43008 Len=1367 [TCP segment of a reassembled PDU]
329;5.613429;www.gstatic.com;192.168.66.22;TCP;1416;https(443) > 50403 [PSH, ACK] Seq=2735 Ack=73 Win=43008 Len=1362 [TCP segment of a reassembled PDU]
330;5.613448;192.168.66.22;www.gstatic.com;TCP;60;50403 > https(443) [ACK] Seq=73 Ack=2735 Win=65616 Len=0
331;5.613503;www.gstatic.com;192.168.66.22;TCP;1421;https(443) > 50403 [ACK] Seq=4097 Ack=73 Win=43008 Len=1367 [TCP segment of a reassembled PDU]
332;5.613563;www.gstatic.com;192.168.66.22;TCP;1421;https(443) > 50403 [ACK] Seq=5464 Ack=73 Win=43008 Len=1367 [TCP segment of a reassembled PDU]
333;5.614191;192.168.66.22;www.gstatic.com;TCP;60;50403 > https(443) [ACK] Seq=73 Ack=5464 Win=65616 Len=0
334;5.655907;www.gstatic.com;192.168.66.22;TCP;1421;https(443) > 50403 [ACK] Seq=6831 Ack=73 Win=43008 Len=1367 [TCP segment of a reassembled PDU]
335;5.656603;192.168.66.22;www.gstatic.com;TCP;60;50403 > https(443) [ACK] Seq=73 Ack=8198 Win=65616 Len=0
336;5.656697;www.gstatic.com;192.168.66.22;TCP;1421;https(443) > 50403 [ACK] Seq=8198 Ack=73 Win=43008 Len=1367 [TCP segment of a reassembled PDU]
337;5.656753;www.gstatic.com;192.168.66.22;TLSv1;481;Certificate
338;5.656784;www.gstatic.com;192.168.66.22;TCP;54;https(443) > 50402 [ACK] Seq=1 Ack=73 Win=43008 Len=0
339;5.656841;www.gstatic.com;192.168.66.22;TLSv1;1421;Server Hello
340;5.656903;www.gstatic.com;192.168.66.22;TCP;1421;https(443) > 50402 [ACK] Seq=1368 Ack=73 Win=43008 Len=1367 [TCP segment of a reassembled PDU]
341;5.657363;192.168.66.22;www.gstatic.com;TCP;60;50403 > https(443) [ACK] Seq=73 Ack=9992 Win=65616 Len=0
342;5.657364;192.168.66.22;www.gstatic.com;TCP;60;50402 > https(443) [ACK] Seq=73 Ack=2735 Win=65616 Len=0
343;5.657451;www.gstatic.com;192.168.66.22;TCP;1416;https(443) > 50402 [PSH, ACK] Seq=2735 Ack=73 Win=43008 Len=1362 [TCP segment of a reassembled PDU]
344;5.657515;www.gstatic.com;192.168.66.22;TCP;1421;https(443) > 50402 [ACK] Seq=4097 Ack=73 Win=43008 Len=1367 [TCP segment of a reassembled PDU]
345;5.658205;192.168.66.22;www.gstatic.com;TCP;60;50402 > https(443) [ACK] Seq=73 Ack=5464 Win=65616 Len=0
346;5.676667;www.gstatic.com;192.168.66.22;TCP;1421;https(443) > 50402 [ACK] Seq=5464 Ack=73 Win=43008 Len=1367 [TCP segment of a reassembled PDU]
347;5.677451;www.gstatic.com;192.168.66.22;TCP;1421;https(443) > 50402 [ACK] Seq=6831 Ack=73 Win=43008 Len=1367 [TCP segment of a reassembled PDU]
348;5.677519;www.gstatic.com;192.168.66.22;TCP;1421;https(443) > 50402 [ACK] Seq=8198 Ack=73 Win=43008 Len=1367 [TCP segment of a reassembled PDU]
349;5.677572;www.gstatic.com;192.168.66.22;TLSv1;481;Certificate
350;5.677613;www.gstatic.com;192.168.66.22;TLSv1;399;Server Key Exchange, Server Hello Done
351;5.677661;www.gstatic.com;192.168.66.22;TLSv1;399;Server Key Exchange, Server Hello Done
352;5.678121;192.168.66.22;www.gstatic.com;TCP;60;50402 > https(443) [ACK] Seq=73 Ack=8198 Win=65616 Len=0
353;5.678122;192.168.66.22;www.gstatic.com;TCP;60;50402 > https(443) [ACK] Seq=73 Ack=9992 Win=65616 Len=0
354;5.700655;www.google.at;192.168.66.22;TLSv1;1421;Application Data
355;5.701337;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=159511 Win=97056 Len=0
356;5.701442;www.google.at;192.168.66.22;TLSv1;1421;Application Data
357;5.701509;www.google.at;192.168.66.22;TLSv1;1421;Application Data
358;5.702195;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=162245 Win=97056 Len=0
359;5.708331;192.168.66.22;www.gstatic.com;TLSv1;188;Client Key Exchange, Change Cipher Spec, Encrypted Handshake Message
360;5.712571;192.168.66.22;www.gstatic.com;TLSv1;188;Client Key Exchange, Change Cipher Spec, Encrypted Handshake Message
361;5.724402;www.google.at;192.168.66.22;TLSv1;1421;Application Data
362;5.725140;www.google.at;192.168.66.22;TLSv1;1421;Application Data
363;5.725195;ssl.gstatic.com;192.168.66.22;TLSv1;113;Change Cipher Spec, Encrypted Handshake Message
364;5.725229;ssl.gstatic.com;192.168.66.22;TLSv1;113;Change Cipher Spec, Encrypted Handshake Message
365;5.725271;www.google.at;192.168.66.22;TLSv1;763;Application Data
366;5.725814;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=164979 Win=97056 Len=0
367;5.725982;www.google.at;192.168.66.22;TLSv1;1421;Application Data
368;5.726057;www.google.at;192.168.66.22;TLSv1;1421;Application Data
369;5.726118;www.google.at;192.168.66.22;TLSv1;1421;Application Data
370;5.726701;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=167713 Win=97056 Len=0
371;5.729589;www.google.at;192.168.66.22;TLSv1;1421;Application Data
372;5.730254;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=170447 Win=97056 Len=0
373;5.734757;192.168.66.22;ssl.gstatic.com;TLSv1;459;Application Data
374;5.749891;www.google.at;192.168.66.22;TLSv1;1421;Application Data
375;5.749958;www.google.at;192.168.66.22;TLSv1;1421;Application Data
376;5.750018;www.google.at;192.168.66.22;TLSv1;1421;Application Data
377;5.750611;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=173181 Win=103892 Len=0
378;5.768065;www.google.at;192.168.66.22;TLSv1;1421;Application Data
379;5.768739;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=1513 Ack=175915 Win=103892 Len=0
380;5.793662;www.google.at;192.168.66.22;TLSv1;1357;Application Data, Application Data
381;5.794432;www.google.at;192.168.66.22;TLSv1;1421;Application Data
382;5.794499;www.google.at;192.168.66.22;TLSv1;1421;Application Data
383;5.795196;192.168.66.22;www.google.at;TCP;60;50399 > https(443) [ACK] Seq=929 Ack=17238 Win=65616 Len=0
384;5.884009;www.google.at;192.168.66.22;TLSv1;1063;Application Data
385;5.920968;192.168.66.22;www.google.at;TLSv1;699;Application Data
386;5.928611;192.168.66.22;oz-in-f103.1e100.net;TCP;66;50404 > https(443) [SYN] Seq=0 Win=8192 Len=0 MSS=1460 WS=4 SACK_PERM
387;5.928612;192.168.66.22;oz-in-f103.1e100.net;TCP;66;50405 > https(443) [SYN] Seq=0 Win=8192 Len=0 MSS=1460 WS=4 SACK_PERM
388;5.932417;www.gstatic.com;192.168.66.22;TLSv1;113;Change Cipher Spec, Encrypted Handshake Message
389;5.932453;www.gstatic.com;192.168.66.22;TLSv1;113;Change Cipher Spec, Encrypted Handshake Message
390;5.932513;ssl.gstatic.com;192.168.66.22;TLSv1;1419;Application Data
391;5.932573;ssl.gstatic.com;192.168.66.22;TLSv1;1419;Application Data
392;5.933206;ssl.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
393;5.933246;192.168.66.22;ssl.gstatic.com;TCP;60;50401 > https(443) [ACK] Seq=612 Ack=13126 Win=65616 Len=0
394;5.933271;ssl.gstatic.com;192.168.66.22;TLSv1;1417;Application Data
395;5.933338;ssl.gstatic.com;192.168.66.22;TLSv1;1419;Application Data
396;5.933579;192.168.66.22;www.google.at;TCP;60;50398 > https(443) [ACK] Seq=913 Ack=4293 Win=65616 Len=0
397;5.933581;192.168.66.22;ssl.gstatic.com;TCP;60;50400 > https(443) [ACK] Seq=207 Ack=10396 Win=65212 Len=0
398;5.933947;192.168.66.22;ssl.gstatic.com;TCP;60;50401 > https(443) [ACK] Seq=612 Ack=15856 Win=65616 Len=0
399;5.933955;ssl.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
400;5.934015;ssl.gstatic.com;192.168.66.22;TLSv1;1417;Application Data
401;5.934074;ssl.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
402;5.934132;ssl.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
403;5.934290;192.168.66.22;ssl.gstatic.com;TCP;60;50401 > https(443) [ACK] Seq=612 Ack=18588 Win=65616 Len=0
404;5.934672;192.168.66.22;ssl.gstatic.com;TCP;60;50401 > https(443) [ACK] Seq=612 Ack=21318 Win=62884 Len=0
405;5.938671;192.168.66.22;www.google.at;TLSv1;747;Application Data
406;5.943793;192.168.66.22;ssl.gstatic.com;TCP;60;50401 > https(443) [ACK] Seq=612 Ack=22685 Win=65616 Len=0
407;5.947484;192.168.66.22;www.google.at;TLSv1;891;Application Data
408;5.949909;192.168.66.22;www.gstatic.com;TLSv1;507;Application Data
409;6.084666;ssl.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
410;6.084730;ssl.gstatic.com;192.168.66.22;TLSv1;1109;Application Data
411;6.085400;192.168.66.22;ssl.gstatic.com;TCP;60;50401 > https(443) [ACK] Seq=612 Ack=25107 Win=65616 Len=0
412;6.094179;192.168.66.22;www.google.at;TCP;60;50399 > https(443) [ACK] Seq=929 Ack=18247 Win=64604 Len=0
413;6.125427;oz-in-f103.1e100.net;192.168.66.22;TCP;66;https(443) > 50404 [SYN, ACK] Seq=0 Ack=1 Win=42900 Len=0 MSS=1367 SACK_PERM WS=128
414;6.125485;www.google.at;192.168.66.22;TLSv1;1419;Application Data
415;6.125549;www.google.at;192.168.66.22;TLSv1;1421;Application Data
416;6.125761;192.168.66.22;oz-in-f103.1e100.net;TCP;60;50404 > https(443) [ACK] Seq=1 Ack=1 Win=65616 Len=0
417;6.126181;www.google.at;192.168.66.22;TLSv1;1417;Application Data
418;6.126227;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=2350 Ack=179950 Win=99856 Len=0
419;6.126229;192.168.66.22;oz-in-f103.1e100.net;SSLv2;126;Client Hello
420;6.126241;www.google.at;192.168.66.22;TLSv1;1421;Application Data
421;6.126304;www.google.at;192.168.66.22;TLSv1;1421;Application Data
422;6.126360;www.google.at;192.168.66.22;TLSv1;1421;Application Data
423;6.126417;www.google.at;192.168.66.22;TLSv1;1413;Application Data
424;6.126483;www.google.at;192.168.66.22;TLSv1;1421;Application Data
425;6.126897;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=2350 Ack=182680 Win=97124 Len=0
426;6.126899;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=2350 Ack=185414 Win=94392 Len=0
427;6.126966;www.google.at;192.168.66.22;TLSv1;1421;Application Data
428;6.127026;www.google.at;192.168.66.22;TLSv1;1421;Application Data
429;6.127292;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=2350 Ack=188140 Win=91664 Len=0
430;6.127710;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=2350 Ack=190874 Win=88932 Len=0
431;6.136491;192.168.66.22;www.google.at;TLSv1;827;Application Data
432;6.139762;192.168.66.22;www.gstatic.com;TCP;60;50403 > https(443) [ACK] Seq=207 Ack=10396 Win=65212 Len=0
433;6.141023;www.google.at;192.168.66.22;TLSv1;1421;Application Data
434;6.142549;www.google.at;192.168.66.22;TLSv1;315;Application Data
435;6.142616;www.google.at;192.168.66.22;TLSv1;1421;Application Data
436;6.143269;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=2350 Ack=193608 Win=86196 Len=0
437;6.143335;www.google.at;192.168.66.22;TLSv1;1421;Application Data
438;6.143403;www.google.at;192.168.66.22;TLSv1;1421;Application Data
439;6.144084;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=2350 Ack=196342 Win=83464 Len=0
440;6.146032;www.google.at;192.168.66.22;TLSv1;1405;Application Data
441;6.146816;www.google.at;192.168.66.22;TLSv1;1419;Application Data
442;6.146883;www.google.at;192.168.66.22;TLSv1;1421;Application Data
443;6.147492;192.168.66.22;www.google.at;TLSv1;539;Application Data
444;6.147495;192.168.66.22;www.google.at;TCP;60;50397 > https(443) [ACK] Seq=1574 Ack=8566 Win=65616 Len=0
445;6.147601;www.google.at;192.168.66.22;TLSv1;1417;Application Data
446;6.147667;www.google.at;192.168.66.22;TLSv1;1421;Application Data
447;6.147727;www.google.at;192.168.66.22;TLSv1;1421;Application Data
448;6.148316;192.168.66.22;www.google.at;TCP;60;50397 > https(443) [ACK] Seq=1574 Ack=11296 Win=65616 Len=0
449;6.148377;www.google.at;192.168.66.22;TLSv1;1415;Application Data
450;6.148443;www.google.at;192.168.66.22;TLSv1;1421;Application Data
451;6.148709;192.168.66.22;www.google.at;TCP;60;50397 > https(443) [ACK] Seq=1574 Ack=14024 Win=65616 Len=0
452;6.151611;192.168.66.22;www.google.at;TCP;66;50406 > https(443) [SYN] Seq=0 Win=8192 Len=0 MSS=1460 WS=4 SACK_PERM
453;6.151613;192.168.66.22;www.google.at;TCP;66;50407 > https(443) [SYN] Seq=0 Win=8192 Len=0 MSS=1460 WS=4 SACK_PERM
454;6.159040;www.google.at;192.168.66.22;TLSv1;1421;Application Data
455;6.159097;www.google.at;192.168.66.22;TLSv1;727;Application Data
456;6.159732;192.168.66.22;www.google.at;TCP;60;50397 > https(443) [ACK] Seq=1574 Ack=16758 Win=65616 Len=0
457;6.159825;www.google.at;192.168.66.22;TLSv1;1421;Application Data
458;6.159895;www.google.at;192.168.66.22;TLSv1;1421;Application Data
459;6.160496;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=2350 Ack=199060 Win=80744 Len=0
460;6.160601;www.google.at;192.168.66.22;TLSv1;1421;Application Data
461;6.161270;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=2350 Ack=201794 Win=78012 Len=0
462;6.176675;www.google.at;192.168.66.22;TLSv1;1413;Application Data
463;6.177458;www.google.at;192.168.66.22;TLSv1;1421;Application Data
464;6.177526;www.google.at;192.168.66.22;TLSv1;1421;Application Data
465;6.178133;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=2350 Ack=204520 Win=75284 Len=0
466;6.207353;www.google.at;192.168.66.22;TLSv1;871;Application Data
467;6.207683;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=2350 Ack=206704 Win=87488 Len=0
468;6.208111;www.gstatic.com;192.168.66.22;TLSv1;1419;Application Data
469;6.208173;www.gstatic.com;192.168.66.22;TLSv1;1419;Application Data
470;6.208232;www.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
471;6.208829;192.168.66.22;www.gstatic.com;TCP;60;50402 > https(443) [ACK] Seq=660 Ack=13126 Win=65616 Len=0
472;6.229872;www.gstatic.com;192.168.66.22;TLSv1;1417;Application Data
473;6.229921;oz-in-f103.1e100.net;192.168.66.22;TCP;66;https(443) > 50405 [SYN, ACK] Seq=0 Ack=1 Win=42900 Len=0 MSS=1367 SACK_PERM WS=128
474;6.230560;192.168.66.22;www.gstatic.com;TCP;60;50402 > https(443) [ACK] Seq=660 Ack=15856 Win=65616 Len=0
475;6.230562;192.168.66.22;oz-in-f103.1e100.net;TCP;60;50405 > https(443) [ACK] Seq=1 Ack=1 Win=65616 Len=0
476;6.230649;www.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
477;6.231418;www.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
478;6.231486;www.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
479;6.232088;192.168.66.22;www.gstatic.com;TCP;60;50402 > https(443) [ACK] Seq=660 Ack=18590 Win=65616 Len=0
480;6.233078;192.168.66.22;oz-in-f103.1e100.net;SSLv2;126;Client Hello
481;6.248304;www.gstatic.com;192.168.66.22;TLSv1;1413;Application Data
482;6.248638;192.168.66.22;www.google.at;TLSv1;731;Application Data
483;6.248640;192.168.66.22;www.gstatic.com;TCP;60;50402 > https(443) [ACK] Seq=660 Ack=21316 Win=65616 Len=0
484;6.271579;www.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
485;6.271644;www.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
486;6.271706;www.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
487;6.272301;192.168.66.22;www.gstatic.com;TCP;60;50402 > https(443) [ACK] Seq=660 Ack=24050 Win=65616 Len=0
488;6.315816;www.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
489;6.316502;192.168.66.22;www.gstatic.com;TCP;60;50402 > https(443) [ACK] Seq=660 Ack=26784 Win=65616 Len=0
490;6.317630;oz-in-f103.1e100.net;192.168.66.22;TCP;54;https(443) > 50404 [ACK] Seq=1 Ack=73 Win=43008 Len=0
491;6.318429;oz-in-f103.1e100.net;192.168.66.22;TLSv1;1421;Server Hello
492;6.321442;192.168.66.22;www.google.at;TLSv1;875;Application Data
493;6.330813;oz-in-f103.1e100.net;192.168.66.22;TCP;1421;https(443) > 50404 [ACK] Seq=1368 Ack=73 Win=43008 Len=1367 [TCP segment of a reassembled PDU]
494;6.330872;oz-in-f103.1e100.net;192.168.66.22;TLSv1;827;Certificate, Server Key Exchange, Server Hello Done
495;6.331528;192.168.66.22;oz-in-f103.1e100.net;TCP;60;50404 > https(443) [ACK] Seq=73 Ack=2735 Win=65616 Len=0
496;6.352084;192.168.66.22;oz-in-f103.1e100.net;TLSv1;188;Client Key Exchange, Change Cipher Spec, Encrypted Handshake Message
497;6.357806;www.google.at;192.168.66.22;TLSv1;1419;Application Data
498;6.357860;www.google.at;192.168.66.22;TLSv1;139;Application Data
499;6.357892;www.google.at;192.168.66.22;TCP;66;https(443) > 50406 [SYN, ACK] Seq=0 Ack=1 Win=42900 Len=0 MSS=1367 SACK_PERM WS=128
500;6.357923;www.google.at;192.168.66.22;TCP;66;https(443) > 50407 [SYN, ACK] Seq=0 Ack=1 Win=42900 Len=0 MSS=1367 SACK_PERM WS=128
501;6.358486;192.168.66.22;www.google.at;TCP;60;50398 > https(443) [ACK] Seq=2091 Ack=6004 Win=65616 Len=0
502;6.358488;192.168.66.22;www.google.at;TCP;60;50406 > https(443) [ACK] Seq=1 Ack=1 Win=65616 Len=0
503;6.358489;192.168.66.22;www.google.at;TCP;60;50407 > https(443) [ACK] Seq=1 Ack=1 Win=65616 Len=0
504;6.358914;192.168.66.22;www.google.at;TLSv1;203;Client Hello (SNI=www.google.at)
505;6.358916;192.168.66.22;www.google.at;TLSv1;203;Client Hello (SNI=www.google.at)
506;6.400466;www.google.at;192.168.66.22;TLSv1;923;Application Data
507;6.400519;www.google.at;192.168.66.22;TLSv1;155;Application Data
508;6.400793;192.168.66.22;www.google.at;TCP;60;50399 > https(443) [ACK] Seq=1702 Ack=19217 Win=65616 Len=0
509;6.417575;www.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
510;6.417641;www.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
511;6.417703;www.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
512;6.418307;192.168.66.22;www.gstatic.com;TCP;60;50402 > https(443) [ACK] Seq=660 Ack=29518 Win=65616 Len=0
513;6.425948;www.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
514;6.426627;192.168.66.22;www.gstatic.com;TCP;60;50402 > https(443) [ACK] Seq=660 Ack=32252 Win=65616 Len=0
515;6.426738;www.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
516;6.426804;www.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
517;6.426861;www.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
518;6.427458;192.168.66.22;www.gstatic.com;TCP;60;50402 > https(443) [ACK] Seq=660 Ack=34986 Win=65616 Len=0
519;6.436391;192.168.66.22;www.google.at;TLSv1;747;Application Data
520;6.437853;www.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
521;6.438183;192.168.66.22;www.gstatic.com;TCP;60;50402 > https(443) [ACK] Seq=660 Ack=37720 Win=65616 Len=0
522;6.438604;www.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
523;6.438665;www.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
524;6.438723;www.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
525;6.439319;192.168.66.22;www.gstatic.com;TCP;60;50402 > https(443) [ACK] Seq=660 Ack=40454 Win=65616 Len=0
526;6.450983;192.168.66.22;www.google.at;TLSv1;875;Application Data
527;6.467840;www.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
528;6.468514;192.168.66.22;www.gstatic.com;TCP;60;50402 > https(443) [ACK] Seq=660 Ack=43188 Win=65616 Len=0
529;6.468573;www.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
530;6.468635;www.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
531;6.469320;192.168.66.22;www.gstatic.com;TCP;60;50402 > https(443) [ACK] Seq=660 Ack=45922 Win=65616 Len=0
532;6.469373;www.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
533;6.472524;www.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
534;6.473199;192.168.66.22;www.gstatic.com;TCP;60;50402 > https(443) [ACK] Seq=660 Ack=48656 Win=65616 Len=0
535;6.490859;www.google.at;192.168.66.22;TLSv1;315;Application Data
536;6.491630;www.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
537;6.491702;www.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
538;6.491765;www.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
539;6.492379;192.168.66.22;www.gstatic.com;TCP;60;50402 > https(443) [ACK] Seq=660 Ack=51390 Win=65616 Len=0
540;6.510648;www.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
541;6.510719;www.gstatic.com;192.168.66.22;TLSv1;1099;Application Data
542;6.511357;192.168.66.22;www.gstatic.com;TCP;60;50402 > https(443) [ACK] Seq=660 Ack=54124 Win=65616 Len=0
543;6.511412;www.gstatic.com;192.168.66.22;TLSv1;1419;Application Data
544;6.511744;192.168.66.22;www.gstatic.com;TCP;60;50402 > https(443) [ACK] Seq=660 Ack=56534 Win=65616 Len=0
545;6.512141;www.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
546;6.515025;www.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
547;6.515080;oz-in-f103.1e100.net;192.168.66.22;TCP;54;https(443) > 50405 [ACK] Seq=1 Ack=73 Win=43008 Len=0
548;6.515723;192.168.66.22;www.gstatic.com;TCP;60;50402 > https(443) [ACK] Seq=660 Ack=59268 Win=65616 Len=0
549;6.515796;oz-in-f103.1e100.net;192.168.66.22;TLSv1;1421;Server Hello
550;6.515864;oz-in-f103.1e100.net;192.168.66.22;TCP;1421;https(443) > 50405 [ACK] Seq=1368 Ack=73 Win=43008 Len=1367 [TCP segment of a reassembled PDU]
551;6.516568;192.168.66.22;oz-in-f103.1e100.net;TCP;60;50405 > https(443) [ACK] Seq=73 Ack=2735 Win=65616 Len=0
552;6.544835;oz-in-f103.1e100.net;192.168.66.22;TLSv1;827;Certificate, Server Key Exchange, Server Hello Done
553;6.544883;www.google.at;192.168.66.22;TCP;54;https(443) > 50406 [ACK] Seq=1 Ack=150 Win=44032 Len=0
554;6.544915;www.google.at;192.168.66.22;TCP;54;https(443) > 50407 [ACK] Seq=1 Ack=150 Win=44032 Len=0
555;6.545624;www.google.at;192.168.66.22;TLSv1;1421;Server Hello
556;6.546373;www.google.at;192.168.66.22;TCP;1421;https(443) > 50406 [ACK] Seq=1368 Ack=150 Win=44032 Len=1367 [TCP segment of a reassembled PDU]
557;6.547049;192.168.66.22;www.google.at;TCP;60;50406 > https(443) [ACK] Seq=150 Ack=2735 Win=65616 Len=0
558;6.547887;www.google.at;192.168.66.22;TLSv1;844;Certificate, Server Key Exchange, Server Hello Done
559;6.547954;www.google.at;192.168.66.22;TLSv1;1421;Server Hello
560;6.549789;www.google.at;192.168.66.22;TCP;1421;https(443) > 50407 [ACK] Seq=1368 Ack=150 Win=44032 Len=1367 [TCP segment of a reassembled PDU]
561;6.549850;www.google.at;192.168.66.22;TLSv1;844;Certificate, Server Key Exchange, Server Hello Done
562;6.549884;oz-in-f103.1e100.net;192.168.66.22;TLSv1;113;Change Cipher Spec, Encrypted Handshake Message
563;6.550119;192.168.66.22;www.google.at;TCP;60;50407 > https(443) [ACK] Seq=150 Ack=2735 Win=65616 Len=0
564;6.555709;www.google.at;192.168.66.22;TLSv1;1003;Application Data
565;6.555763;www.google.at;192.168.66.22;TLSv1;171;Application Data
566;6.556046;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=3171 Ack=207770 Win=86420 Len=0
567;6.572543;192.168.66.22;www.google.at;TLSv1;188;Client Key Exchange, Change Cipher Spec, Encrypted Handshake Message
568;6.574780;192.168.66.22;oz-in-f103.1e100.net;TLSv1;459;Application Data
569;6.586103;192.168.66.22;www.google.at;TLSv1;188;Client Key Exchange, Change Cipher Spec, Encrypted Handshake Message
570;6.591280;192.168.66.22;oz-in-f103.1e100.net;TLSv1;188;Client Key Exchange, Change Cipher Spec, Encrypted Handshake Message
571;6.616614;www.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
572;6.616681;www.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
573;6.616751;www.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
574;6.617328;192.168.66.22;www.gstatic.com;TCP;60;50402 > https(443) [ACK] Seq=660 Ack=62002 Win=65616 Len=0
575;6.637363;www.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
576;6.638030;192.168.66.22;www.gstatic.com;TCP;60;50402 > https(443) [ACK] Seq=660 Ack=64736 Win=65616 Len=0
577;6.638133;www.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
578;6.638203;www.gstatic.com;192.168.66.22;TLSv1;1421;Application Data
579;6.638880;192.168.66.22;www.gstatic.com;TCP;60;50402 > https(443) [ACK] Seq=660 Ack=67470 Win=65616 Len=0
580;6.678248;www.gstatic.com;192.168.66.22;TLSv1;635;Application Data
581;6.678302;www.google.at;192.168.66.22;TLSv1;315;Application Data
582;6.709604;www.google.at;192.168.66.22;TLSv1;1067;Application Data
583;6.709658;www.google.at;192.168.66.22;TLSv1;203;Application Data
584;6.709935;192.168.66.22;www.google.at;TCP;60;50397 > https(443) [ACK] Seq=2251 Ack=17692 Win=64680 Len=0
585;6.710301;192.168.66.22;www.google.at;TCP;60;50399 > https(443) [ACK] Seq=2523 Ack=20379 Win=64452 Len=0
586;6.743227;192.168.66.22;74.125.232.69;TCP;66;50408 > https(443) [SYN] Seq=0 Win=8192 Len=0 MSS=1460 WS=4 SACK_PERM
587;6.743229;192.168.66.22;74.125.232.69;TCP;66;50409 > https(443) [SYN] Seq=0 Win=8192 Len=0 MSS=1460 WS=4 SACK_PERM
588;6.781041;192.168.66.22;www.google.at;TLSv1;827;Application Data
589;6.859143;www.google.at;192.168.66.22;TLSv1;113;Change Cipher Spec, Encrypted Handshake Message
590;6.859197;www.google.at;192.168.66.22;TLSv1;113;Change Cipher Spec, Encrypted Handshake Message
591;6.859254;oz-in-f103.1e100.net;192.168.66.22;TLSv1;827;Application Data
592;6.873100;192.168.66.22;www.google.at;TLSv1;1179;Application Data
593;6.873531;192.168.66.22;www.google.at;TLSv1;891;Application Data
594;6.878703;192.168.66.22;www.gstatic.com;TCP;60;50402 > https(443) [ACK] Seq=660 Ack=68051 Win=65032 Len=0
595;6.880300;192.168.66.22;www.google.at;TLSv1;699;Application Data
596;6.881196;192.168.66.22;www.google.at;TCP;60;50398 > https(443) [ACK] Seq=2784 Ack=6265 Win=65352 Len=0
597;7.025152;oz-in-f103.1e100.net;192.168.66.22;TLSv1;113;Change Cipher Spec, Encrypted Handshake Message
598;7.025207;74.125.232.69;192.168.66.22;TCP;66;https(443) > 50409 [SYN, ACK] Seq=0 Ack=1 Win=42900 Len=0 MSS=1367 SACK_PERM WS=128
599;7.025237;74.125.232.69;192.168.66.22;TCP;66;https(443) > 50408 [SYN, ACK] Seq=0 Ack=1 Win=42900 Len=0 MSS=1367 SACK_PERM WS=128
600;7.025484;192.168.66.22;74.125.232.69;TCP;60;50409 > https(443) [ACK] Seq=1 Ack=1 Win=65616 Len=0
601;7.025486;192.168.66.22;74.125.232.69;TCP;60;50408 > https(443) [ACK] Seq=1 Ack=1 Win=65616 Len=0
602;7.031998;192.168.66.22;www.google.at;TLSv1;891;Application Data
603;7.032364;192.168.66.22;74.125.232.69;SSLv2;126;Client Hello
604;7.032366;192.168.66.22;74.125.232.69;SSLv2;126;Client Hello
605;7.070919;192.168.66.22;oz-in-f103.1e100.net;TCP;60;50404 > https(443) [ACK] Seq=612 Ack=4340 Win=65616 Len=0
606;7.122825;www.google.at;192.168.66.22;TCP;54;https(443) > 50397 [ACK] Seq=17692 Ack=3024 Win=50560 Len=0
607;7.122866;www.google.at;192.168.66.22;TLSv1;315;Application Data
608;7.122920;www.google.at;192.168.66.22;TLSv1;1067;Application Data
609;7.122960;www.google.at;192.168.66.22;TLSv1;139;Application Data
610;7.123543;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=4008 Ack=208868 Win=87488 Len=0
611;7.123573;www.google.at;192.168.66.22;TLSv1;1419;Application Data
612;7.123637;www.google.at;192.168.66.22;TLSv1;1421;Application Data
613;7.124329;192.168.66.22;www.google.at;TCP;60;50407 > https(443) [ACK] Seq=929 Ack=6316 Win=65616 Len=0
614;7.124389;www.google.at;192.168.66.22;TLSv1;1417;Application Data
615;7.124458;www.google.at;192.168.66.22;TLSv1;1421;Application Data
616;7.124517;www.google.at;192.168.66.22;TLSv1;1421;Application Data
617;7.125110;192.168.66.22;www.google.at;TCP;60;50407 > https(443) [ACK] Seq=929 Ack=9046 Win=65616 Len=0
618;7.125185;www.google.at;192.168.66.22;TLSv1;1415;Application Data
619;7.125253;www.google.at;192.168.66.22;TLSv1;1421;Application Data
620;7.125312;www.google.at;192.168.66.22;TLSv1;1417;Application Data
621;7.125853;192.168.66.22;www.google.at;TCP;60;50407 > https(443) [ACK] Seq=929 Ack=11774 Win=65616 Len=0
622;7.125855;192.168.66.22;www.google.at;TCP;60;50407 > https(443) [ACK] Seq=929 Ack=14504 Win=65616 Len=0
623;7.125958;www.google.at;192.168.66.22;TLSv1;1421;Application Data
624;7.165008;192.168.66.22;www.google.at;TLSv1;891;Application Data
625;7.218956;www.google.at;192.168.66.22;TLSv1;1421;Application Data
626;7.219652;192.168.66.22;www.google.at;TCP;60;50407 > https(443) [ACK] Seq=929 Ack=17238 Win=65616 Len=0
627;7.231320;192.168.66.22;oz-in-f103.1e100.net;TCP;60;50405 > https(443) [ACK] Seq=207 Ack=3567 Win=64784 Len=0
628;7.251831;74.125.232.69;192.168.66.22;TCP;54;https(443) > 50409 [ACK] Seq=1 Ack=73 Win=43008 Len=0
629;7.251867;74.125.232.69;192.168.66.22;TCP;54;https(443) > 50408 [ACK] Seq=1 Ack=73 Win=43008 Len=0
630;7.251926;74.125.232.69;192.168.66.22;TLSv1;1421;Server Hello
631;7.252615;74.125.232.69;192.168.66.22;TCP;1421;https(443) > 50409 [ACK] Seq=1368 Ack=73 Win=43008 Len=1367 [TCP segment of a reassembled PDU]
632;7.252683;74.125.232.69;192.168.66.22;TLSv1;1416;Certificate
633;7.252720;74.125.232.69;192.168.66.22;TLSv1;246;Server Key Exchange, Server Hello Done
634;7.253289;192.168.66.22;74.125.232.69;TCP;60;50409 > https(443) [ACK] Seq=73 Ack=2735 Win=65616 Len=0
635;7.253291;192.168.66.22;74.125.232.69;TCP;60;50409 > https(443) [ACK] Seq=73 Ack=4289 Win=65616 Len=0
636;7.254137;74.125.232.69;192.168.66.22;TLSv1;1421;Server Hello
637;7.254204;74.125.232.69;192.168.66.22;TCP;1421;https(443) > 50408 [ACK] Seq=1368 Ack=73 Win=43008 Len=1367 [TCP segment of a reassembled PDU]
638;7.254931;192.168.66.22;74.125.232.69;TCP;60;50408 > https(443) [ACK] Seq=73 Ack=2735 Win=65616 Len=0
639;7.278542;74.125.232.69;192.168.66.22;TLSv1;1416;Certificate
640;7.278596;74.125.232.69;192.168.66.22;TLSv1;246;Server Key Exchange, Server Hello Done
641;7.279215;192.168.66.22;74.125.232.69;TCP;60;50408 > https(443) [ACK] Seq=73 Ack=4289 Win=65616 Len=0
642;7.281334;192.168.66.22;74.125.232.69;TLSv1;188;Client Key Exchange, Change Cipher Spec, Encrypted Handshake Message
643;7.292670;192.168.66.22;74.125.232.69;TLSv1;188;Client Key Exchange, Change Cipher Spec, Encrypted Handshake Message
644;7.309053;www.google.at;192.168.66.22;TLSv1;1083;Application Data
645;7.309109;www.google.at;192.168.66.22;TLSv1;171;Application Data
646;7.309384;192.168.66.22;www.google.at;TCP;60;50398 > https(443) [ACK] Seq=3621 Ack=7411 Win=65616 Len=0
647;7.310575;www.google.at;192.168.66.22;TLSv1;1421;Application Data
648;7.324907;192.168.66.22;www.google.at;TCP;60;50406 > https(443) [ACK] Seq=1409 Ack=3845 Win=64504 Len=0
649;7.370316;www.google.at;192.168.66.22;TLSv1;1421;Application Data
650;7.370376;www.google.at;192.168.66.22;TLSv1;579;Application Data
651;7.370988;192.168.66.22;www.google.at;TCP;60;50407 > https(443) [ACK] Seq=929 Ack=19972 Win=65616 Len=0
652;7.460994;192.168.66.22;www.google.at;TLSv1;891;Application Data
653;7.519871;www.google.at;192.168.66.22;TCP;54;https(443) > 50399 [ACK] Seq=20379 Ack=3360 Win=51200 Len=0
654;7.519926;www.google.at;192.168.66.22;TLSv1;1195;Application Data
655;7.519960;www.google.at;192.168.66.22;TLSv1;123;Application Data
656;7.520000;74.125.232.69;192.168.66.22;TLSv1;113;Change Cipher Spec, Encrypted Handshake Message
657;7.520039;74.125.232.69;192.168.66.22;TLSv1;113;Change Cipher Spec, Encrypted Handshake Message
658;7.520072;oz-in-f103.1e100.net;192.168.66.22;TCP;113;[TCP Spurious Retransmission] https(443) > 50405 [PSH, ACK] Seq=3508 Ack=207 Win=44032 Len=59
659;7.520596;192.168.66.22;www.google.at;TCP;60;50399 > https(443) [ACK] Seq=3360 Ack=21589 Win=65616 Len=0
660;7.520597;192.168.66.22;oz-in-f103.1e100.net;TCP;66;[TCP Dup ACK 627#1] 50405 > https(443) [ACK] Seq=207 Ack=3567 Win=64784 Len=0 SLE=3508 SRE=3567
661;7.529091;192.168.66.22;74.125.232.69;TLSv1;571;Application Data
662;7.577701;192.168.66.22;www.google.at;TCP;60;50407 > https(443) [ACK] Seq=929 Ack=20497 Win=65088 Len=0
663;7.583691;192.168.66.22;www.google.at;TLSv1;891;Application Data
664;7.715045;www.google.at;192.168.66.22;TCP;54;https(443) > 50406 [ACK] Seq=3845 Ack=2246 Win=49664 Len=0
665;7.715099;www.google.at;192.168.66.22;TLSv1;939;Application Data
666;7.715131;www.google.at;192.168.66.22;TLSv1;123;Application Data
667;7.715190;www.google.at;192.168.66.22;TLSv1;1419;Application Data
668;7.715250;www.google.at;192.168.66.22;TLSv1;1421;Application Data
669;7.715310;www.google.at;192.168.66.22;TLSv1;1417;Application Data
670;7.715707;192.168.66.22;www.google.at;TCP;60;50406 > https(443) [ACK] Seq=2246 Ack=4799 Win=65616 Len=0
671;7.715709;192.168.66.22;www.google.at;TCP;60;50397 > https(443) [ACK] Seq=3024 Ack=20424 Win=65616 Len=0
672;7.715825;www.google.at;192.168.66.22;TLSv1;1421;Application Data
673;7.715891;www.google.at;192.168.66.22;TLSv1;1421;Application Data
674;7.716154;192.168.66.22;www.google.at;TCP;60;50397 > https(443) [ACK] Seq=3024 Ack=23154 Win=65616 Len=0
675;7.716562;www.google.at;192.168.66.22;TLSv1;1415;Application Data
676;7.716624;www.google.at;192.168.66.22;TLSv1;1421;Application Data
677;7.716679;www.google.at;192.168.66.22;TLSv1;1421;Application Data
678;7.717227;192.168.66.22;www.google.at;TCP;60;50397 > https(443) [ACK] Seq=3024 Ack=25882 Win=65616 Len=0
679;7.717229;192.168.66.22;www.google.at;TCP;60;50397 > https(443) [ACK] Seq=3024 Ack=28616 Win=65616 Len=0
680;7.717386;www.google.at;192.168.66.22;TLSv1;1421;Application Data
681;7.717453;www.google.at;192.168.66.22;TLSv1;1413;Application Data
682;7.717511;www.google.at;192.168.66.22;TLSv1;1421;Application Data
683;7.718111;192.168.66.22;www.google.at;TCP;60;50397 > https(443) [ACK] Seq=3024 Ack=31342 Win=62888 Len=0
684;7.719414;192.168.66.22;www.google.at;TCP;60;50397 > https(443) [ACK] Seq=3024 Ack=32709 Win=64992 Len=0
685;7.728131;192.168.66.22;74.125.232.69;TCP;60;50409 > https(443) [ACK] Seq=207 Ack=4348 Win=65556 Len=0
686;7.737852;www.google.at;192.168.66.22;TLSv1;1421;Application Data
687;7.768307;74.125.232.69;192.168.66.22;TLSv1;1419;Application Data
688;7.768372;74.125.232.69;192.168.66.22;TLSv1;1421;Application Data
689;7.769090;74.125.232.69;192.168.66.22;TLSv1;1417;Application Data
690;7.769113;192.168.66.22;74.125.232.69;TCP;60;50408 > https(443) [ACK] Seq=724 Ack=7080 Win=65616 Len=0
691;7.769160;74.125.232.69;192.168.66.22;TLSv1;1421;Application Data
692;7.769219;74.125.232.69;192.168.66.22;TLSv1;1421;Application Data
693;7.769276;74.125.232.69;192.168.66.22;TLSv1;1415;Application Data
694;7.769777;192.168.66.22;74.125.232.69;TCP;60;50408 > https(443) [ACK] Seq=724 Ack=9810 Win=65616 Len=0
695;7.769881;74.125.232.69;192.168.66.22;TLSv1;1421;Application Data
696;7.769949;74.125.232.69;192.168.66.22;TLSv1;1421;Application Data
697;7.770007;74.125.232.69;192.168.66.22;TLSv1;1421;Application Data
698;7.770124;192.168.66.22;74.125.232.69;TCP;60;50408 > https(443) [ACK] Seq=724 Ack=12538 Win=65616 Len=0
699;7.770515;192.168.66.22;74.125.232.69;TCP;60;50408 > https(443) [ACK] Seq=724 Ack=15272 Win=65616 Len=0
700;7.771153;192.168.66.22;74.125.232.69;TCP;60;50408 > https(443) [ACK] Seq=724 Ack=16639 Win=65616 Len=0
701;7.813548;74.125.232.69;192.168.66.22;TLSv1;1413;Application Data
702;7.813602;www.google.at;192.168.66.22;TCP;54;https(443) > 50396 [ACK] Seq=208868 Ack=4845 Win=53376 Len=0
703;7.893323;www.google.at;192.168.66.22;TLSv1;843;Application Data
704;7.893377;www.google.at;192.168.66.22;TLSv1;203;Application Data
705;7.893654;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [ACK] Seq=4845 Ack=209806 Win=86548 Len=0
706;7.894067;www.google.at;192.168.66.22;TLSv1;1421;Application Data
707;7.894727;192.168.66.22;www.google.at;TCP;60;50397 > https(443) [ACK] Seq=3024 Ack=35443 Win=65616 Len=0
708;7.895619;www.google.at;192.168.66.22;TLSv1;1421;Application Data
709;7.895673;www.google.at;192.168.66.22;TLSv1;83;Application Data
710;7.896301;192.168.66.22;www.google.at;TCP;60;50397 > https(443) [ACK] Seq=3024 Ack=36839 Win=65616 Len=0
711;7.959848;74.125.232.69;192.168.66.22;TLSv1;1421;Application Data
712;7.959915;74.125.232.69;192.168.66.22;TLSv1;1421;Application Data
713;7.959977;74.125.232.69;192.168.66.22;TLSv1;1421;Application Data
714;7.960520;192.168.66.22;74.125.232.69;TCP;60;50408 > https(443) [ACK] Seq=724 Ack=19365 Win=65616 Len=0
715;7.960521;192.168.66.22;74.125.232.69;TCP;60;50408 > https(443) [ACK] Seq=724 Ack=22099 Win=65616 Len=0
716;7.999621;74.125.232.69;192.168.66.22;TLSv1;1421;Application Data
717;8.000412;74.125.232.69;192.168.66.22;TLSv1;1421;Application Data
718;8.000480;74.125.232.69;192.168.66.22;TLSv1;1421;Application Data
719;8.000539;74.125.232.69;192.168.66.22;TLSv1;1421;Application Data
720;8.001089;192.168.66.22;74.125.232.69;TCP;60;50408 > https(443) [ACK] Seq=724 Ack=24833 Win=65616 Len=0
721;8.001090;192.168.66.22;74.125.232.69;TCP;60;50408 > https(443) [ACK] Seq=724 Ack=27567 Win=65616 Len=0
722;8.001194;74.125.232.69;192.168.66.22;TLSv1;1421;Application Data
723;8.001958;74.125.232.69;192.168.66.22;TLSv1;1421;Application Data
724;8.002025;74.125.232.69;192.168.66.22;TLSv1;1421;Application Data
725;8.002288;192.168.66.22;74.125.232.69;TCP;60;50408 > https(443) [ACK] Seq=724 Ack=30301 Win=65616 Len=0
726;8.002706;74.125.232.69;192.168.66.22;TLSv1;1421;Application Data
727;8.002766;74.125.232.69;192.168.66.22;TLSv1;1421;Application Data
728;8.002825;74.125.232.69;192.168.66.22;TLSv1;1421;Application Data
729;8.003034;192.168.66.22;74.125.232.69;TCP;60;50408 > https(443) [ACK] Seq=724 Ack=33035 Win=65616 Len=0
730;8.003484;74.125.232.69;192.168.66.22;TLSv1;1421;Application Data
731;8.003541;74.125.232.69;192.168.66.22;TLSv1;1421;Application Data
732;8.003542;192.168.66.22;74.125.232.69;TCP;60;50408 > https(443) [ACK] Seq=724 Ack=35769 Win=65616 Len=0
733;8.004236;192.168.66.22;74.125.232.69;TCP;60;50408 > https(443) [ACK] Seq=724 Ack=38503 Win=65616 Len=0
734;8.054909;74.125.232.69;192.168.66.22;TLSv1;1421;Application Data
735;8.184293;74.125.232.69;192.168.66.22;TLSv1;1421;Application Data
736;8.184359;74.125.232.69;192.168.66.22;TLSv1;1421;Application Data
737;8.184420;74.125.232.69;192.168.66.22;TLSv1;1421;Application Data
738;8.184971;192.168.66.22;74.125.232.69;TCP;60;50408 > https(443) [ACK] Seq=724 Ack=41237 Win=65616 Len=0
739;8.184973;192.168.66.22;74.125.232.69;TCP;60;50408 > https(443) [ACK] Seq=724 Ack=43971 Win=65616 Len=0
740;8.185079;74.125.232.69;192.168.66.22;TLSv1;1421;Application Data
741;8.185147;74.125.232.69;192.168.66.22;TLSv1;1421;Application Data
742;8.185204;74.125.232.69;192.168.66.22;TLSv1;1421;Application Data
743;8.185794;192.168.66.22;74.125.232.69;TCP;60;50408 > https(443) [ACK] Seq=724 Ack=46705 Win=65616 Len=0
744;8.185853;74.125.232.69;192.168.66.22;TLSv1;1421;Application Data
745;8.186184;192.168.66.22;74.125.232.69;TCP;60;50408 > https(443) [ACK] Seq=724 Ack=49439 Win=65616 Len=0
746;8.189499;74.125.232.69;192.168.66.22;TLSv1;1421;Application Data
747;8.190282;74.125.232.69;192.168.66.22;TLSv1;1421;Application Data
748;8.190349;74.125.232.69;192.168.66.22;TLSv1;1421;Application Data
749;8.190969;192.168.66.22;74.125.232.69;TCP;60;50408 > https(443) [ACK] Seq=724 Ack=52173 Win=65616 Len=0
750;8.203838;74.125.232.69;192.168.66.22;TLSv1;1276;Application Data, Application Data
751;8.204513;192.168.66.22;74.125.232.69;TCP;60;50408 > https(443) [ACK] Seq=724 Ack=54762 Win=65616 Len=0
752;8.438410;192.168.66.22;www.google.at;TLSv1;891;Application Data
753;8.645368;192.168.66.22;www.google.at;TLSv1;891;Application Data
754;8.713174;www.google.at;192.168.66.22;TCP;54;https(443) > 50398 [ACK] Seq=7411 Ack=4458 Win=53888 Len=0
755;8.762163;192.168.66.22;www.google.at;TLSv1;891;Application Data
756;8.862272;192.168.66.22;www.google.at;TLSv1;891;Application Data
757;9.003939;www.google.at;192.168.66.22;TLSv1;1067;Application Data
758;9.003977;www.google.at;192.168.66.22;TLSv1;203;Application Data
759;9.004008;www.google.at;192.168.66.22;TCP;54;https(443) > 50407 [ACK] Seq=20497 Ack=1766 Win=48128 Len=0
760;9.004065;www.google.at;192.168.66.22;TLSv1;1163;Application Data
761;9.004119;www.google.at;192.168.66.22;TLSv1;155;Application Data
762;9.004604;192.168.66.22;www.google.at;TCP;60;50398 > https(443) [ACK] Seq=4458 Ack=8573 Win=64452 Len=0
763;9.004605;192.168.66.22;www.google.at;TCP;60;50407 > https(443) [ACK] Seq=1766 Ack=21707 Win=65616 Len=0
764;9.061981;192.168.66.22;www.google.at;TLSv1;843;Application Data
765;9.137983;192.168.66.22;www.google.at;TLSv1;891;Application Data
766;9.230527;www.google.at;192.168.66.22;TCP;54;https(443) > 50399 [ACK] Seq=21589 Ack=4197 Win=52992 Len=0
767;9.230566;www.google.at;192.168.66.22;TCP;54;https(443) > 50406 [ACK] Seq=4799 Ack=3083 Win=51328 Len=0
768;9.230610;www.google.at;192.168.66.22;TLSv1;1083;Application Data
769;9.230643;www.google.at;192.168.66.22;TLSv1;171;Application Data
770;9.230745;www.google.at;192.168.66.22;TLSv1;955;Application Data
771;9.230778;www.google.at;192.168.66.22;TLSv1;155;Application Data
772;9.231250;192.168.66.22;www.google.at;TCP;60;50399 > https(443) [ACK] Seq=4197 Ack=22735 Win=64468 Len=0
773;9.231252;192.168.66.22;www.google.at;TCP;60;50406 > https(443) [ACK] Seq=3083 Ack=5801 Win=64612 Len=0
774;9.385002;www.google.at;192.168.66.22;TCP;54;https(443) > 50396 [ACK] Seq=209806 Ack=5634 Win=55040 Len=0
775;9.398119;192.168.66.22;www.google.at;TLSv1;907;Application Data
776;9.511594;192.168.66.22;www.google.at;TLSv1;907;Application Data
777;9.534167;www.google.at;192.168.66.22;TCP;54;https(443) > 50397 [ACK] Seq=36839 Ack=3861 Win=52224 Len=0
778;9.534222;www.google.at;192.168.66.22;TLSv1;1195;Application Data
779;9.534256;www.google.at;192.168.66.22;TLSv1;203;Application Data
780;9.534892;192.168.66.22;www.google.at;TCP;60;50397 > https(443) [ACK] Seq=3861 Ack=38129 Win=64324 Len=0
781;9.684346;www.google.at;192.168.66.22;TCP;54;https(443) > 50398 [ACK] Seq=8573 Ack=5311 Win=55552 Len=0
782;9.698438;192.168.66.22;www.google.at;TLSv1;907;Application Data
783;9.833848;192.168.66.22;www.google.at;TCP;60;50396 > https(443) [RST, ACK] Seq=5634 Ack=209806 Win=0 Len=0
784;9.833850;192.168.66.22;www.google.at;TCP;60;50398 > https(443) [RST, ACK] Seq=5311 Ack=8573 Win=0 Len=0
785;9.833852;192.168.66.22;www.google.at;TCP;60;50407 > https(443) [RST, ACK] Seq=2619 Ack=21707 Win=0 Len=0
786;9.833853;192.168.66.22;www.google.at;TCP;60;50399 > https(443) [RST, ACK] Seq=5050 Ack=22735 Win=0 Len=0
787;9.835348;www.google.at;192.168.66.22;TLSv1;1147;Application Data
788;9.835387;www.google.at;192.168.66.22;TLSv1;219;Application Data
789;9.835418;www.google.at;192.168.66.22;TCP;54;https(443) > 50407 [ACK] Seq=21707 Ack=2619 Win=49792 Len=0
790;9.835473;www.google.at;192.168.66.22;TLSv1;971;Application Data
791;9.835513;www.google.at;192.168.66.22;TLSv1;155;Application Data
792;9.847042;192.168.66.22;www.google.at;TLSv1;987;Application Data
793;9.990135;www.google.at;192.168.66.22;TCP;54;https(443) > 50399 [ACK] Seq=22735 Ack=5050 Win=54656 Len=0
794;9.990197;www.google.at;192.168.66.22;TLSv1;1035;Application Data
795;9.990231;www.google.at;192.168.66.22;TLSv1;203;Application Data
796;10.139839;www.google.at;192.168.66.22;TCP;54;https(443) > 50406 [ACK] Seq=5801 Ack=4016 Win=53120 Len=0
797;10.140573;www.google.at;192.168.66.22;TLSv1;1419;Application Data
798;10.193724;www.google.at;192.168.66.22;TLSv1;347;Application Data
799;10.194056;192.168.66.22;www.google.at;TCP;60;50406 > https(443) [ACK] Seq=4016 Ack=7459 Win=65616 Len=0
800;10.499401;www.google.at;192.168.66.22;TLSv1;1419;Application Data
801;10.499470;www.google.at;192.168.66.22;TLSv1;1419;Application Data
802;10.499530;www.google.at;192.168.66.22;TLSv1;1421;Application Data
803;10.500175;www.google.at;192.168.66.22;TLSv1;1417;Application Data
804;10.500176;192.168.66.22;www.google.at;TCP;60;50406 > https(443) [ACK] Seq=4016 Ack=10189 Win=65616 Len=0
805;10.500243;www.google.at;192.168.66.22;TLSv1;1419;Application Data
806;10.500302;www.google.at;192.168.66.22;TLSv1;1421;Application Data
807;10.500851;192.168.66.22;www.google.at;TCP;60;50406 > https(443) [ACK] Seq=4016 Ack=12919 Win=65616 Len=0
808;10.500852;192.168.66.22;www.google.at;TCP;60;50406 > https(443) [ACK] Seq=4016 Ack=15651 Win=65616 Len=0
809;10.507489;www.google.at;192.168.66.22;TLSv1;713;Application Data
810;10.509527;www.google.at;192.168.66.22;TLSv1;1419;Application Data
811;10.510218;192.168.66.22;www.google.at;TCP;60;50406 > https(443) [ACK] Seq=4016 Ack=17675 Win=65616 Len=0
812;10.515329;www.google.at;192.168.66.22;TLSv1;1421;Application Data
813;10.654443;www.google.at;192.168.66.22;TLSv1;1421;Application Data
814;10.655142;192.168.66.22;www.google.at;TCP;60;50406 > https(443) [ACK] Seq=4016 Ack=20409 Win=65616 Len=0
815;10.823820;www.google.at;192.168.66.22;TLSv1;295;Application Data
816;10.967724;192.168.66.22;www.google.at;TLSv1;1291;Application Data
817;11.008151;192.168.66.22;www.google.at;TLSv1;923;Application Data
818;11.017487;192.168.66.22;www.google.at;TCP;66;50410 > https(443) [SYN] Seq=0 Win=8192 Len=0 MSS=1460 WS=4 SACK_PERM
819;11.142675;www.google.at;192.168.66.22;TCP;54;https(443) > 50397 [ACK] Seq=38129 Ack=5098 Win=54784 Len=0
820;11.298845;www.google.at;192.168.66.22;TLSv1;315;Application Data
821;11.325844;www.google.at;192.168.66.22;TCP;54;https(443) > 50406 [ACK] Seq=20650 Ack=4885 Win=55040 Len=0
822;11.325882;www.google.at;192.168.66.22;TCP;66;https(443) > 50410 [SYN, ACK] Seq=0 Ack=1 Win=42900 Len=0 MSS=1367 SACK_PERM WS=128
823;11.325943;www.google.at;192.168.66.22;TLSv1;1419;Application Data
824;11.326013;www.google.at;192.168.66.22;TLSv1;1419;Application Data
825;11.326071;www.google.at;192.168.66.22;TLSv1;1421;Application Data
826;11.326174;192.168.66.22;www.google.at;TCP;60;50410 > https(443) [ACK] Seq=1 Ack=1 Win=65616 Len=0
827;11.326561;192.168.66.22;www.google.at;TCP;60;50406 > https(443) [ACK] Seq=4885 Ack=23380 Win=65616 Len=0
828;11.326602;www.google.at;192.168.66.22;TLSv1;1417;Application Data
829;11.326664;www.google.at;192.168.66.22;TLSv1;1421;Application Data
830;11.326723;www.google.at;192.168.66.22;TLSv1;1421;Application Data
831;11.326928;192.168.66.22;www.google.at;TLSv1;203;Client Hello (SNI=www.google.at)
832;11.327261;192.168.66.22;www.google.at;TCP;60;50406 > https(443) [ACK] Seq=4885 Ack=26110 Win=65616 Len=0
833;11.327263;192.168.66.22;www.google.at;TCP;60;50406 > https(443) [ACK] Seq=4885 Ack=28844 Win=65616 Len=0
834;11.327384;www.google.at;192.168.66.22;TLSv1;1415;Application Data
835;11.327445;www.google.at;192.168.66.22;TLSv1;1421;Application Data
836;11.327503;www.google.at;192.168.66.22;TLSv1;1417;Application Data
837;11.327564;www.google.at;192.168.66.22;TLSv1;1421;Application Data
838;11.328046;192.168.66.22;www.google.at;TCP;60;50406 > https(443) [ACK] Seq=4885 Ack=31572 Win=65616 Len=0
839;11.328387;192.168.66.22;www.google.at;TCP;60;50406 > https(443) [ACK] Seq=4885 Ack=34302 Win=62884 Len=0
840;11.328726;192.168.66.22;www.google.at;TCP;60;[TCP Window Update] 50406 > https(443) [ACK] Seq=4885 Ack=34302 Win=65616 Len=0
841;11.480281;www.google.at;192.168.66.22;TLSv1;1421;Application Data
842;11.480350;www.google.at;192.168.66.22;TLSv1;1415;Application Data
843;11.481069;192.168.66.22;www.google.at;TCP;60;50406 > https(443) [ACK] Seq=4885 Ack=37030 Win=65616 Len=0
844;11.497622;192.168.66.22;www.google.at;TCP;60;50397 > https(443) [ACK] Seq=5098 Ack=38390 Win=65616 Len=0
845;11.504127;www.google.at;192.168.66.22;TLSv1;1421;Application Data
846;11.504193;www.google.at;192.168.66.22;TLSv1;1421;Application Data
847;11.504254;www.google.at;192.168.66.22;TLSv1;1421;Application Data
848;11.504884;192.168.66.22;www.google.at;TCP;60;50406 > https(443) [ACK] Seq=4885 Ack=39764 Win=65616 Len=0
849;11.505882;www.google.at;192.168.66.22;TLSv1;725;Application Data
850;11.505929;www.google.at;192.168.66.22;TCP;54;https(443) > 50410 [ACK] Seq=1 Ack=150 Win=44032 Len=0
851;11.506215;192.168.66.22;www.google.at;TCP;60;50406 > https(443) [ACK] Seq=4885 Ack=41802 Win=65616 Len=0
852;11.506634;www.google.at;192.168.66.22;TLSv1;1421;Server Hello
853;11.506695;www.google.at;192.168.66.22;TCP;1421;https(443) > 50410 [ACK] Seq=1368 Ack=150 Win=44032 Len=1367 [TCP segment of a reassembled PDU]
854;11.507393;192.168.66.22;www.google.at;TCP;60;50410 > https(443) [ACK] Seq=150 Ack=2735 Win=65616 Len=0
855;11.639231;www.google.at;192.168.66.22;TLSv1;844;Certificate, Server Key Exchange, Server Hello Done
856;11.647647;192.168.66.22;www.google.at;TLSv1;188;Client Key Exchange, Change Cipher Spec, Encrypted Handshake Message
857;11.841168;www.google.at;192.168.66.22;TLSv1;113;Change Cipher Spec, Encrypted Handshake Message
858;11.846378;192.168.66.22;www.google.at;TLSv1;763;Application Data
859;12.042540;www.google.at;192.168.66.22;TLSv1;315;Application Data
860;12.248940;192.168.66.22;www.google.at;TCP;60;50410 > https(443) [ACK] Seq=993 Ack=3845 Win=64504 Len=0
861;13.705526;192.168.66.22;ssl.gstatic.com;TLSv1;459;Application Data
862;13.906068;ssl.gstatic.com;192.168.66.22;TLSv1;635;Application Data
863;13.929188;192.168.66.22;www.google.at;TCP;66;50411 > http(80) [SYN] Seq=0 Win=8192 Len=0 MSS=1460 WS=4 SACK_PERM
864;14.101828;www.google.at;192.168.66.22;TCP;66;http(80) > 50411 [SYN, ACK] Seq=0 Ack=1 Win=42900 Len=0 MSS=1367 SACK_PERM WS=128
865;14.102162;192.168.66.22;www.google.at;TCP;60;50411 > http(80) [ACK] Seq=1 Ack=1 Win=65616 Len=0
866;14.102779;192.168.66.22;www.google.at;HTTP;740;GET /url?sa=t&rct=j&q=&esrc=s&frm=1&source=web&cd=1&ved=0CCQQFjAA&url=http%3A%2F%2Fwww.zhfnmendain.kz%2F&ei=e6eAVJGoBJbjaqm9gWg&usg=AFQjCNESqoW9ENBFsvEzZQIyl-s5KA1Rag&bvm=bv.80642063,d.bGQ HTTP/1.1
867;14.105371;192.168.66.22;ssl.gstatic.com;TCP;60;50400 > https(443) [ACK] Seq=612 Ack=10977 Win=64628 Len=0
868;14.474209;www.google.at;192.168.66.22;TCP;54;http(80) > 50411 [ACK] Seq=1 Ack=687 Win=44288 Len=0
869;14.887272;192.168.66.22;www.google.at;HTTP;510;[TCP ACKed unseen segment] GET /favicon.ico HTTP/1.1
870;14.894231;192.168.66.22;216.9.81.189;TCP;66;50412 > http(80) [SYN] Seq=0 Win=8192 Len=0 MSS=1460 WS=4 SACK_PERM
871;14.894232;192.168.66.22;216.9.81.189;TCP;66;50413 > http(80) [SYN] Seq=0 Win=8192 Len=0 MSS=1460 WS=4 SACK_PERM
872;15.040148;www.google.at;192.168.66.22;HTTP;881;[TCP Spurious Retransmission] HTTP/1.1 200 OK (text/html)
873;15.040487;192.168.66.22;www.google.at;TCP;66;[TCP Dup ACK 869#1] 50411 > http(80) [ACK] Seq=1143 Ack=828 Win=64788 Len=0 SLE=1 SRE=828
874;15.193141;www.google.at;192.168.66.22;TCP;1421;http(80) > 50411 [ACK] Seq=828 Ack=1143 Win=45696 Len=1367 [TCP segment of a reassembled PDU]
875;15.193195;www.google.at;192.168.66.22;HTTP;75;HTTP/1.1 200 OK (image/x-icon)
876;15.193852;192.168.66.22;www.google.at;TCP;60;50411 > http(80) [ACK] Seq=1143 Ack=2216 Win=65616 Len=0
877;15.408271;216.9.81.189;192.168.66.22;TCP;66;http(80) > 50412 [SYN, ACK] Seq=0 Ack=1 Win=5840 Len=0 MSS=1367 SACK_PERM WS=4
878;15.408325;216.9.81.189;192.168.66.22;TCP;66;http(80) > 50413 [SYN, ACK] Seq=0 Ack=1 Win=5840 Len=0 MSS=1367 SACK_PERM WS=4
879;15.408611;192.168.66.22;216.9.81.189;TCP;60;50412 > http(80) [ACK] Seq=1 Ack=1 Win=65616 Len=0
880;15.408612;192.168.66.22;216.9.81.189;TCP;60;50413 > http(80) [ACK] Seq=1 Ack=1 Win=65616 Len=0
881;15.409224;192.168.66.22;216.9.81.189;HTTP;524;GET / HTTP/1.1
882;15.884474;216.9.81.189;192.168.66.22;TCP;54;http(80) > 50412 [ACK] Seq=1 Ack=471 Win=6912 Len=0
883;20.158763;216.9.81.189;192.168.66.22;TCP;1421;http(80) > 50412 [ACK] Seq=1 Ack=471 Win=6912 Len=1367 [TCP segment of a reassembled PDU]
884;20.366128;192.168.66.22;216.9.81.189;TCP;60;50412 > http(80) [ACK] Seq=471 Ack=1368 Win=65616 Len=0
885;20.524229;216.9.81.189;192.168.66.22;TCP;1421;http(80) > 50412 [ACK] Seq=1368 Ack=471 Win=6912 Len=1367 [TCP segment of a reassembled PDU]
886;20.740422;192.168.66.22;216.9.81.189;TCP;60;50412 > http(80) [ACK] Seq=471 Ack=2735 Win=65616 Len=0
887;20.809181;216.9.81.189;192.168.66.22;TCP;1421;http(80) > 50412 [ACK] Seq=2735 Ack=471 Win=6912 Len=1367 [TCP segment of a reassembled PDU]
888;20.809258;216.9.81.189;192.168.66.22;TCP;1421;http(80) > 50412 [ACK] Seq=4102 Ack=471 Win=6912 Len=1367 [TCP segment of a reassembled PDU]
889;20.809978;192.168.66.22;216.9.81.189;TCP;60;50412 > http(80) [ACK] Seq=471 Ack=5469 Win=65616 Len=0
890;20.811960;192.168.66.22;216.9.81.189;HTTP;431;GET /wp-content/plugins/easy-image-display/css/colorbox.css?ver=4.0 HTTP/1.1
891;20.813781;192.168.66.22;216.9.81.189;TCP;66;50414 > http(80) [SYN] Seq=0 Win=8192 Len=0 MSS=1460 WS=4 SACK_PERM
892;20.814783;192.168.66.22;216.9.81.189;TCP;66;50415 > http(80) [SYN] Seq=0 Win=8192 Len=0 MSS=1460 WS=4 SACK_PERM
893;20.815255;192.168.66.22;216.9.81.189;TCP;66;50416 > http(80) [SYN] Seq=0 Win=8192 Len=0 MSS=1460 WS=4 SACK_PERM
894;20.815617;192.168.66.22;216.9.81.189;TCP;66;50417 > http(80) [SYN] Seq=0 Win=8192 Len=0 MSS=1460 WS=4 SACK_PERM
895;20.817013;192.168.66.22;192.168.66.1;DNS;88;Standard query 0xaf7b A dsms0mj1bbhn4.cloudfront.net
896;21.023717;192.168.66.1;192.168.66.22;DNS;216;Standard query response 0xaf7b A dsms0mj1bbhn4.cloudfront.net A 54.230.94.110 A 216.137.61.142 A 54.230.93.72 A 54.230.92.170 A 54.230.92.84 A 54.230.94.188 A 54.230.95.103 A 54.230.93.232
897;21.025344;192.168.66.22;dsms0mj1bbhn4.cloudfront.net;TCP;66;50418 > http(80) [SYN] Seq=0 Win=8192 Len=0 MSS=1460 WS=4 SACK_PERM
898;21.025345;192.168.66.22;dsms0mj1bbhn4.cloudfront.net;TCP;66;50419 > http(80) [SYN] Seq=0 Win=8192 Len=0 MSS=1460 WS=4 SACK_PERM
899;21.051287;216.9.81.189;192.168.66.22;TCP;1421;http(80) > 50412 [ACK] Seq=5469 Ack=471 Win=6912 Len=1367 [TCP segment of a reassembled PDU]
900;21.134970;216.9.81.189;192.168.66.22;TCP;1421;http(80) > 50412 [ACK] Seq=6836 Ack=471 Win=6912 Len=1367 [TCP segment of a reassembled PDU]
901;21.135657;192.168.66.22;216.9.81.189;TCP;60;50412 > http(80) [ACK] Seq=471 Ack=8203 Win=65616 Len=0
902;21.142319;216.9.81.189;192.168.66.22;TCP;1421;http(80) > 50412 [ACK] Seq=8203 Ack=471 Win=6912 Len=1367 [TCP segment of a reassembled PDU]
903;21.209282;216.9.81.189;192.168.66.22;TCP;1421;http(80) > 50412 [ACK] Seq=9570 Ack=471 Win=6912 Len=1367 [TCP segment of a reassembled PDU]
904;21.209978;192.168.66.22;216.9.81.189;TCP;60;50412 > http(80) [ACK] Seq=471 Ack=10937 Win=65616 Len=0
905;21.210053;216.9.81.189;192.168.66.22;TCP;1421;http(80) > 50412 [PSH, ACK] Seq=10937 Ack=471 Win=6912 Len=1367 [TCP segment of a reassembled PDU]
906;21.210107;216.9.81.189;192.168.66.22;TCP;54;http(80) > 50413 [ACK] Seq=1 Ack=378 Win=6912 Len=0
907;21.210194;216.9.81.189;192.168.66.22;TCP;66;http(80) > 50414 [SYN, ACK] Seq=0 Ack=1 Win=5840 Len=0 MSS=1367 SACK_PERM WS=4
908;21.210249;216.9.81.189;192.168.66.22;TCP;66;http(80) > 50415 [SYN, ACK] Seq=0 Ack=1 Win=5840 Len=0 MSS=1367 SACK_PERM WS=4
909;21.210285;216.9.81.189;192.168.66.22;TCP;66;http(80) > 50416 [SYN, ACK] Seq=0 Ack=1 Win=5840 Len=0 MSS=1367 SACK_PERM WS=4
910;21.210322;216.9.81.189;192.168.66.22;TCP;66;http(80) > 50417 [SYN, ACK] Seq=0 Ack=1 Win=5840 Len=0 MSS=1367 SACK_PERM WS=4
911;21.210851;192.168.66.22;216.9.81.189;TCP;60;50414 > http(80) [ACK] Seq=1 Ack=1 Win=65616 Len=0
912;21.210853;192.168.66.22;216.9.81.189;TCP;60;50415 > http(80) [ACK] Seq=1 Ack=1 Win=65616 Len=0
913;21.210854;192.168.66.22;216.9.81.189;TCP;60;50416 > http(80) [ACK] Seq=1 Ack=1 Win=65616 Len=0
914;21.210856;192.168.66.22;216.9.81.189;TCP;60;50417 > http(80) [ACK] Seq=1 Ack=1 Win=65616 Len=0
915;21.211265;192.168.66.22;216.9.81.189;HTTP;410;GET /wp-includes/css/dashicons.min.css?ver=4.0 HTTP/1.1
916;21.211267;192.168.66.22;216.9.81.189;HTTP;447;GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1
917;21.211602;192.168.66.22;216.9.81.189;HTTP;423;GET /wp-content/plugins/page-list/css/page-list.css?ver=4.2 HTTP/1.1
918;21.211603;192.168.66.22;216.9.81.189;HTTP;409;GET /wp-content/themes/esic/style.css?ver=4.0 HTTP/1.1
919;21.285764;216.9.81.189;192.168.66.22;TCP;1421;http(80) > 50413 [ACK] Seq=1 Ack=378 Win=6912 Len=1367 [TCP segment of a reassembled PDU]
920;21.285836;216.9.81.189;192.168.66.22;TCP;1421;http(80) > 50413 [ACK] Seq=1368 Ack=378 Win=6912 Len=1367 [TCP segment of a reassembled PDU]
921;21.286556;192.168.66.22;216.9.81.189;TCP;60;50413 > http(80) [ACK] Seq=378 Ack=2735 Win=65616 Len=0
922;21.359397;dsms0mj1bbhn4.cloudfront.net;192.168.66.22;TCP;66;http(80) > 50419 [SYN, ACK] Seq=0 Ack=1 Win=14600 Len=0 MSS=1367 SACK_PERM WS=128
923;21.359466;dsms0mj1bbhn4.cloudfront.net;192.168.66.22;TCP;66;http(80) > 50418 [SYN, ACK] Seq=0 Ack=1 Win=14600 Len=0 MSS=1367 SACK_PERM WS=128
924;21.359740;192.168.66.22;dsms0mj1bbhn4.cloudfront.net;TCP;60;50419 > http(80) [ACK] Seq=1 Ack=1 Win=65616 Len=0
925;21.359742;192.168.66.22;dsms0mj1bbhn4.cloudfront.net;TCP;60;50418 > http(80) [ACK] Seq=1 Ack=1 Win=65616 Len=0
926;21.360363;192.168.66.22;dsms0mj1bbhn4.cloudfront.net;HTTP;377;GET /assets/pub/shareaholic.js HTTP/1.1
927;21.411341;192.168.66.22;216.9.81.189;TCP;60;50412 > http(80) [ACK] Seq=471 Ack=12304 Win=65616 Len=0
928;21.537406;dsms0mj1bbhn4.cloudfront.net;192.168.66.22;TCP;54;http(80) > 50418 [ACK] Seq=1 Ack=324 Win=15744 Len=0
929;21.541209;dsms0mj1bbhn4.cloudfront.net;192.168.66.22;TCP;1421;http(80) > 50418 [ACK] Seq=1 Ack=324 Win=15744 Len=1367 [TCP segment of a reassembled PDU]
930;21.541279;dsms0mj1bbhn4.cloudfront.net;192.168.66.22;TCP;1421;http(80) > 50418 [ACK] Seq=1368 Ack=324 Win=15744 Len=1367 [TCP segment of a reassembled PDU]
931;21.541980;dsms0mj1bbhn4.cloudfront.net;192.168.66.22;TCP;1421;http(80) > 50418 [ACK] Seq=2735 Ack=324 Win=15744 Len=1367 [TCP segment of a reassembled PDU]
932;21.541997;192.168.66.22;dsms0mj1bbhn4.cloudfront.net;TCP;60;50418 > http(80) [ACK] Seq=324 Ack=2735 Win=65616 Len=0
933;21.542058;dsms0mj1bbhn4.cloudfront.net;192.168.66.22;TCP;1421;http(80) > 50418 [ACK] Seq=4102 Ack=324 Win=15744 Len=1367 [TCP segment of a reassembled PDU]
934;21.542121;dsms0mj1bbhn4.cloudfront.net;192.168.66.22;TCP;1421;http(80) > 50418 [ACK] Seq=5469 Ack=324 Win=15744 Len=1367 [TCP segment of a reassembled PDU]
935;21.542719;192.168.66.22;dsms0mj1bbhn4.cloudfront.net;TCP;60;50418 > http(80) [ACK] Seq=324 Ack=5469 Win=65616 Len=0
936;21.542763;dsms0mj1bbhn4.cloudfront.net;192.168.66.22;TCP;1421;http(80) > 50418 [ACK] Seq=6836 Ack=324 Win=15744 Len=1367 [TCP segment of a reassembled PDU]
937;21.542837;dsms0mj1bbhn4.cloudfront.net;192.168.66.22;TCP;1421;http(80) > 50418 [ACK] Seq=8203 Ack=324 Win=15744 Len=1367 [TCP segment of a reassembled PDU]
938;21.542899;dsms0mj1bbhn4.cloudfront.net;192.168.66.22;TCP;1421;http(80) > 50418 [ACK] Seq=9570 Ack=324 Win=15744 Len=1367 [TCP segment of a reassembled PDU]
939;21.543096;192.168.66.22;dsms0mj1bbhn4.cloudfront.net;TCP;60;50418 > http(80) [ACK] Seq=324 Ack=8203 Win=65616 Len=0
940;21.543432;192.168.66.22;dsms0mj1bbhn4.cloudfront.net;TCP;60;50418 > http(80) [ACK] Seq=324 Ack=10937 Win=65616 Len=0
941;21.699433;dsms0mj1bbhn4.cloudfront.net;192.168.66.22;TCP;1421;http(80) > 50418 [ACK] Seq=10937 Ack=324 Win=15744 Len=1367 [TCP segment of a reassembled PDU]
942;21.700216;dsms0mj1bbhn4.cloudfront.net;192.168.66.22;TCP;1421;http(80) > 50418 [ACK] Seq=12304 Ack=324 Win=15744 Len=1367 [TCP segment of a reassembled PDU]
943;21.700905;192.168.66.22;dsms0mj1bbhn4.cloudfront.net;TCP;60;50418 > http(80) [ACK] Seq=324 Ack=13671 Win=65616 Len=0
944;21.700988;216.9.81.189;192.168.66.22;HTTP;1421;[TCP Previous segment not captured] Continuation
945;21.701060;216.9.81.189;192.168.66.22;HTTP;1421;Continuation
946;21.701124;216.9.81.189;192.168.66.22;HTTP;1421;Continuation
947;21.701166;216.9.81.189;192.168.66.22;TCP;54;http(80) > 50415 [ACK] Seq=1 Ack=357 Win=6912 Len=0
948;21.701201;216.9.81.189;192.168.66.22;TCP;54;http(80) > 50416 [ACK] Seq=1 Ack=394 Win=6912 Len=0
949;21.701235;216.9.81.189;192.168.66.22;TCP;54;http(80) > 50417 [ACK] Seq=1 Ack=370 Win=6912 Len=0
950;21.701290;216.9.81.189;192.168.66.22;HTTP;960;HTTP/1.1 200 OK (text/css)
951;21.701325;216.9.81.189;192.168.66.22;TCP;54;http(80) > 50417 [FIN, ACK] Seq=907 Ack=370 Win=6912 Len=0
952;21.701661;192.168.66.22;216.9.81.189;TCP;66;[TCP Dup ACK 927#1] 50412 > http(80) [ACK] Seq=471 Ack=12304 Win=65616 Len=0 SLE=16405 SRE=17772
953;21.701662;192.168.66.22;216.9.81.189;TCP;66;[TCP Dup ACK 927#2] 50412 > http(80) [ACK] Seq=471 Ack=12304 Win=65616 Len=0 SLE=16405 SRE=19139
954;21.701664;192.168.66.22;216.9.81.189;TCP;66;[TCP Dup ACK 927#3] 50412 > http(80) [ACK] Seq=471 Ack=12304 Win=65616 Len=0 SLE=16405 SRE=20506
955;21.701741;216.9.81.189;192.168.66.22;TCP;1421;http(80) > 50415 [ACK] Seq=1 Ack=357 Win=6912 Len=1367 [TCP segment of a reassembled PDU]
956;21.701804;216.9.81.189;192.168.66.22;TCP;1421;http(80) > 50415 [ACK] Seq=1368 Ack=357 Win=6912 Len=1367 [TCP segment of a reassembled PDU]
957;21.701868;216.9.81.189;192.168.66.22;TCP;1421;http(80) > 50416 [ACK] Seq=1 Ack=394 Win=6912 Len=1367 [TCP segment of a reassembled PDU]
958;21.701931;216.9.81.189;192.168.66.22;TCP;1421;http(80) > 50416 [ACK] Seq=1368 Ack=394 Win=6912 Len=1367 [TCP segment of a reassembled PDU]
959;21.701967;216.9.81.189;192.168.66.22;TCP;54;http(80) > 50414 [ACK] Seq=1 Ack=356 Win=6912 Len=0
960;21.702026;216.9.81.189;192.168.66.22;TCP;1421;http(80) > 50414 [ACK] Seq=1 Ack=356 Win=6912 Len=1367 [TCP segment of a reassembled PDU]
961;21.702031;192.168.66.22;216.9.81.189;TCP;60;50417 > http(80) [ACK] Seq=370 Ack=908 Win=64708 Len=0
962;21.702033;192.168.66.22;216.9.81.189;TCP;60;50417 > http(80) [FIN, ACK] Seq=370 Ack=908 Win=64708 Len=0
963;21.702361;192.168.66.22;216.9.81.189;TCP;60;50415 > http(80) [ACK] Seq=357 Ack=2735 Win=65616 Len=0
964;21.702737;192.168.66.22;216.9.81.189;TCP;60;50416 > http(80) [ACK] Seq=394 Ack=2735 Win=65616 Len=0
965;21.703521;192.168.66.22;216.9.81.189;TCP;66;50420 > http(80) [SYN] Seq=0 Win=8192 Len=0 MSS=1460 WS=4 SACK_PERM
966;21.851312;216.9.81.189;192.168.66.22;TCP;1421;http(80) > 50414 [ACK] Seq=1368 Ack=356 Win=6912 Len=1367 [TCP segment of a reassembled PDU]
967;21.852006;192.168.66.22;216.9.81.189;TCP;60;50414 > http(80) [ACK] Seq=356 Ack=2735 Win=65616 Len=0
968;21.852068;216.9.81.189;192.168.66.22;TCP;1421;http(80) > 50413 [ACK] Seq=2735 Ack=378 Win=6912 Len=1367 [TCP segment of a reassembled PDU]
969;21.857208;216.9.81.189;192.168.66.22;HTTP;540;HTTP/1.1 200 OK (text/css)
970;21.857541;192.168.66.22;216.9.81.189;TCP;60;50413 > http(80) [ACK] Seq=378 Ack=4589 Win=65616 Len=0
971;21.857969;216.9.81.189;192.168.66.22;HTTP;1421;Continuation
972;21.857979;192.168.66.22;216.9.81.189;TCP;60;50413 > http(80) [FIN, ACK] Seq=378 Ack=4589 Win=65616 Len=0
973;21.858035;216.9.81.189;192.168.66.22;HTTP;1421;Continuation
974;21.858089;216.9.81.189;192.168.66.22;HTTP;350;Continuation
975;21.858313;192.168.66.22;216.9.81.189;TCP;66;50421 > http(80) [SYN] Seq=0 Win=8192 Len=0 MSS=1460 WS=4 SACK_PERM
976;21.858315;192.168.66.22;216.9.81.189;TCP;66;[TCP Dup ACK 927#4] 50412 > http(80) [ACK] Seq=471 Ack=12304 Win=65616 Len=0 SLE=16405 SRE=21873
977;21.858684;192.168.66.22;216.9.81.189;TCP;66;[TCP Dup ACK 927#5] 50412 > http(80) [ACK] Seq=471 Ack=12304 Win=65616 Len=0 SLE=16405 SRE=23240
978;21.858685;192.168.66.22;216.9.81.189;TCP;66;[TCP Dup ACK 927#6] 50412 > http(80) [ACK] Seq=471 Ack=12304 Win=65616 Len=0 SLE=16405 SRE=23536
979;21.858752;dsms0mj1bbhn4.cloudfront.net;192.168.66.22;TCP;1421;http(80) > 50418 [ACK] Seq=13671 Ack=324 Win=15744 Len=1367 [TCP segment of a reassembled PDU]
980;21.858818;dsms0mj1bbhn4.cloudfront.net;192.168.66.22;TCP;1421;http(80) > 50418 [ACK] Seq=15038 Ack=324 Win=15744 Len=1367 [TCP segment of a reassembled PDU]
981;21.858881;dsms0mj1bbhn4.cloudfront.net;192.168.66.22;TCP;1421;http(80) > 50418 [ACK] Seq=16405 Ack=324 Win=15744 Len=1367 [TCP segment of a reassembled PDU]
982;21.859473;192.168.66.22;dsms0mj1bbhn4.cloudfront.net;TCP;60;50418 > http(80) [ACK] Seq=324 Ack=16405 Win=65616 Len=0
983;21.859584;dsms0mj1bbhn4.cloudfront.net;192.168.66.22;TCP;1421;http(80) > 50418 [ACK] Seq=17772 Ack=324 Win=15744 Len=1367 [TCP segment of a reassembled PDU]
984;21.859653;dsms0mj1bbhn4.cloudfront.net;192.168.66.22;TCP;1421;http(80) > 50418 [ACK] Seq=19139 Ack=324 Win=15744 Len=1367 [TCP segment of a reassembled PDU]
985;21.859717;dsms0mj1bbhn4.cloudfront.net;192.168.66.22;TCP;1421;http(80) > 50418 [ACK] Seq=20506 Ack=324 Win=15744 Len=1367 [TCP segment of a reassembled PDU]
986;21.859779;dsms0mj1bbhn4.cloudfront.net;192.168.66.22;TCP;1421;http(80) > 50418 [ACK] Seq=21873 Ack=324 Win=15744 Len=1367 [TCP segment of a reassembled PDU]
987;21.859840;dsms0mj1bbhn4.cloudfront.net;192.168.66.22;TCP;1421;http(80) > 50418 [ACK] Seq=23240 Ack=324 Win=15744 Len=1367 [TCP segment of a reassembled PDU]
988;21.859915;192.168.66.22;dsms0mj1bbhn4.cloudfront.net;TCP;60;50418 > http(80) [ACK] Seq=324 Ack=19139 Win=65616 Len=0
989;21.860255;192.168.66.22;dsms0mj1bbhn4.cloudfront.net;TCP;60;50418 > http(80) [ACK] Seq=324 Ack=21873 Win=65616 Len=0
990;21.860353;dsms0mj1bbhn4.cloudfront.net;192.168.66.22;TCP;1421;http(80) > 50418 [ACK] Seq=24607 Ack=324 Win=15744 Len=1367 [TCP segment of a reassembled PDU]
991;21.860678;192.168.66.22;dsms0mj1bbhn4.cloudfront.net;TCP;60;50418 > http(80) [ACK] Seq=324 Ack=24607 Win=65616 Len=0
992;22.005524;dsms0mj1bbhn4.cloudfront.net;192.168.66.22;TCP;1421;http(80) > 50418 [ACK] Seq=25974 Ack=324 Win=15744 Len=1367 [TCP segment of a reassembled PDU]
993;22.006222;192.168.66.22;dsms0mj1bbhn4.cloudfront.net;TCP;60;50418 > http(80) [ACK] Seq=324 Ack=27341 Win=65616 Len=0
994;22.006291;dsms0mj1bbhn4.cloudfront.net;192.168.66.22;TCP;1421;http(80) > 50418 [ACK] Seq=27341 Ack=324 Win=15744 Len=1367 [TCP segment of a reassembled PDU]
995;22.006360;dsms0mj1bbhn4.cloudfront.net;192.168.66.22;TCP;1421;http(80) > 50418 [ACK] Seq=28708 Ack=324 Win=15744 Len=1367 [TCP segment of a reassembled PDU]
996;22.007045;192.168.66.22;dsms0mj1bbhn4.cloudfront.net;TCP;60;50418 > http(80) [ACK] Seq=324 Ack=30075 Win=65616 Len=0
997;22.044550;dsms0mj1bbhn4.cloudfront.net;192.168.66.22;TCP;1421;http(80) > 50418 [ACK] Seq=30075 Ack=324 Win=15744 Len=1367 [TCP segment of a reassembled PDU]
998;22.044617;dsms0mj1bbhn4.cloudfront.net;192.168.66.22;TCP;1421;http(80) > 50418 [ACK] Seq=31442 Ack=324 Win=15744 Len=1367 [TCP segment of a reassembled PDU]
999;22.044682;dsms0mj1bbhn4.cloudfront.net;192.168.66.22;TCP;1421;http(80) > 50418 [ACK] Seq=32809 Ack=324 Win=15744 Len=1367 [TCP segment of a reassembled PDU]