forked from harshitm98/XSS-finder
-
Notifications
You must be signed in to change notification settings - Fork 1
/
geckodriver.log
2014 lines (1971 loc) · 222 KB
/
geckodriver.log
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
1539069164530 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.YJByfrKSIToW"
1539069166022 Marionette INFO Listening on port 44307
1539069166113 Marionette WARN TLS certificate errors will be ignored for this session
1539069166159 Marionette DEBUG [2147483649] Frame script loaded
1539069166171 Marionette DEBUG [2147483649] Frame script registered
[Parent 12325, Gecko_IOThread] WARNING: pipe error (41): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539069179442 Marionette INFO Stopped listening on port 44307
1539069185038 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.DL7f5zH2AKcs"
1539069186414 Marionette INFO Listening on port 44029
1539069186447 Marionette WARN TLS certificate errors will be ignored for this session
1539069186495 Marionette DEBUG [2147483649] Frame script loaded
1539069186538 Marionette DEBUG [2147483649] Frame script registered
[Parent 13150, Gecko_IOThread] WARNING: pipe error (41): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539069220790 Marionette INFO Stopped listening on port 44029
1539069237664 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.5LpB8UbBTa9z"
1539069238909 Marionette INFO Listening on port 43567
1539069239016 Marionette WARN TLS certificate errors will be ignored for this session
1539069239064 Marionette DEBUG [2147483649] Frame script loaded
1539069239114 Marionette DEBUG [2147483649] Frame script registered
1539069239156 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539069240118 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539069240401 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for https://www.google.com/
1539069243154 Marionette DEBUG [2147483649] Received DOM event pageshow for https://www.google.com/
1539069244110 Marionette INFO Stopped listening on port 43567
1539069265334 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.5jgbUajB57Zn"
1539069266748 Marionette INFO Listening on port 41159
1539069266961 Marionette WARN TLS certificate errors will be ignored for this session
1539069267004 Marionette DEBUG [2147483649] Frame script loaded
1539069267005 Marionette DEBUG [2147483649] Frame script registered
1539069267022 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539069267481 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539069268416 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539069268628 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
[Parent 14878, Gecko_IOThread] WARNING: pipe error (42): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539069273908 Marionette INFO Stopped listening on port 41159
1539069401056 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.2YcY12Zwb19p"
1539069402432 Marionette INFO Listening on port 38579
1539069402498 Marionette WARN TLS certificate errors will be ignored for this session
1539069402546 Marionette DEBUG [2147483649] Frame script loaded
1539069402553 Marionette DEBUG [2147483649] Frame script registered
1539069402634 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539069403264 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539069403795 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539069404079 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539069439986 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.eqlu0Zep03Vs"
1539069441359 Marionette INFO Listening on port 40007
1539069441403 Marionette WARN TLS certificate errors will be ignored for this session
1539069441460 Marionette DEBUG [2147483649] Frame script loaded
1539069441516 Marionette DEBUG [2147483649] Frame script registered
1539069441551 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539069442067 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
[Parent 15797, Gecko_IOThread] WARNING: pipe error (42): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539069442650 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539069442673 Marionette INFO Stopped listening on port 38579
1539069442901 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539069480208 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.RSGWeGNBmlMD"
1539069481605 Marionette INFO Listening on port 34667
1539069481620 Marionette WARN TLS certificate errors will be ignored for this session
1539069481680 Marionette DEBUG [2147483649] Frame script loaded
1539069481742 Marionette DEBUG [2147483649] Frame script registered
1539069481777 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539069482391 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
[Parent 16624, Gecko_IOThread] WARNING: pipe error (42): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539069482993 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539069482995 Marionette INFO Stopped listening on port 40007
1539069483203 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539069552587 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.Shwu2gl6FD2S"
1539069554013 Marionette INFO Listening on port 34669
1539069554242 Marionette WARN TLS certificate errors will be ignored for this session
1539069554289 Marionette DEBUG [2147483649] Frame script loaded
1539069554290 Marionette DEBUG [2147483649] Frame script registered
1539069554309 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539069554749 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
[Parent 17444, Gecko_IOThread] WARNING: pipe error (43): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539069555355 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539069555498 Marionette INFO Stopped listening on port 34667
1539069555554 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
[Parent 18283, Gecko_IOThread] WARNING: pipe error (54): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539069568523 Marionette INFO Stopped listening on port 34669
1539069613142 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.H20BpSrNrksz"
1539069614473 Marionette INFO Listening on port 40331
1539069614674 Marionette WARN TLS certificate errors will be ignored for this session
1539069614725 Marionette DEBUG [2147483649] Frame script loaded
1539069614731 Marionette DEBUG [2147483649] Frame script registered
1539069614760 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539069615193 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539069615701 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539069615906 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539069689835 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.lIwIcFWgoCvO"
1539069691169 Marionette INFO Listening on port 45995
1539069691284 Marionette WARN TLS certificate errors will be ignored for this session
1539069691337 Marionette DEBUG [2147483649] Frame script loaded
1539069691388 Marionette DEBUG [2147483649] Frame script registered
1539069691446 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539069691881 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
[Parent 19123, Gecko_IOThread] WARNING: pipe error (42): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539069692437 Marionette INFO Stopped listening on port 40331
1539069692719 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539069692934 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539069770652 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.HamG26vHBXAq"
1539069772077 Marionette INFO Listening on port 45137
1539069772178 Marionette WARN TLS certificate errors will be ignored for this session
1539069772226 Marionette DEBUG [2147483649] Frame script loaded
1539069772281 Marionette DEBUG [2147483649] Frame script registered
1539069772344 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539069772834 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539069773389 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539069773618 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539069783510 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.mQbohGCYDqCe"
1539069784769 Marionette INFO Listening on port 41549
1539069784882 Marionette WARN TLS certificate errors will be ignored for this session
1539069784940 Marionette DEBUG [2147483649] Frame script loaded
1539069784997 Marionette DEBUG [2147483649] Frame script registered
1539069785059 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539069785496 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539069786317 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539069786587 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
[Parent 20793, Gecko_IOThread] WARNING: pipe error (42): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539069791350 Marionette INFO Stopped listening on port 45137
[Parent 21612, Gecko_IOThread] WARNING: pipe error (42): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539069792433 Marionette INFO Stopped listening on port 41549
[Parent 19956, Gecko_IOThread] WARNING: pipe error (42): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539069793242 Marionette INFO Stopped listening on port 45995
1539069817351 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.787LaVuzOuTM"
1539069818629 Marionette INFO Listening on port 33931
1539069818730 Marionette WARN TLS certificate errors will be ignored for this session
1539069818776 Marionette DEBUG [2147483649] Frame script loaded
1539069818840 Marionette DEBUG [2147483649] Frame script registered
1539069818902 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539069819444 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539069819940 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539069820726 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539069839234 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.nTC7ckf1RfJR"
1539069840422 Marionette INFO Stopped listening on port 33931
1539069840774 Marionette INFO Listening on port 38793
1539069840854 Marionette WARN TLS certificate errors will be ignored for this session
1539069840904 Marionette DEBUG [2147483649] Frame script loaded
1539069840949 Marionette DEBUG [2147483649] Frame script registered
1539069840967 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539069841449 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539069842239 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539069842491 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539069972990 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.Cyt3yk0asuMY"
1539069974348 Marionette INFO Listening on port 42343
1539069974508 Marionette WARN TLS certificate errors will be ignored for this session
1539069974557 Marionette DEBUG [2147483649] Frame script loaded
1539069974613 Marionette DEBUG [2147483649] Frame script registered
1539069974653 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539069977885 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539069978646 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539069979455 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539070248663 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.ZOnkWEwsDtf2"
1539070250088 Marionette INFO Listening on port 35145
1539070250406 Marionette WARN TLS certificate errors will be ignored for this session
1539070250457 Marionette DEBUG [2147483649] Frame script loaded
1539070250459 Marionette DEBUG [2147483649] Frame script registered
1539070250475 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539070250976 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539070251729 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539070251942 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
[Parent 24159, Gecko_IOThread] WARNING: pipe error (59): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539070257099 Marionette INFO Stopped listening on port 42343
[Parent 25083, Gecko_IOThread] WARNING: pipe error (42): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539070260644 Marionette INFO Stopped listening on port 35145
1539070298314 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.vj1PP2QjFmUP"
1539070299807 Marionette INFO Listening on port 44031
1539070299834 Marionette WARN TLS certificate errors will be ignored for this session
1539070299884 Marionette DEBUG [2147483649] Frame script loaded
1539070299936 Marionette DEBUG [2147483649] Frame script registered
1539070299959 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539070300595 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
[Parent 23268, Gecko_IOThread] WARNING: pipe error (54): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539070301262 Marionette INFO Stopped listening on port 38793
1539070301412 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539070301669 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539070321815 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.XWEji9WASoVf"
1539070323199 Marionette INFO Listening on port 44379
1539070323224 Marionette WARN TLS certificate errors will be ignored for this session
1539070323280 Marionette DEBUG [2147483649] Frame script loaded
1539070323356 Marionette DEBUG [2147483649] Frame script registered
1539070323377 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539070324150 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539070324966 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539070325588 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
[Parent 25955, Gecko_IOThread] WARNING: pipe error (42): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539070326181 Marionette INFO Stopped listening on port 44031
1539070412806 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.kmPax1Gumlq2"
1539070414068 Marionette INFO Listening on port 40817
1539070414170 Marionette WARN TLS certificate errors will be ignored for this session
1539070414223 Marionette DEBUG [2147483649] Frame script loaded
1539070414277 Marionette DEBUG [2147483649] Frame script registered
1539070414346 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539070418566 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539070419398 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539070420209 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
[Parent 26776, Gecko_IOThread] WARNING: pipe error (42): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539070421409 Marionette INFO Stopped listening on port 44379
1539070516312 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.GLBsgpF6cC6X"
1539070517690 Marionette INFO Listening on port 38705
1539070517809 Marionette WARN TLS certificate errors will be ignored for this session
1539070517865 Marionette DEBUG [2147483649] Frame script loaded
1539070517919 Marionette DEBUG [2147483649] Frame script registered
1539070517966 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539070518508 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539070519336 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539070519587 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539070525364 Marionette INFO Stopped listening on port 38705
1539070544535 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.dXF9wP9wVnXn"
1539070545886 Marionette INFO Listening on port 43715
1539070545951 Marionette WARN TLS certificate errors will be ignored for this session
1539070546001 Marionette DEBUG [2147483649] Frame script loaded
1539070546062 Marionette DEBUG [2147483649] Frame script registered
1539070546085 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539070546591 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539070547181 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539070547830 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539070649948 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.kDmlvrOjGE9P"
1539070651182 Marionette INFO Listening on port 39809
1539070651281 Marionette WARN TLS certificate errors will be ignored for this session
1539070651335 Marionette DEBUG [2147483649] Frame script loaded
1539070651389 Marionette DEBUG [2147483649] Frame script registered
1539070651453 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539070652149 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539070652667 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539070653066 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
[Parent 30157, Gecko_IOThread] WARNING: pipe error (42): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539070667926 Marionette INFO Stopped listening on port 39809
1539070707895 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.FCwWuuN8Uji7"
1539070709171 Marionette INFO Listening on port 46859
1539070709206 Marionette WARN TLS certificate errors will be ignored for this session
1539070709258 Marionette DEBUG [2147483649] Frame script loaded
1539070709303 Marionette DEBUG [2147483649] Frame script registered
1539070709328 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539070710458 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539070710458 Marionette DEBUG [2147483649] Received DOM event unload for about:blank
1539070710459 Marionette DEBUG [2147483649] Received observer notification outer-window-destroyed for 2147483649
[Parent 30982, Gecko_IOThread] WARNING: pipe error (42): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539070711302 Marionette INFO Stopped listening on port 46859
1539070721179 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.x9vAYQCYPTip"
1539070722567 Marionette INFO Listening on port 40245
1539070722587 Marionette WARN TLS certificate errors will be ignored for this session
1539070722636 Marionette DEBUG [2147483649] Frame script loaded
1539070722637 Marionette DEBUG [2147483649] Frame script registered
1539070722654 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539070723175 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539070723667 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539070723897 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539070962540 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.aEr7GIIf0DOZ"
1539070963865 Marionette INFO Listening on port 33833
1539070963975 Marionette WARN TLS certificate errors will be ignored for this session
1539070964021 Marionette DEBUG [2147483649] Frame script loaded
1539070964078 Marionette DEBUG [2147483649] Frame script registered
1539070964145 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539070964762 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539070965829 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539070966101 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539071091263 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.bxCSsbuSa7pL"
1539071092672 Marionette INFO Listening on port 34687
1539071092691 Marionette WARN TLS certificate errors will be ignored for this session
1539071092741 Marionette DEBUG [2147483649] Frame script loaded
1539071092799 Marionette DEBUG [2147483649] Frame script registered
1539071092825 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539071093396 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539071093911 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539071094637 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539071097600 Marionette INFO Stopped listening on port 34687
1539071196284 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.8l4D9M3jytua"
1539071197838 Marionette INFO Listening on port 39023
1539071197968 Marionette WARN TLS certificate errors will be ignored for this session
1539071198015 Marionette DEBUG [2147483649] Frame script loaded
1539071198045 Marionette DEBUG [2147483649] Frame script registered
1539071198067 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539071198505 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539071199295 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539071199547 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
[Parent 29299, Gecko_IOThread] WARNING: pipe error (42): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539071200397 Marionette INFO Stopped listening on port 43715
[Parent 32685, Gecko_IOThread] WARNING: pipe error (43): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539071201403 Marionette INFO Stopped listening on port 33833
1539071202511 Marionette INFO Stopped listening on port 40245
[Parent 27614, Gecko_IOThread] WARNING: pipe error (42): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539071203471 Marionette INFO Stopped listening on port 40817
1539071250909 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.PSN1yrnRvUOL"
1539071252168 Marionette INFO Listening on port 46223
1539071252382 Marionette WARN TLS certificate errors will be ignored for this session
1539071252430 Marionette DEBUG [2147483649] Frame script loaded
1539071252431 Marionette DEBUG [2147483649] Frame script registered
1539071252447 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539071253992 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539071257909 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for https://www.woodlandworldwide.com/
[Parent 2365, Gecko_IOThread] WARNING: pipe error (41): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539071278267 Marionette INFO Stopped listening on port 39023
1539071287399 Marionette DEBUG [2147483649] Received DOM event pageshow for https://www.woodlandworldwide.com/
1539071308077 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.L8aTfGpPlND2"
1539071309522 Marionette INFO Listening on port 41001
1539071309588 Marionette WARN TLS certificate errors will be ignored for this session
1539071309630 Marionette DEBUG [2147483649] Frame script loaded
1539071309632 Marionette DEBUG [2147483649] Frame script registered
1539071309717 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539071312899 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539071316351 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for https://www.woodlandworldwide.com/
[Parent 3310, Gecko_IOThread] WARNING: pipe error (42): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539071338684 Marionette INFO Stopped listening on port 46223
1539071344940 Marionette DEBUG [2147483649] Received DOM event pageshow for https://www.woodlandworldwide.com/
(/usr/lib/firefox/firefox:4207): dconf-WARNING **: 13:20:58.304: Unable to open /var/lib/snapd/desktop/dconf/profile/user: Permission denied
JavaScript error: https://www.woodlandworldwide.com/0/media/frontend/js/octa/jQuery_new.js, line 1: SyntaxError: expected expression, got ','
JavaScript error: https://www.woodlandworldwide.com/0/media/frontend/js/octa/jQuery_new.js line 339 > eval, line 1: ReferenceError: hello is not defined
JavaScript error: https://www.woodlandworldwide.com/0/media/frontend/js/octa/jQuery_new.js, line 1: SyntaxError: expected expression, got ','
1539072058953 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.pGUKOJ1zhMKE"
1539072060413 Marionette INFO Listening on port 45807
1539072060516 Marionette WARN TLS certificate errors will be ignored for this session
1539072060561 Marionette DEBUG [2147483649] Frame script loaded
1539072060562 Marionette DEBUG [2147483649] Frame script registered
1539072060585 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539072065013 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539072070995 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for https://www.woodlandworldwide.com/
1539072093716 Marionette DEBUG [2147483649] Received DOM event pageshow for https://www.woodlandworldwide.com/
1539072268582 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.r6vom1mhIrYm"
1539072269908 Marionette INFO Listening on port 46251
1539072270029 Marionette WARN TLS certificate errors will be ignored for this session
1539072270083 Marionette DEBUG [2147483649] Frame script loaded
1539072270158 Marionette DEBUG [2147483649] Frame script registered
1539072270248 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539072271589 Marionette INFO Stopped listening on port 45807
1539072273065 Marionette INFO Stopped listening on port 41001
1539072274428 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539072280380 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for https://www.woodlandworldwide.com/
1539072310917 Marionette DEBUG [2147483649] Received DOM event pageshow for https://www.woodlandworldwide.com/
1539072391528 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.Weo8gcb8xbIs"
1539072393082 Marionette INFO Listening on port 38871
1539072393201 Marionette WARN TLS certificate errors will be ignored for this session
1539072393245 Marionette DEBUG [2147483649] Frame script loaded
1539072393246 Marionette DEBUG [2147483649] Frame script registered
1539072393261 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539072394968 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539072398241 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for https://www.woodlandworldwide.com/
1539072418937 Marionette DEBUG [2147483649] Received DOM event pageshow for https://www.woodlandworldwide.com/
[Parent 6106, Gecko_IOThread] WARNING: pipe error (41): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539072524493 Marionette INFO Stopped listening on port 46251
1539072844218 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.ECVaD38xJ5Ur"
1539072845532 Marionette INFO Listening on port 46379
1539072845632 Marionette WARN TLS certificate errors will be ignored for this session
1539072845692 Marionette DEBUG [2147483649] Frame script loaded
1539072845763 Marionette DEBUG [2147483649] Frame script registered
1539072845808 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539072847889 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539072849825 Marionette INFO Stopped listening on port 38871
1539072853623 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for https://www.woodlandworldwide.com/
1539072890056 Marionette DEBUG [2147483649] Received DOM event pageshow for https://www.woodlandworldwide.com/
1539073046010 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.FRDJcHrKDkJF"
1539073047385 Marionette INFO Listening on port 40531
1539073047536 Marionette WARN TLS certificate errors will be ignored for this session
1539073047593 Marionette DEBUG [2147483649] Frame script loaded
1539073047596 Marionette DEBUG [2147483649] Frame script registered
1539073047691 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
[Parent 8031, Gecko_IOThread] WARNING: pipe error (42): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539073049293 Marionette INFO Stopped listening on port 46379
1539073051175 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539073055580 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for https://www.woodlandworldwide.com/
1539073081478 Marionette DEBUG [2147483649] Received DOM event pageshow for https://www.woodlandworldwide.com/
1539073801430 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.av58SOZQpa1n"
1539073802782 Marionette INFO Listening on port 42237
1539073803028 Marionette WARN TLS certificate errors will be ignored for this session
1539073803091 Marionette DEBUG [2147483649] Frame script loaded
1539073803101 Marionette DEBUG [2147483649] Frame script registered
1539073803138 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539073805273 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539073808082 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for https://www.woodlandworldwide.com/
1539073835590 Marionette DEBUG [2147483649] Received DOM event pageshow for https://www.woodlandworldwide.com/
1539073854163 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.97zTNPHU7OJ3"
1539073855657 Marionette INFO Listening on port 38853
1539073855683 Marionette WARN TLS certificate errors will be ignored for this session
1539073855731 Marionette DEBUG [2147483649] Frame script loaded
1539073855795 Marionette DEBUG [2147483649] Frame script registered
1539073855856 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
[Parent 10074, Gecko_IOThread] WARNING: pipe error (42): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539073856960 Marionette INFO Stopped listening on port 42237
1539073857200 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
[Parent 8947, Gecko_IOThread] WARNING: pipe error (42): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539073859157 Marionette INFO Stopped listening on port 40531
1539073859772 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for https://www.woodlandworldwide.com/
1539073883698 Marionette DEBUG [2147483649] Received DOM event pageshow for https://www.woodlandworldwide.com/
1539073942621 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.TANsaj6Sb6ds"
1539073943909 Marionette INFO Listening on port 33763
1539073943938 Marionette WARN TLS certificate errors will be ignored for this session
1539073943991 Marionette DEBUG [2147483649] Frame script loaded
1539073944032 Marionette DEBUG [2147483649] Frame script registered
1539073944054 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539073945482 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539073947862 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for https://www.woodlandworldwide.com/
[Parent 11006, Gecko_IOThread] WARNING: pipe error (49): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539073948531 Marionette INFO Stopped listening on port 38853
1539073969361 Marionette DEBUG [2147483649] Received DOM event pageshow for https://www.woodlandworldwide.com/
1539073969460 Marionette INFO Stopped listening on port 33763
[Parent 11937, Gecko_IOThread] WARNING: pipe error (42): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539079068256 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.oeiaOBlKz3So"
1539079070151 Marionette INFO Listening on port 44997
1539079070197 Marionette WARN TLS certificate errors will be ignored for this session
1539079070240 Marionette DEBUG [2147483649] Frame script loaded
1539079070240 Marionette DEBUG [2147483649] Frame script registered
1539079070324 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539079071989 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539079072658 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539079072857 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539079072896 Marionette INFO Stopped listening on port 44997
[Parent 3131, Gecko_IOThread] WARNING: pipe error (49): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539079083644 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.puFqoFivAhqw"
1539079085063 Marionette INFO Listening on port 43047
1539079085179 Marionette WARN TLS certificate errors will be ignored for this session
1539079085230 Marionette DEBUG [2147483649] Frame script loaded
1539079085237 Marionette DEBUG [2147483649] Frame script registered
1539079085267 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539079085765 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539079086343 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539079086627 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539079086642 Marionette INFO Stopped listening on port 43047
[Parent 4013, Gecko_IOThread] WARNING: pipe error (42): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539079115241 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.fdo3jrLCqDan"
1539079116727 Marionette INFO Listening on port 44317
1539079116748 Marionette WARN TLS certificate errors will be ignored for this session
1539079116814 Marionette DEBUG [2147483649] Frame script loaded
1539079116814 Marionette DEBUG [2147483649] Frame script registered
1539079116898 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539079117363 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539079117929 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539079118107 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539079118130 Marionette INFO Stopped listening on port 44317
[Parent 4838, Gecko_IOThread] WARNING: pipe error (42): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539079177717 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.0s7eZYXIS9lt"
1539079179039 Marionette INFO Listening on port 44197
1539079179154 Marionette WARN TLS certificate errors will be ignored for this session
1539079179202 Marionette DEBUG [2147483649] Frame script loaded
1539079179203 Marionette DEBUG [2147483649] Frame script registered
1539079179230 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539079179726 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539079180332 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539079180504 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539079180536 Marionette INFO Stopped listening on port 44197
[Parent 5677, Gecko_IOThread] WARNING: pipe error (42): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539079210245 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.wOzrRCuLGfQu"
1539079211662 Marionette INFO Listening on port 43041
1539079211776 Marionette WARN TLS certificate errors will be ignored for this session
1539079211822 Marionette DEBUG [2147483649] Frame script loaded
1539079211823 Marionette DEBUG [2147483649] Frame script registered
1539079211837 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539079212273 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539079212765 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539079212997 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539079213032 Marionette INFO Stopped listening on port 43041
1539080011379 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.mq2aH9Z6DzT8"
1539080012700 Marionette INFO Listening on port 39761
1539080012873 Marionette WARN TLS certificate errors will be ignored for this session
1539080012943 Marionette DEBUG [2147483649] Frame script loaded
1539080012948 Marionette DEBUG [2147483649] Frame script registered
1539080013068 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539080013757 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539080014684 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539080014910 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539080014973 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/
1539080015368 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/
1539080015372 Marionette DEBUG [2147483649] Received DOM event unload for http://testphp.vulnweb.com/
1539080015686 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/search.php?test=query
1539080016088 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/search.php?test=query
1539080016121 Marionette INFO Stopped listening on port 39761
1539080423646 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.cp712ENr1LaG"
1539080425169 Marionette INFO Listening on port 38337
1539080425335 Marionette WARN TLS certificate errors will be ignored for this session
1539080425380 Marionette DEBUG [2147483649] Frame script loaded
1539080425381 Marionette DEBUG [2147483649] Frame script registered
1539080425402 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539080430840 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539080431368 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539080431585 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539080431631 Marionette INFO Stopped listening on port 38337
###!!! [Parent][MessageChannel] Error: (msgtype=0x170080,name=PBrowser::Msg_Destroy) Closed channel: cannot send/recv
[Parent 10336, Gecko_IOThread] WARNING: pipe error (41): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
JavaScript error: resource://gre/modules/Sqlite.jsm, line 841: Error: Connection is not open.
[Parent 10336, Gecko_IOThread] WARNING: pipe error (101): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539080449487 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.apmIbt2yTEn4"
1539080450952 Marionette INFO Listening on port 34929
1539080451094 Marionette WARN TLS certificate errors will be ignored for this session
1539080451142 Marionette DEBUG [2147483649] Frame script loaded
1539080451143 Marionette DEBUG [2147483649] Frame script registered
1539080451157 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539080451686 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539080452325 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539080452548 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539080452647 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/
1539080453513 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/
1539080453516 Marionette DEBUG [2147483649] Received DOM event unload for http://testphp.vulnweb.com/
1539080453941 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/search.php?test=query
1539080454332 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/search.php?test=query
1539080454379 Marionette INFO Stopped listening on port 34929
###!!! [Parent][MessageChannel] Error: (msgtype=0x170080,name=PBrowser::Msg_Destroy) Closed channel: cannot send/recv
[Parent 11189, Gecko_IOThread] WARNING: pipe error (42): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Parent 11189, Gecko_IOThread] WARNING: pipe error (96): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539080482818 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.1LW0CBqfqY4o"
1539080484062 Marionette INFO Listening on port 44997
1539080484170 Marionette WARN TLS certificate errors will be ignored for this session
1539080484218 Marionette DEBUG [2147483649] Frame script loaded
1539080484272 Marionette DEBUG [2147483649] Frame script registered
1539080484335 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539080487718 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539080492061 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for https://www.woodlandworldwide.com/
1539080510253 Marionette DEBUG [2147483649] Received DOM event pageshow for https://www.woodlandworldwide.com/
[Parent 12036, Gecko_IOThread] WARNING: pipe error (42): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539080539090 Marionette INFO Stopped listening on port 44997
1539080542021 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.4XlBkgTDWRfx"
1539080543404 Marionette INFO Listening on port 34575
1539080543452 Marionette WARN TLS certificate errors will be ignored for this session
1539080543507 Marionette DEBUG [2147483649] Frame script loaded
1539080543562 Marionette DEBUG [2147483649] Frame script registered
1539080543586 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539080546886 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539080549936 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for https://www.woodlandworldwide.com/
1539080563157 Marionette DEBUG [2147483649] Received DOM event pageshow for https://www.woodlandworldwide.com/
1539080719272 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.EecGZPQ7wABj"
1539080720934 Marionette INFO Listening on port 41027
1539080721121 Marionette WARN TLS certificate errors will be ignored for this session
1539080721164 Marionette DEBUG [2147483649] Frame script loaded
1539080721165 Marionette DEBUG [2147483649] Frame script registered
1539080721176 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539080722467 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539080723483 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://prompt.ml/0
1539080725045 Marionette DEBUG [2147483649] Received DOM event pageshow for http://prompt.ml/0
1539080896981 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.2VDDkWgdqx9w"
1539080898250 Marionette INFO Listening on port 35921
1539080898351 Marionette WARN TLS certificate errors will be ignored for this session
1539080898408 Marionette DEBUG [2147483649] Frame script loaded
1539080898464 Marionette DEBUG [2147483649] Frame script registered
1539080898526 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539080900319 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539080903895 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://prompt.ml/0
1539080904592 Marionette DEBUG [2147483649] Received DOM event pageshow for http://prompt.ml/0
[Parent 12878, Gecko_IOThread] WARNING: pipe error (42): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
[Parent 12878, Gecko_IOThread] WARNING: pipe error (97): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539080928660 Marionette INFO Stopped listening on port 34575
[Parent 13786, Gecko_IOThread] WARNING: pipe error (42): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539080930102 Marionette INFO Stopped listening on port 41027
[Parent 14693, Gecko_IOThread] WARNING: pipe error (41): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539080934283 Marionette INFO Stopped listening on port 35921
1539082457341 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.O2iq5uxGYiOO"
1539082458673 Marionette INFO Listening on port 43571
1539082458851 Marionette WARN TLS certificate errors will be ignored for this session
1539082458915 Marionette DEBUG [2147483649] Frame script loaded
1539082459023 Marionette DEBUG [2147483649] Frame script registered
1539082459100 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539082459486 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539082461043 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://prompt.ml/0
1539082462473 Marionette DEBUG [2147483649] Received DOM event pageshow for http://prompt.ml/0
1539082464380 Marionette INFO Stopped listening on port 43571
1539082472882 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.kH1kqHY7BbFQ"
1539082474158 Marionette INFO Listening on port 45167
1539082474201 Marionette WARN TLS certificate errors will be ignored for this session
1539082474248 Marionette DEBUG [2147483649] Frame script loaded
1539082474364 Marionette DEBUG [2147483649] Frame script registered
1539082474419 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539082475847 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539082477977 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for https://www.woodlandworldwide.com/
1539082486911 Marionette DEBUG [2147483649] Received DOM event pageshow for https://www.woodlandworldwide.com/
1539082521965 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.xsFh8UcSwzmd"
1539082523280 Marionette INFO Listening on port 38969
1539082523399 Marionette WARN TLS certificate errors will be ignored for this session
1539082523449 Marionette DEBUG [2147483649] Frame script loaded
1539082523455 Marionette DEBUG [2147483649] Frame script registered
1539082523539 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539082525197 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539082527668 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for https://www.woodlandworldwide.com/
1539082539141 Marionette DEBUG [2147483649] Received DOM event pageshow for https://www.woodlandworldwide.com/
1539082539535 Marionette DEBUG [2147483649] Canceled page load listener because no navigation has been detected
[Parent 23056, Gecko_IOThread] WARNING: pipe error (41): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539082566923 Marionette INFO Stopped listening on port 45167
console.warn: LoginRecipes: getRecipes: falling back to a synchronous message for: https://www.woodlandworldwide.com
1539082695162 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.J6FGV5bMA6Yi"
1539082696525 Marionette INFO Listening on port 32907
1539082696623 Marionette WARN TLS certificate errors will be ignored for this session
1539082696677 Marionette DEBUG [2147483649] Frame script loaded
1539082696739 Marionette DEBUG [2147483649] Frame script registered
1539082696793 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539082698245 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539082701260 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for https://www.woodlandworldwide.com/
1539082711964 Marionette DEBUG [2147483649] Received DOM event pageshow for https://www.woodlandworldwide.com/
1539082712335 Marionette DEBUG [2147483649] Canceled page load listener because no navigation has been detected
1539082712529 Marionette DEBUG [2147483649] Received DOM event beforeunload for https://www.woodlandworldwide.com/
1539082712894 Marionette DEBUG [2147483649] Received DOM event pagehide for https://www.woodlandworldwide.com/
1539082712900 Marionette DEBUG [2147483649] Received DOM event unload for https://www.woodlandworldwide.com/
JavaScript error: https://www.woodlandworldwide.com/0/media/frontend/js/octa/jQuery_new.js line 339 > eval, line 1: ReferenceError: hello is not defined
1539082716299 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for https://www.woodlandworldwide.com/wnew/faces/search.jsp?searchkey=hello&clg=10
1539082716316 Marionette DEBUG [2147483649] Received DOM event pageshow for https://www.woodlandworldwide.com/wnew/faces/search.jsp?searchkey=hello&clg=10
[Parent 23898, Gecko_IOThread] WARNING: pipe error (42): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539082943505 Marionette INFO Stopped listening on port 38969
1539142416379 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.9CfxAjW9Q6LR"
1539142418372 Marionette INFO Listening on port 40795
1539142418434 Marionette WARN TLS certificate errors will be ignored for this session
1539142418503 Marionette DEBUG [2147483649] Frame script loaded
1539142418657 Marionette DEBUG [2147483649] Frame script registered
1539142419002 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539142419518 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539142420669 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for https://www.woodlandworldwide.com/
1539142426737 Marionette DEBUG [2147483649] Received DOM event pageshow for https://www.woodlandworldwide.com/
1539142427079 Marionette DEBUG [2147483649] Canceled page load listener because no navigation has been detected
1539142427185 Marionette DEBUG [2147483649] Received DOM event beforeunload for https://www.woodlandworldwide.com/
1539142427545 Marionette DEBUG [2147483649] Received DOM event pagehide for https://www.woodlandworldwide.com/
1539142427552 Marionette DEBUG [2147483649] Received DOM event unload for https://www.woodlandworldwide.com/
JavaScript error: https://www.woodlandworldwide.com/0/media/frontend/js/octa/jQuery_new.js, line 1: SyntaxError: missing } after property list
JavaScript note: https://www.woodlandworldwide.com/0/media/frontend/js/octa/jQuery_new.js, line 1: { opened at line 1, column 23
1539142428286 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for https://www.woodlandworldwide.com/wnew/faces/search.jsp?searchkey=I%20am%20batman&clg=10
1539142428300 Marionette DEBUG [2147483649] Received DOM event pageshow for https://www.woodlandworldwide.com/wnew/faces/search.jsp?searchkey=I%20am%20batman&clg=10
1539142428364 Marionette INFO Stopped listening on port 40795
1539142452196 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.VF4apNEI5dqD"
1539142453650 Marionette INFO Listening on port 43947
1539142453771 Marionette WARN TLS certificate errors will be ignored for this session
1539142453825 Marionette DEBUG [2147483649] Frame script loaded
1539142453826 Marionette DEBUG [2147483649] Frame script registered
1539142453839 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539142454259 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539142454910 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539142454979 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539142455035 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/
1539142455385 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/
1539142455385 Marionette DEBUG [2147483649] Received DOM event unload for http://testphp.vulnweb.com/
1539142455591 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/search.php?test=query
1539142455802 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/search.php?test=query
1539142455837 Marionette INFO Stopped listening on port 43947
1539144164940 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.7cgtY01sCOsB"
1539144166209 Marionette INFO Listening on port 33347
1539144166348 Marionette WARN TLS certificate errors will be ignored for this session
1539144166403 Marionette DEBUG [2147483649] Frame script loaded
1539144166404 Marionette DEBUG [2147483649] Frame script registered
1539144166489 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539144167083 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539144167735 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539144168107 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539144168189 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/
1539144168518 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/
1539144168521 Marionette DEBUG [2147483649] Received DOM event unload for http://testphp.vulnweb.com/
1539144168857 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/search.php?test=query
1539144169135 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/search.php?test=query
1539144169204 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/search.php?test=query
1539144169541 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/search.php?test=query
1539144169966 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539144170159 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539144199105 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.m8JdwhcwNFLj"
1539144200309 Marionette INFO Listening on port 37353
1539144200314 Marionette WARN TLS certificate errors will be ignored for this session
1539144200364 Marionette DEBUG [2147483649] Frame script loaded
1539144200434 Marionette DEBUG [2147483649] Frame script registered
1539144200485 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539144200875 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539144201392 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539144201599 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539144201652 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/
1539144202006 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/
1539144202007 Marionette DEBUG [2147483649] Received DOM event unload for http://testphp.vulnweb.com/
1539144202331 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/search.php?test=query
1539144202517 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/search.php?test=query
[Parent 4534, Gecko_IOThread] WARNING: pipe error (42): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539144204769 Marionette INFO Stopped listening on port 33347
1539144210058 Marionette INFO Stopped listening on port 37353
1539144224306 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.WP4ojXAezikv"
1539144225539 Marionette INFO Listening on port 40277
1539144225731 Marionette WARN TLS certificate errors will be ignored for this session
1539144225776 Marionette DEBUG [2147483649] Frame script loaded
1539144225784 Marionette DEBUG [2147483649] Frame script registered
1539144225801 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539144226377 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539144227032 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539144227200 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539144227278 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/
1539144227610 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/
1539144227613 Marionette DEBUG [2147483649] Received DOM event unload for http://testphp.vulnweb.com/
1539144228024 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/search.php?test=query
1539144228234 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/search.php?test=query
[Parent 6189, Gecko_IOThread] WARNING: pipe error (41): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539144320477 Marionette INFO Stopped listening on port 40277
1539144323991 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.aNiKjg6ZTPzS"
1539144325267 Marionette INFO Listening on port 34965
1539144325413 Marionette WARN TLS certificate errors will be ignored for this session
1539144325464 Marionette DEBUG [2147483649] Frame script loaded
1539144325521 Marionette DEBUG [2147483649] Frame script registered
1539144325546 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539144325924 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539144326451 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539144326656 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539144326729 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/
1539144327152 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/
1539144327156 Marionette DEBUG [2147483649] Received DOM event unload for http://testphp.vulnweb.com/
1539144327467 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/search.php?test=query
1539144327672 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/search.php?test=query
1539144327712 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/search.php?test=query
1539144328077 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/search.php?test=query
1539144328505 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539144328675 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539144328726 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/
1539144329199 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/
1539144329201 Marionette DEBUG [2147483649] Received DOM event unload for http://testphp.vulnweb.com/
1539144329727 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539144330123 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
[Parent 7052, Gecko_IOThread] WARNING: pipe error (42): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539144347590 Marionette INFO Stopped listening on port 34965
1539144350457 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.81i71d2zD824"
1539144351664 Marionette INFO Listening on port 38913
1539144351787 Marionette WARN TLS certificate errors will be ignored for this session
1539144351844 Marionette DEBUG [2147483649] Frame script loaded
1539144351849 Marionette DEBUG [2147483649] Frame script registered
1539144351863 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539144352344 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539144352968 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539144353473 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539144353567 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/
1539144353852 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/
1539144353855 Marionette DEBUG [2147483649] Received DOM event unload for http://testphp.vulnweb.com/
1539144354212 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/search.php?test=query
1539144354394 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/search.php?test=query
1539144354456 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/search.php?test=query
1539144354809 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/search.php?test=query
1539144355121 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539144355320 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539144954001 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.66qqjwcKsonc"
1539144955234 Marionette INFO Listening on port 39125
1539144955340 Marionette WARN TLS certificate errors will be ignored for this session
1539144955389 Marionette DEBUG [2147483649] Frame script loaded
1539144955440 Marionette DEBUG [2147483649] Frame script registered
1539144955484 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539144955861 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539144956484 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539144956687 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539144956761 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/
1539144957092 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/
1539144957096 Marionette DEBUG [2147483649] Received DOM event unload for http://testphp.vulnweb.com/
1539144957518 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/search.php?test=query
1539144957731 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/search.php?test=query
1539144957765 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/search.php?test=query
1539144958123 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/search.php?test=query
1539144958355 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539144958729 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
[Parent 9029, Gecko_IOThread] WARNING: pipe error (42): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539145672376 Marionette INFO Stopped listening on port 39125
[Parent 7874, Gecko_IOThread] WARNING: pipe error (42): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539145673773 Marionette INFO Stopped listening on port 38913
1539145860989 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.QYvCBuILm40u"
1539145862372 Marionette INFO Listening on port 40507
1539145862400 Marionette WARN TLS certificate errors will be ignored for this session
1539145862456 Marionette DEBUG [2147483649] Frame script loaded
1539145862506 Marionette DEBUG [2147483649] Frame script registered
1539145862622 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539145863169 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539145863754 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539145863903 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539145864055 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/
1539145864315 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/
1539145864318 Marionette DEBUG [2147483649] Received DOM event unload for http://testphp.vulnweb.com/
1539145864618 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/search.php?test=query
1539145865012 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/search.php?test=query
1539145898330 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.1V9DNjLqyvyM"
1539145899909 Marionette INFO Listening on port 38301
1539145899960 Marionette WARN TLS certificate errors will be ignored for this session
1539145900014 Marionette DEBUG [2147483649] Frame script loaded
1539145900097 Marionette DEBUG [2147483649] Frame script registered
1539145900124 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539145900901 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539145901307 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539145901674 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539145901746 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/
1539145902035 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/
1539145902036 Marionette DEBUG [2147483649] Received DOM event unload for http://testphp.vulnweb.com/
1539145902257 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/search.php?test=query
1539145902599 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/search.php?test=query
1539145902658 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/search.php?test=query
1539145903012 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/search.php?test=query
1539145903288 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
[Parent 10278, Gecko_IOThread] WARNING: pipe error (42): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539145903642 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539145903742 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/
1539145903782 Marionette INFO Stopped listening on port 40507
1539145903936 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/
1539145903937 Marionette DEBUG [2147483649] Received DOM event unload for http://testphp.vulnweb.com/
1539145983469 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.IovpnfcZmcii"
1539145984916 Marionette INFO Listening on port 35197
1539145985033 Marionette WARN TLS certificate errors will be ignored for this session
1539145985084 Marionette DEBUG [2147483649] Frame script loaded
1539145985153 Marionette DEBUG [2147483649] Frame script registered
1539145985215 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539145985656 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539145986229 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539145986380 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
[Parent 11999, Gecko_IOThread] WARNING: pipe error (42): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539146057539 Marionette INFO Stopped listening on port 35197
[Parent 11110, Gecko_IOThread] WARNING: pipe error (42): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539146059271 Marionette INFO Stopped listening on port 38301
1539146162502 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.wHVrNhY6ofsx"
1539146163939 Marionette INFO Listening on port 46665
1539146164065 Marionette WARN TLS certificate errors will be ignored for this session
1539146164115 Marionette DEBUG [2147483649] Frame script loaded
1539146164174 Marionette DEBUG [2147483649] Frame script registered
1539146164223 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539146164674 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539146165310 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539146165494 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539146165599 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/
1539146165903 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/
1539146165904 Marionette DEBUG [2147483649] Received DOM event unload for http://testphp.vulnweb.com/
1539146166124 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/search.php?test=query
1539146166315 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/search.php?test=query
1539146166378 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/search.php?test=query
1539146166724 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/search.php?test=query
1539146167152 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539146167570 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539146167846 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/
1539146168159 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/
1539146168162 Marionette DEBUG [2147483649] Received DOM event unload for http://testphp.vulnweb.com/
Handler function LocalDebuggerTransport instance's this.other.hooks.onPacket threw an exception: TypeError: to is null
Stack: onPacket@resource://devtools/shared/base-loader.js -> resource://devtools/server/main.js:1757:11
send/<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/transport/transport.js:553:13
exports.makeInfallible/<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/ThreadSafeDevToolsUtils.js:109:14
exports.makeInfallible/<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/ThreadSafeDevToolsUtils.js:109:14
Line: 1757, column: 11
console.error: "Handler function LocalDebuggerTransport instance's this.other.hooks.onPacket threw an exception: TypeError: to is null\nStack: onPacket@resource://devtools/shared/base-loader.js -> resource://devtools/server/main.js:1757:11\nsend/<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/transport/transport.js:553:13\nexports.makeInfallible/<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/ThreadSafeDevToolsUtils.js:109:14\nexports.makeInfallible/<@resource://devtools/shared/base-loader.js -> resource://devtools/shared/ThreadSafeDevToolsUtils.js:109:14\nLine: 1757, column: 11"
1539146495845 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.CnFZuYvJ5eZ8"
1539146497307 Marionette INFO Listening on port 39119
1539146497430 Marionette WARN TLS certificate errors will be ignored for this session
1539146497482 Marionette DEBUG [2147483649] Frame script loaded
1539146497543 Marionette DEBUG [2147483649] Frame script registered
1539146497595 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539146498133 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539146498652 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539146498862 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539146498993 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/
1539146499216 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/
1539146499220 Marionette DEBUG [2147483649] Received DOM event unload for http://testphp.vulnweb.com/
1539146499441 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/search.php?test=query
1539146499623 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/search.php?test=query
1539146499654 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/search.php?test=query
1539146499847 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/search.php?test=query
1539146500107 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539146500286 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539146500397 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/
1539146500591 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/
1539146500596 Marionette DEBUG [2147483649] Received DOM event unload for http://testphp.vulnweb.com/
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
IPDL protocol error: Handler returned error code!
###!!! [Parent][DispatchAsyncMessage] Error: PLayerTransaction::Msg_ReleaseLayer Processing error: message was deserialized, but the handler returned false (indicating failure)
[Parent 12947, Gecko_IOThread] WARNING: pipe error (42): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539146505800 Marionette INFO Stopped listening on port 46665
1539146528786 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.5A1RvEyychUs"
1539146530239 Marionette INFO Listening on port 34427
1539146530422 Marionette WARN TLS certificate errors will be ignored for this session
1539146530473 Marionette DEBUG [2147483649] Frame script loaded
1539146530527 Marionette DEBUG [2147483649] Frame script registered
1539146530583 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539146530938 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539146531427 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539146531628 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539146531777 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/
1539146532015 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/
1539146532018 Marionette DEBUG [2147483649] Received DOM event unload for http://testphp.vulnweb.com/
1539146532275 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/search.php?test=query
1539146532476 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/search.php?test=query
1539146532569 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/search.php?test=query
1539146532955 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/search.php?test=query
1539146533368 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539146533569 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539146533676 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/
1539146533864 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/
1539146533866 Marionette DEBUG [2147483649] Received DOM event unload for http://testphp.vulnweb.com/
1539147200752 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.q42elwqcujDr"
1539147202175 Marionette INFO Listening on port 32775
1539147202334 Marionette WARN TLS certificate errors will be ignored for this session
1539147202395 Marionette DEBUG [2147483649] Frame script loaded
1539147202468 Marionette DEBUG [2147483649] Frame script registered
1539147202494 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539147203025 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539147203645 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539147203848 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539147203961 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/
1539147204263 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/
1539147204264 Marionette DEBUG [2147483649] Received DOM event unload for http://testphp.vulnweb.com/
1539147204536 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/search.php?test=query
1539147204930 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/search.php?test=query
1539147204971 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/search.php?test=query
1539147205178 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/search.php?test=query
1539147205497 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539147205694 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539147205833 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/
1539147206096 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/
1539147206097 Marionette DEBUG [2147483649] Received DOM event unload for http://testphp.vulnweb.com/
[Parent 14814, Gecko_IOThread] WARNING: pipe error (41): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539147210308 Marionette INFO Stopped listening on port 34427
[Parent 13970, Gecko_IOThread] WARNING: pipe error (42): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539147213141 Marionette INFO Stopped listening on port 39119
[Parent 15838, Gecko_IOThread] WARNING: pipe error (42): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539147219967 Marionette INFO Stopped listening on port 32775
1539147659462 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.6V8hKnJ447dp"
1539147660852 Marionette INFO Listening on port 40257
1539147660880 Marionette WARN TLS certificate errors will be ignored for this session
1539147660934 Marionette DEBUG [2147483649] Frame script loaded
1539147660991 Marionette DEBUG [2147483649] Frame script registered
1539147661131 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539147661708 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539147662329 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539147662529 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539147662645 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/
1539147662904 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/
1539147662906 Marionette DEBUG [2147483649] Received DOM event unload for http://testphp.vulnweb.com/
1539147663360 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/search.php?test=query
1539147663657 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/search.php?test=query
1539147663713 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/search.php?test=query
1539147664066 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/search.php?test=query
1539147664503 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539147664886 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539147665007 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/
1539147665196 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/
1539147665200 Marionette DEBUG [2147483649] Received DOM event unload for http://testphp.vulnweb.com/
1539147706986 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.IvucNnL0Sk6J"
1539147708389 Marionette INFO Listening on port 45499
1539147708403 Marionette WARN TLS certificate errors will be ignored for this session
1539147708456 Marionette DEBUG [2147483649] Frame script loaded
1539147708520 Marionette DEBUG [2147483649] Frame script registered
1539147708594 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539147709126 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539147709718 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539147709940 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539147710058 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/
1539147710324 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/
1539147710329 Marionette DEBUG [2147483649] Received DOM event unload for http://testphp.vulnweb.com/
1539147710704 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/search.php?test=query
1539147711004 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/search.php?test=query
1539147711035 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/search.php?test=query
1539147711305 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/search.php?test=query
1539147711669 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539147711908 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539147711987 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/
1539147712225 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/
1539147712227 Marionette DEBUG [2147483649] Received DOM event unload for http://testphp.vulnweb.com/
[Parent 17810, Gecko_IOThread] WARNING: pipe error (48): Connection reset by peer: file /build/firefox-IVlCbR/firefox-62.0.3+build1/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 353
1539147731282 Marionette INFO Stopped listening on port 45499
1539147924234 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.ix3exTLimdIe"
1539147925606 Marionette INFO Listening on port 35515
1539147925734 Marionette WARN TLS certificate errors will be ignored for this session
1539147925781 Marionette DEBUG [2147483649] Frame script loaded
1539147925791 Marionette DEBUG [2147483649] Frame script registered
1539147925827 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539147926352 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539147926835 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539147927065 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539147927204 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/
1539147927472 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/
1539147927475 Marionette DEBUG [2147483649] Received DOM event unload for http://testphp.vulnweb.com/
1539147927894 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/search.php?test=query
1539147928108 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/search.php?test=query
1539147928171 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/search.php?test=query
1539147928501 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/search.php?test=query
1539147928949 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539147929320 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539147929442 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/
1539147929631 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/
1539147929635 Marionette DEBUG [2147483649] Received DOM event unload for http://testphp.vulnweb.com/
1539147980837 mozrunner::runner INFO Running command: "/usr/bin/firefox" "-marionette" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.RkOo5zlrcwWb"
1539147982337 Marionette INFO Listening on port 43159
1539147982373 Marionette WARN TLS certificate errors will be ignored for this session
1539147982436 Marionette DEBUG [2147483649] Frame script loaded
1539147982438 Marionette DEBUG [2147483649] Frame script registered
1539147982457 Marionette DEBUG [2147483649] Received DOM event beforeunload for about:blank
1539147982876 Marionette DEBUG [2147483649] Received DOM event pagehide for about:blank
1539147983412 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539147983594 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539147983657 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/
1539147983943 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/
1539147983944 Marionette DEBUG [2147483649] Received DOM event unload for http://testphp.vulnweb.com/
1539147984241 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/search.php?test=query
1539147984415 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/search.php?test=query
1539147984494 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/search.php?test=query
1539147984745 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/search.php?test=query
1539147985056 Marionette DEBUG [2147483649] Received DOM event DOMContentLoaded for http://testphp.vulnweb.com/
1539147985241 Marionette DEBUG [2147483649] Received DOM event pageshow for http://testphp.vulnweb.com/
1539147985385 Marionette DEBUG [2147483649] Received DOM event beforeunload for http://testphp.vulnweb.com/
1539147985645 Marionette DEBUG [2147483649] Received DOM event pagehide for http://testphp.vulnweb.com/
1539147985647 Marionette DEBUG [2147483649] Received DOM event unload for http://testphp.vulnweb.com/