forked from musalbas/heartbleed-masstest
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtop10000.txt
10646 lines (10640 loc) · 379 KB
/
top10000.txt
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
Disclaimer: This scan was performed around April 8, 16:00 UTC. Websites listed
as vulnerable may no longer be vulnerable. This list serves as a snapshot of
vulnerable sites at the time of the scan.
To check if a site is still vulnerable, you may use the tool at:
http://filippo.io/Heartbleed/
-
Testing yahoo.com... vulnerable.
Testing imgur.com... vulnerable.
Testing stackoverflow.com... vulnerable.
Testing kickass.to... vulnerable.
Testing flickr.com... vulnerable.
Testing sogou.com... vulnerable.
Testing adf.ly... vulnerable.
Testing outbrain.com... vulnerable.
Testing archive.org... vulnerable.
Testing addthis.com... vulnerable.
Testing stackexchange.com... vulnerable.
Testing popads.net... vulnerable.
Testing php.net... vulnerable.
Testing avito.ru... vulnerable.
Testing kaskus.co.id... vulnerable.
Testing web.de... vulnerable.
Testing chaturbate.com... vulnerable.
Testing zeobit.com... vulnerable.
Testing beeg.com... vulnerable.
Testing seznam.cz... vulnerable.
Testing okcupid.com... vulnerable.
Testing pch.com... vulnerable.
Testing xda-developers.com... vulnerable.
Testing steamcommunity.com... vulnerable.
Testing scoop.it... vulnerable.
Testing hidemyass.com... vulnerable.
Testing 123rf.com... vulnerable.
Testing m-w.com... vulnerable.
Testing dreamstime.com... vulnerable.
Testing majesticseo.com... vulnerable.
Testing amung.us... vulnerable.
Testing duckduckgo.com... vulnerable.
Testing leo.org... vulnerable.
Testing eventbrite.com... vulnerable.
Testing wetransfer.com... vulnerable.
Testing sh.st... vulnerable.
Testing entrepreneur.com... vulnerable.
Testing zoho.com... vulnerable.
Testing yts.re... vulnerable.
Testing usmagazine.com... vulnerable.
Testing letitbit.net... vulnerable.
Testing fool.com... vulnerable.
Testing digitalpoint.com... vulnerable.
Testing picmonkey.com... vulnerable.
Testing petflow.com... vulnerable.
Testing squidoo.com... vulnerable.
Testing avazutracking.net... vulnerable.
Testing elegantthemes.com... vulnerable.
Testing 500px.com... vulnerable.
Testing wpmudev.org... vulnerable.
Testing junbi-tracker.com... vulnerable.
Testing gogetlinks.net... vulnerable.
Testing freelotto.com... vulnerable.
Testing cheezburger.com... vulnerable.
Testing weather.gov... vulnerable.
Testing zergnet.com... vulnerable.
Testing city-data.com... vulnerable.
Testing mail.com... vulnerable.
Testing bab.la... vulnerable.
Testing internettrafficformula.com... vulnerable.
Testing startimes.com... vulnerable.
Testing homeshop18.com... vulnerable.
Testing rollingstone.com... vulnerable.
Testing smi2.ru... vulnerable.
Testing gogvo.com... vulnerable.
Testing indiegogo.com... vulnerable.
Testing livetv.sx... vulnerable.
Testing infowars.com... vulnerable.
Testing zap2it.com... vulnerable.
Testing breitbart.com... vulnerable.
Testing fatwallet.com... vulnerable.
Testing internetdownloadmanager.com... vulnerable.
Testing yjc.ir... vulnerable.
Testing chess.com... vulnerable.
Testing doodle.com... vulnerable.
Testing sendspace.com... vulnerable.
Testing similarweb.com... vulnerable.
Testing inc.com... vulnerable.
Testing bomnegocio.com... vulnerable.
Testing studiopress.com... vulnerable.
Testing privatbank.ua... vulnerable.
Testing juicyads.com... vulnerable.
Testing theatlantic.com... vulnerable.
Testing chefkoch.de... vulnerable.
Testing mirtesen.ru... vulnerable.
Testing clickey.com... vulnerable.
Testing letras.mus.br... vulnerable.
Testing tusfiles.net... vulnerable.
Testing reverbnation.com... vulnerable.
Testing digitaltrends.com... vulnerable.
Testing searchenginejournal.com... vulnerable.
Testing torcache.net... vulnerable.
Testing yify-torrents.com... vulnerable.
Testing championat.com... vulnerable.
Testing arstechnica.com... vulnerable.
Testing sme.sk... vulnerable.
Testing zomato.com... vulnerable.
Testing economist.com... vulnerable.
Testing slimspots.com... vulnerable.
Testing jasmin.com... vulnerable.
Testing lonelyplanet.com... vulnerable.
Testing unity3d.com... vulnerable.
Testing androidcentral.com... vulnerable.
Testing wanggou.com... vulnerable.
Testing tubegalore.com... vulnerable.
Testing gi-akademie.com... vulnerable.
Testing rarbg.com... vulnerable.
Testing prezentacya.ru... vulnerable.
Testing watchtower.com... vulnerable.
Testing xxxbunker.com... vulnerable.
Testing kaspersky.com... vulnerable.
Testing adxcore.com... vulnerable.
Testing depositfiles.com... vulnerable.
Testing xtool.ru... vulnerable.
Testing rantlifestyle.com... vulnerable.
Testing xml-sitemaps.com... vulnerable.
Testing banglanews24.com... vulnerable.
Testing worldoftanks.ru... vulnerable.
Testing webpagetest.org... vulnerable.
Testing rapidshare.com... vulnerable.
Testing funnie.st... vulnerable.
Testing vipzona.info... vulnerable.
Testing bizrate.com... vulnerable.
Testing creativecommons.org... vulnerable.
Testing izlesene.com... vulnerable.
Testing therichest.com... vulnerable.
Testing dailycaller.com... vulnerable.
Testing newsnow.co.uk... vulnerable.
Testing webutations.org... vulnerable.
Testing srclick.ru... vulnerable.
Testing tokopedia.com... vulnerable.
Testing minus.com... vulnerable.
Testing cyberciti.biz... vulnerable.
Testing tune.pk... vulnerable.
Testing filmaffinity.com... vulnerable.
Testing skrill.com... vulnerable.
Testing paipai.com... vulnerable.
Testing oschina.net... vulnerable.
Testing fitbit.com... vulnerable.
Testing myanimelist.net... vulnerable.
Testing bidorbuy.co.za... vulnerable.
Testing rantsports.com... vulnerable.
Testing wikispaces.com... vulnerable.
Testing worldoftanks.eu... vulnerable.
Testing cdn4711.net... vulnerable.
Testing hotukdeals.com... vulnerable.
Testing zovi.com... vulnerable.
Testing dfiles.ru... vulnerable.
Testing zone-telechargement.com... vulnerable.
Testing drugs.com... vulnerable.
Testing mediatemple.net... vulnerable.
Testing xmarks.com... vulnerable.
Testing rozetka.com.ua... vulnerable.
Testing appannie.com... vulnerable.
Testing thestreet.com... vulnerable.
Testing arvixe.com... vulnerable.
Testing transfermarkt.de... vulnerable.
Testing worldoftanks.com... vulnerable.
Testing affiliatewindow.com... vulnerable.
Testing bigpoint.com... vulnerable.
Testing zdf.de... vulnerable.
Testing profitcentr.com... vulnerable.
Testing mydealz.de... vulnerable.
Testing ssisurveys.com... vulnerable.
Testing toshiba.com... vulnerable.
Testing indowebster.com... vulnerable.
Testing dsdomination.com... vulnerable.
Testing utorrent.com... vulnerable.
Testing nosub.tv... vulnerable.
Testing filelist.ro... vulnerable.
Testing gazzetta.gr... vulnerable.
Testing medium.com... vulnerable.
Testing imperiaonline.org... vulnerable.
Testing vic.gov.au... vulnerable.
Testing creditkarma.com... vulnerable.
Testing online-convert.com... vulnerable.
Testing myegy.to... vulnerable.
Testing searchfunmoods.com... vulnerable.
Testing fark.com... vulnerable.
Testing scamadviser.com... vulnerable.
Testing bizdec.ru... vulnerable.
Testing bannersbroker.com... vulnerable.
Testing joomlart.com... vulnerable.
Testing webinarjam.net... vulnerable.
Testing pornyaz.com... vulnerable.
Testing unetenet.com... vulnerable.
Testing joyreactor.cc... vulnerable.
Testing globallshare.com... vulnerable.
Testing tuniu.com... vulnerable.
Testing csfd.cz... vulnerable.
Testing uservoice.com... vulnerable.
Testing trafficfactory.biz... vulnerable.
Testing barclaycardus.com... vulnerable.
Testing mci.ir... vulnerable.
Testing noulinx.com... vulnerable.
Testing ingbank.pl... vulnerable.
Testing gonzoxxxmovies.com... vulnerable.
Testing cabelas.com... vulnerable.
Testing khamsat.com... vulnerable.
Testing 2gis.ru... vulnerable.
Testing fab.com... vulnerable.
Testing digitalmarketer.com... vulnerable.
Testing billionuploads.com... vulnerable.
Testing efukt.com... vulnerable.
Testing shaparak.ir... vulnerable.
Testing radiojavan.com... vulnerable.
Testing christianpost.com... vulnerable.
Testing pons.com... vulnerable.
Testing ymlp.com... vulnerable.
Testing btcclicks.com... vulnerable.
Testing mythemeshop.com... vulnerable.
Testing seo-fast.ru... vulnerable.
Testing mojo-themes.com... vulnerable.
Testing draugiem.lv... vulnerable.
Testing final.ir... vulnerable.
Testing madmimi.com... vulnerable.
Testing sinaapp.com... vulnerable.
Testing ptcsolution.com... vulnerable.
Testing bytes.com... vulnerable.
Testing attracta.com... vulnerable.
Testing dek-d.com... vulnerable.
Testing dfiles.eu... vulnerable.
Testing graphicstock.com... vulnerable.
Testing europe1.fr... vulnerable.
Testing fineartamerica.com... vulnerable.
Testing text.ru... vulnerable.
Testing dastelefonbuch.de... vulnerable.
Testing enter.ru... vulnerable.
Testing awempire.com... vulnerable.
Testing docnhat.net... vulnerable.
Testing megaindex.ru... vulnerable.
Testing ucla.edu... vulnerable.
Testing wisegeek.com... vulnerable.
Testing flightaware.com... vulnerable.
Testing peerfly.com... vulnerable.
Testing wistia.com... vulnerable.
Testing extremetracking.com... vulnerable.
Testing ghatreh.com... vulnerable.
Testing depositfiles.org... vulnerable.
Testing palcomp3.com... vulnerable.
Testing uiuc.edu... vulnerable.
Testing fancy.com... vulnerable.
Testing tagesanzeiger.ch... vulnerable.
Testing dynadot.com... vulnerable.
Testing soup.io... vulnerable.
Testing ip138.com... vulnerable.
Testing jumia.com.ng... vulnerable.
Testing worthofweb.com... vulnerable.
Testing adage.com... vulnerable.
Testing talktalk.co.uk... vulnerable.
Testing playcast.ru... vulnerable.
Testing congratulations-you-won.com... vulnerable.
Testing ge.tt... vulnerable.
Testing informador.com.mx... vulnerable.
Testing hammihan.com... vulnerable.
Testing onedio.com... vulnerable.
Testing olx.co.th... vulnerable.
Testing gi-backoffice.com... vulnerable.
Testing gorillavid.in... vulnerable.
Testing talkingpointsmemo.com... vulnerable.
Testing 518.com.tw... vulnerable.
Testing fast-torrent.ru... vulnerable.
Testing animoto.com... vulnerable.
Testing webinarjam.com... vulnerable.
Testing arioo.com... vulnerable.
Testing gogoanime.com... vulnerable.
Testing mojomarketplace.com... vulnerable.
Testing nanapi.jp... vulnerable.
Testing bahseazad.ir... vulnerable.
Testing serpbook.com... vulnerable.
Testing libsyn.com... vulnerable.
Testing playxn.com... vulnerable.
Testing classifiedads.com... vulnerable.
Testing myus.com... vulnerable.
Testing q.gs... vulnerable.
Testing lijit.com... vulnerable.
Testing joxi.ru... vulnerable.
Testing vbox7.com... vulnerable.
Testing ocj.com.cn... vulnerable.
Testing giga.de... vulnerable.
Testing tomoson.com... vulnerable.
Testing alkislarlayasiyorum.com... vulnerable.
Testing overclock.net... vulnerable.
Testing domainnamesales.com... vulnerable.
Testing appthemes.com... vulnerable.
Testing katestube.com... vulnerable.
Testing lupoporno.com... vulnerable.
Testing windguru.cz... vulnerable.
Testing designmodo.com... vulnerable.
Testing berlin.de... vulnerable.
Testing lifo.gr... vulnerable.
Testing diepresse.com... vulnerable.
Testing postjoint.com... vulnerable.
Testing bittorrent.com... vulnerable.
Testing worldoftanks.asia... vulnerable.
Testing okitspace.com... vulnerable.
Testing sparkasse.at... vulnerable.
Testing nascar.com... vulnerable.
Testing slate.fr... vulnerable.
Testing njuskalo.hr... vulnerable.
Testing astro.com... vulnerable.
Testing lavozdegalicia.es... vulnerable.
Testing androidpolice.com... vulnerable.
Testing longtailvideo.com... vulnerable.
Testing webbirga.net... vulnerable.
Testing idwebgame.com... vulnerable.
Testing gfan.com... vulnerable.
Testing webempresa.com... vulnerable.
Testing bibsonomy.org... vulnerable.
Testing wenyard.com... vulnerable.
Testing readwrite.com... vulnerable.
Testing vmoptions.com... vulnerable.
Testing wowkeren.com... vulnerable.
Testing ay.gy... vulnerable.
Testing ibtimes.co.in... vulnerable.
Testing ss.lv... vulnerable.
Testing coinmill.com... vulnerable.
Testing memecenter.com... vulnerable.
Testing dhnet.be... vulnerable.
Testing ifttt.com... vulnerable.
Testing songmeanings.com... vulnerable.
Testing kicktipp.de... vulnerable.
Testing graphixshare.com... vulnerable.
Testing jango.com... vulnerable.
Testing zoomit.ir... vulnerable.
Testing userscripts.org... vulnerable.
Testing uyan.cc... vulnerable.
Testing down1oads.com... vulnerable.
Testing full-stream.net... vulnerable.
Testing 1001freefonts.com... vulnerable.
Testing hotnews.ro... vulnerable.
Testing mightydeals.com... vulnerable.
Testing zimbra.free.fr... vulnerable.
Testing apktops.ir... vulnerable.
Testing selfhtml.org... vulnerable.
Testing shopzilla.com... vulnerable.
Testing dha.com.tr... vulnerable.
Testing copy.com... vulnerable.
Testing coderanch.com... vulnerable.
Testing darty.com... vulnerable.
Testing 24tv.ua... vulnerable.
Testing smashwords.com... vulnerable.
Testing castorama.fr... vulnerable.
Testing solidtrustpay.com... vulnerable.
Testing yatedo.com... vulnerable.
Testing neurs.com... vulnerable.
Testing mdir.ir... vulnerable.
Testing thewire.com... vulnerable.
Testing futbol24.com... vulnerable.
Testing keek.com... vulnerable.
Testing elitetorrent.net... vulnerable.
Testing ecosia.org... vulnerable.
Testing j.gs... vulnerable.
Testing jonloomer.com... vulnerable.
Testing deseretnews.com... vulnerable.
Testing spinding.com... vulnerable.
Testing theme123.net... vulnerable.
Testing biography.com... vulnerable.
Testing check24.de... vulnerable.
Testing cplusplus.com... vulnerable.
Testing safecart.com... vulnerable.
Testing healthkart.com... vulnerable.
Testing baskino.com... vulnerable.
Testing cifraclub.com.br... vulnerable.
Testing exactseek.com... vulnerable.
Testing expatriates.com... vulnerable.
Testing saharareporters.com... vulnerable.
Testing feebbo.com... vulnerable.
Testing adshostnet.com... vulnerable.
Testing webartex.ru... vulnerable.
Testing pond5.com... vulnerable.
Testing wpml.org... vulnerable.
Testing dl-protect.com... vulnerable.
Testing seocentro.com... vulnerable.
Testing flexmls.com... vulnerable.
Testing a2hosting.com... vulnerable.
Testing gov.cl... vulnerable.
Testing savenkeep.com... vulnerable.
Testing internetlifestylenetwork.com... vulnerable.
Testing uploadbaz.com... vulnerable.
Testing optimizepress.com... vulnerable.
Testing mttbsystem.com... vulnerable.
Testing pulptastic.com... vulnerable.
Testing theme.co... vulnerable.
Testing swansonvitamins.com... vulnerable.
Testing afterbuy.de... vulnerable.
Testing zorpia.com... vulnerable.
Testing 1c-bitrix.ru... vulnerable.
Testing holidaylettings.co.uk... vulnerable.
Testing premiere.fr... vulnerable.
Testing socialadr.com... vulnerable.
Testing sixrevisions.com... vulnerable.
Testing hypovereinsbank.de... vulnerable.
Testing themefuse.com... vulnerable.
Testing roodo.com... vulnerable.
Testing cbr.ru... vulnerable.
Testing marunadanmalayali.com... vulnerable.
Testing jquery4u.com... vulnerable.
Testing powtoon.com... vulnerable.
Testing ubersuggest.org... vulnerable.
Testing markethealth.com... vulnerable.
Testing freelogoservices.com... vulnerable.
Testing readthedocs.org... vulnerable.
Testing mandrillapp.com... vulnerable.
Testing pixeden.com... vulnerable.
Testing nukistream.com... vulnerable.
Testing tractionize.com... vulnerable.
Testing avito.ma... vulnerable.
Testing 101domain.com... vulnerable.
Testing sinemalar.com... vulnerable.
Testing weathernews.jp... vulnerable.
Testing nasgo.net... vulnerable.
Testing luxup.ru... vulnerable.
Testing wasanga.com... vulnerable.
Testing realself.com... vulnerable.
Testing matadornetwork.com... vulnerable.
Testing ee.co.uk... vulnerable.
Testing lovoo.net... vulnerable.
Testing paperblog.com... vulnerable.
Testing technobuffalo.com... vulnerable.
Testing zoom.com.br... vulnerable.
Testing bimlatino.com... vulnerable.
Testing dramafever.com... vulnerable.
Testing xojane.com... vulnerable.
Testing azhibo.com... vulnerable.
Testing edgecastcdn.net... vulnerable.
Testing duke.edu... vulnerable.
Testing mobilelikez.com... vulnerable.
Testing cooperativa.cl... vulnerable.
Testing asiatech.ir... vulnerable.
Testing phpnuke.org... vulnerable.
Testing avsforum.com... vulnerable.
Testing 99wed.com... vulnerable.
Testing wine-searcher.com... vulnerable.
Testing cyberchimps.com... vulnerable.
Testing umd.edu... vulnerable.
Testing t24.com.tr... vulnerable.
Testing imgsrc.ru... vulnerable.
Testing farnell.com... vulnerable.
Testing phpbb.com... vulnerable.
Testing fermasosedi.ru... vulnerable.
Testing smartinsights.com... vulnerable.
Testing pik.ba... vulnerable.
Testing qq163.com... vulnerable.
Testing pciconcursos.com.br... vulnerable.
Testing hsoub.com... vulnerable.
Testing sixfigurefunnelformula.com... vulnerable.
Testing kingworldnews.com... vulnerable.
Testing heritage.org... vulnerable.
Testing quidco.com... vulnerable.
Testing mediapost.com... vulnerable.
Testing watchcric.com... vulnerable.
Testing vodafone.co.uk... vulnerable.
Testing viki.com... vulnerable.
Testing bplans.com... vulnerable.
Testing all-union.com... vulnerable.
Testing clickprime8.com... vulnerable.
Testing competitor.com... vulnerable.
Testing beliefnet.com... vulnerable.
Testing pingler.com... vulnerable.
Testing worthytoshare.com... vulnerable.
Testing millenium.org... vulnerable.
Testing encuentra24.com... vulnerable.
Testing skimlinks.com... vulnerable.
Testing mubasher.info... vulnerable.
Testing marksdailyapple.com... vulnerable.
Testing buenosaires.gob.ar... vulnerable.
Testing gelbeseiten.de... vulnerable.
Testing lalibre.be... vulnerable.
Testing mobikwik.com... vulnerable.
Testing affilorama.com... vulnerable.
Testing appcelerator.com... vulnerable.
Testing invisionpower.com... vulnerable.
Testing tz4.com... vulnerable.
Testing favstar.fm... vulnerable.
Testing zenhabits.net... vulnerable.
Testing customink.com... vulnerable.
Testing templateism.com... vulnerable.
Testing getsatisfaction.com... vulnerable.
Testing rosnet.ru... vulnerable.
Testing digitalriver.com... vulnerable.
Testing joomlashine.com... vulnerable.
Testing fide.com... vulnerable.
Testing lyricsmode.com... vulnerable.
Testing trovit.it... vulnerable.
Testing socialfabric.us... vulnerable.
Testing rcgroups.com... vulnerable.
Testing directadmin.com... vulnerable.
Testing hrsmart.com... vulnerable.
Testing eprize.com... vulnerable.
Testing qoinpro.com... vulnerable.
Testing path.com... vulnerable.
Testing mobeoffice.com... vulnerable.
Testing taz.de... vulnerable.
Testing authorityroi.com... vulnerable.
Testing jqueryscript.net... vulnerable.
Testing wakeupnow.com... vulnerable.
Testing abakus-internet-marketing.de... vulnerable.
Testing cinepolis.com... vulnerable.
Testing dlisted.com... vulnerable.
Testing joomlaportal.de... vulnerable.
Testing ncsu.edu... vulnerable.
Testing imasters.com.br... vulnerable.
Testing adworkmedia.com... vulnerable.
Testing entropay.com... vulnerable.
Testing unionpaysecure.com... vulnerable.
Testing maxpark.com... vulnerable.
Testing popupads.ir... vulnerable.
Testing getrichradio.com... vulnerable.
Testing proranktracker.com... vulnerable.
Testing androidpit.com... vulnerable.
Testing polki.pl... vulnerable.
Testing ip2location.com... vulnerable.
Testing radiko.jp... vulnerable.
Testing wisegeek.org... vulnerable.
Testing trovit.com... vulnerable.
Testing jobisjob.co.in... vulnerable.
Testing quondos.com... vulnerable.
Testing softportal.com... vulnerable.
Testing nationaljournal.com... vulnerable.
Testing ebesucher.de... vulnerable.
Testing zive.cz... vulnerable.
Testing neurs.net... vulnerable.
Testing telewebion.com... vulnerable.
Testing performancehorizon.com... vulnerable.
Testing springpad.com... vulnerable.
Testing theync.com... vulnerable.
Testing mg.gov.br... vulnerable.
Testing globus-inter.com... vulnerable.
Testing osclass.org... vulnerable.
Testing cpasuperaffiliate.com... vulnerable.
Testing naukrigulf.com... vulnerable.
Testing trovit.com.mx... vulnerable.
Testing eventbrite.co.uk... vulnerable.
Testing paris.fr... vulnerable.
Testing kenrockwell.com... vulnerable.
Testing zagat.com... vulnerable.
Testing 444.hu... vulnerable.
Testing barchart.com... vulnerable.
Testing edlen24.com... vulnerable.
Testing peixeurbano.com.br... vulnerable.
Testing flamingtext.com... vulnerable.
Testing speedyshare.com... vulnerable.
Testing seratnews.ir... vulnerable.
Testing bizpowa.com... vulnerable.
Testing grasscity.com... vulnerable.
Testing downloadab.com... vulnerable.
Testing sportdog.gr... vulnerable.
Testing programmableweb.com... vulnerable.
Testing fontpalace.com... vulnerable.
Testing head-fi.org... vulnerable.
Testing bitterstrawberry.com... vulnerable.
Testing responsinator.com... vulnerable.
Testing cuisineaz.com... vulnerable.
Testing work.ua... vulnerable.
Testing utsandiego.com... vulnerable.
Testing foozine.com... vulnerable.
Testing androidpit.de... vulnerable.
Testing invisionzone.com... vulnerable.
Testing top.de... vulnerable.
Testing rememberthemilk.com... vulnerable.
Testing infogr.am... vulnerable.
Testing blizko.ru... vulnerable.
Testing elle.fr... vulnerable.
Testing aremo.com.br... vulnerable.
Testing static.squarespace.com... vulnerable.
Testing fotki.com... vulnerable.
Testing datropy.com... vulnerable.
Testing adscendmedia.com... vulnerable.
Testing spartoo.com... vulnerable.
Testing wordcounter.net... vulnerable.
Testing example.com... vulnerable.
Testing turkcealtyazi.org... vulnerable.
Testing worthytoshare.net... vulnerable.
Testing ideeli.com... vulnerable.
Testing trthaber.com... vulnerable.
Testing romedic.ro... vulnerable.
Testing vudu.com... vulnerable.
Testing aplus.com... vulnerable.
Testing lavozdelmuro.com... vulnerable.
Testing citruspay.com... vulnerable.
Testing optimizehub.com... vulnerable.
Testing hobo-web.co.uk... vulnerable.
Testing dailybasis.com... vulnerable.
Testing sports.fr... vulnerable.
Testing dressupgamesite.com... vulnerable.
Testing smartbrief.com... vulnerable.
Testing scoopwhoop.com... vulnerable.
Testing dev7studios.com... vulnerable.
Testing longurl.it... vulnerable.
Testing privatbank.ru... vulnerable.
Testing wannonce.com... vulnerable.
Testing topnews.ru... vulnerable.
Testing 55188.com... vulnerable.
Testing cinepolis.com.mx... vulnerable.
Testing gorilla-evolution.com... vulnerable.
Testing keyandway.com... vulnerable.
Testing perfectworld.eu... vulnerable.
Testing shopware.de... vulnerable.
Testing kyivpost.com... vulnerable.
Testing bavotasan.com... vulnerable.
Testing gnetwork.biz... vulnerable.
Testing farsisubtitle.com... vulnerable.
Testing kat.ph... vulnerable.
Testing vocabulary.com... vulnerable.
Testing daveramsey.com... vulnerable.
Testing mumsnet.com... vulnerable.
Testing alfajertv.com... vulnerable.
Testing gordonua.com... vulnerable.
Testing friendorfollow.com... vulnerable.
Testing peeplo.com... vulnerable.
Testing free-ebooks.net... vulnerable.
Testing adslzone.net... vulnerable.
Testing adultbay.org... vulnerable.
Testing softcoin.com... vulnerable.
Testing trovit.es... vulnerable.
Testing evsuite.com... vulnerable.
Testing waseet.net... vulnerable.
Testing sudaneseonline.com... vulnerable.
Testing mobypicture.com... vulnerable.
Testing pinkbike.com... vulnerable.
Testing fizzle.co... vulnerable.
Testing telly.com... vulnerable.
Testing blip.tv... vulnerable.
Testing basketball-reference.com... vulnerable.
Testing resellerratings.com... vulnerable.
Testing quirktools.com... vulnerable.
Testing afrihost.com... vulnerable.
Testing 18qt.com... vulnerable.
Testing winscp.net... vulnerable.
-
Testing google.com... not vulnerable.
Testing facebook.com... not vulnerable.
Testing youtube.com... not vulnerable.
Testing yahoo.com... vulnerable.
Testing baidu.com... no SSL.
Testing wikipedia.org... not vulnerable.
Testing qq.com... no SSL.
Testing twitter.com... not vulnerable.
Testing live.com... no SSL.
Testing linkedin.com... no SSL.
Testing taobao.com... no SSL.
Testing amazon.com... not vulnerable.
Testing google.co.in... not vulnerable.
Testing sina.com.cn... no SSL.
Testing blogspot.com... not vulnerable.
Testing hao123.com... no SSL.
Testing weibo.com... no SSL.
Testing wordpress.com... not vulnerable.
Testing yahoo.co.jp... no SSL.
Testing vk.com... not vulnerable.
Testing yandex.ru... not vulnerable.
Testing ebay.com... no SSL.
Testing bing.com... no SSL.
Testing google.de... not vulnerable.
Testing tmall.com... no SSL.
Testing pinterest.com... not vulnerable.
Testing sohu.com... no SSL.
Testing google.co.uk... not vulnerable.
Testing ask.com... no SSL.
Testing 360.cn... no SSL.
Testing google.fr... not vulnerable.
Testing google.co.jp... not vulnerable.
Testing msn.com... no SSL.
Testing instagram.com... not vulnerable.
Testing tumblr.com... not vulnerable.
Testing 163.com... no SSL.
Testing google.com.br... not vulnerable.
Testing mail.ru... not vulnerable.
Testing microsoft.com... no SSL.
Testing paypal.com... not vulnerable.
Testing soso.com... no SSL.
Testing adcash.com... not vulnerable.
Testing google.ru... not vulnerable.
Testing xvideos.com... no SSL.
Testing google.es... not vulnerable.
Testing google.it... not vulnerable.
Testing imdb.com... no SSL.
Testing apple.com... no SSL.
Testing imgur.com... vulnerable.
Testing cnn.com... no SSL.
Testing neobux.com... not vulnerable.
Testing craigslist.org... not vulnerable.
Testing amazon.co.jp... not vulnerable.
Testing google.com.hk... not vulnerable.
Testing stackoverflow.com... vulnerable.
Testing xhamster.com... not vulnerable.
Testing google.com.mx... not vulnerable.
Testing reddit.com... not vulnerable.
Testing gmw.cn... no SSL.
Testing ifeng.com... no SSL.
Testing vube.com... not vulnerable.
Testing go.com... no SSL.
Testing bbc.co.uk... not vulnerable.
Testing google.ca... not vulnerable.
Testing blogger.com... not vulnerable.
Testing fc2.com... not vulnerable.
Testing xinhuanet.com... no SSL.
Testing aliexpress.com... no SSL.
Testing odnoklassniki.ru... not vulnerable.
Testing alipay.com... no SSL.
Testing akamaihd.net... no SSL.
Testing alibaba.com... no SSL.
Testing googleusercontent.com... no SSL.
Testing wordpress.org... not vulnerable.
Testing godaddy.com... no SSL.
Testing google.com.tr... not vulnerable.
Testing t.co... not vulnerable.
Testing huffingtonpost.com... no SSL.
Testing pornhub.com... not vulnerable.
Testing google.com.au... not vulnerable.
Testing about.com... no SSL.
Testing people.com.cn... no SSL.
Testing amazon.de... not vulnerable.
Testing kickass.to... vulnerable.
Testing youku.com... no SSL.
Testing ebay.de... no SSL.
Testing thepiratebay.se... not vulnerable.
Testing espn.go.com... not vulnerable.
Testing google.pl... not vulnerable.
Testing blogspot.in... not vulnerable.
Testing clkmon.com... not vulnerable.
Testing dailymotion.com... not vulnerable.
Testing flickr.com... vulnerable.
Testing bp.blogspot.com... no SSL.
Testing netflix.com... no SSL.
Testing conduit.com... not vulnerable.
Testing dailymail.co.uk... no SSL.
Testing china.com... no SSL.
Testing adobe.com... not vulnerable.
Testing vimeo.com... no SSL.
Testing xnxx.com... no SSL.
Testing ebay.co.uk... no SSL.
Testing livejasmin.com... no SSL.
Testing rakuten.co.jp... no SSL.
Testing cnet.com... no SSL.
Testing themeforest.net... no SSL.
Testing redtube.com... not vulnerable.
Testing indiatimes.com... no SSL.
Testing uol.com.br... no SSL.
Testing aol.com... no SSL.
Testing m2newmedia.com... not vulnerable.
Testing amazon.co.uk... not vulnerable.
Testing dropbox.com... not vulnerable.
Testing amazonaws.com... no SSL.
Testing google.com.ar... not vulnerable.
Testing google.com.sa... not vulnerable.
Testing booking.com... not vulnerable.
Testing youporn.com... not vulnerable.
Testing slideshare.net... no SSL.
Testing nytimes.com... no SSL.
Testing pixnet.net... no SSL.
Testing secureserver.net... no SSL.
Testing google.com.eg... not vulnerable.
Testing globo.com... no SSL.
Testing buzzfeed.com... no SSL.
Testing weather.com... no SSL.
Testing canadaalltax.com... no SSL.
Testing wikimedia.org... not vulnerable.
Testing bbc.com... not vulnerable.
Testing google.com.tw... not vulnerable.
Testing sogou.com... vulnerable.
Testing yelp.com... not vulnerable.
Testing fiverr.com... not vulnerable.
Testing google.com.pk... not vulnerable.
Testing adf.ly... vulnerable.
Testing flipkart.com... not vulnerable.
Testing google.nl... not vulnerable.
Testing mozilla.org... not vulnerable.
Testing livejournal.com... not vulnerable.
Testing ameblo.jp... no SSL.
Testing hootsuite.com... not vulnerable.
Testing directrev.com... no SSL.
Testing wikia.com... not vulnerable.
Testing blogfa.com... no SSL.
Testing wikihow.com... no SSL.
Testing outbrain.com... vulnerable.
Testing theguardian.com... no SSL.
Testing deviantart.com... not vulnerable.
Testing espncricinfo.com... no SSL.
Testing google.co.th... not vulnerable.
Testing google.co.za... not vulnerable.
Testing etsy.com... not vulnerable.
Testing answers.com... not vulnerable.
Testing foxnews.com... not vulnerable.
Testing stumbleupon.com... not vulnerable.
Testing livedoor.com... no SSL.
Testing w3schools.com... no SSL.
Testing archive.org... vulnerable.
Testing gameforge.com... no SSL.
Testing forbes.com... no SSL.
Testing avg.com... no SSL.
Testing files.wordpress.com... not vulnerable.
Testing google.co.ve... not vulnerable.
Testing torrentz.eu... not vulnerable.
Testing bankofamerica.com... not vulnerable.
Testing soundcloud.com... not vulnerable.
Testing 4shared.com... not vulnerable.
Testing naver.com... no SSL.
Testing badoo.com... not vulnerable.
Testing aweber.com... not vulnerable.
Testing mediafire.com... not vulnerable.
Testing so.com... no SSL.
Testing sourceforge.net... not vulnerable.
Testing salesforce.com... not vulnerable.
Testing addthis.com... vulnerable.
Testing bet365.com... no SSL.
Testing reference.com... no SSL.
Testing spiegel.de... not vulnerable.
Testing chase.com... not vulnerable.
Testing liveinternet.ru... not vulnerable.
Testing blogspot.com.br... not vulnerable.
Testing github.com... not vulnerable.
Testing indeed.com... not vulnerable.
Testing onclickads.net... not vulnerable.
Testing google.gr... not vulnerable.
Testing loading-delivery1.com... no SSL.
Testing statcounter.com... not vulnerable.
Testing skype.com... no SSL.
Testing ask.fm... no SSL.
Testing hostgator.com... not vulnerable.
Testing google.co.id... not vulnerable.
Testing google.com.co... not vulnerable.
Testing shutterstock.com... no SSL.
Testing china.com.cn... no SSL.
Testing stackexchange.com... vulnerable.
Testing google.com.vn... not vulnerable.
Testing mailchimp.com... not vulnerable.
Testing onet.pl... not vulnerable.
Testing quikr.com... not vulnerable.
Testing allegro.pl... no SSL.
Testing popads.net... vulnerable.
Testing google.be... not vulnerable.
Testing zillow.com... not vulnerable.
Testing walmart.com... no SSL.
Testing nicovideo.jp... no SSL.
Testing google.com.ng... not vulnerable.
Testing google.com.ua... not vulnerable.
Testing gamer.com.tw... no SSL.
Testing wsj.com... not vulnerable.
Testing wellsfargo.com... not vulnerable.
Testing wordreference.com... no SSL.
Testing softonic.com... no SSL.
Testing wix.com... no SSL.
Testing tripadvisor.com... not vulnerable.
Testing tube8.com... no SSL.
Testing chinaz.com... no SSL.
Testing bild.de... no SSL.
Testing telegraph.co.uk... not vulnerable.
Testing pandora.com... not vulnerable.
Testing google.se... not vulnerable.
Testing hurriyet.com.tr... no SSL.
Testing google.ro... not vulnerable.
Testing goodgamestudios.com... no SSL.
Testing ettoday.net... not vulnerable.
Testing weebly.com... not vulnerable.
Testing photobucket.com... no SSL.
Testing php.net... vulnerable.
Testing google.dz... not vulnerable.
Testing goo.ne.jp... no SSL.
Testing doublepimp.com... not vulnerable.
Testing 9gag.com... not vulnerable.
Testing rambler.ru... not vulnerable.
Testing reuters.com... not vulnerable.
Testing google.at... not vulnerable.
Testing tianya.cn... no SSL.
Testing zedo.com... not vulnerable.
Testing google.com.ph... not vulnerable.
Testing businessinsider.com... not vulnerable.
Testing avito.ru... vulnerable.
Testing warriorforum.com... no SSL.
Testing taringa.net... not vulnerable.
Testing naver.jp... no SSL.
Testing blogspot.com.es... not vulnerable.
Testing google.com.pe... not vulnerable.
Testing myntra.com... not vulnerable.
Testing ups.com... not vulnerable.
Testing mashable.com... not vulnerable.
Testing media.tumblr.com... not vulnerable.
Testing domaintools.com... not vulnerable.
Testing ku6.com... no SSL.
Testing bleacherreport.com... not vulnerable.
Testing leboncoin.fr... no SSL.
Testing wp.pl... no SSL.
Testing gmx.net... no SSL.
Testing codecanyon.net... no SSL.
Testing coccoc.com... no SSL.
Testing goodreads.com... not vulnerable.
Testing kaskus.co.id... vulnerable.
Testing rt.com... not vulnerable.
Testing twitch.tv... no SSL.
Testing google.ch... not vulnerable.
Testing ikea.com... no SSL.
Testing comcast.net... no SSL.
Testing pconline.com.cn... no SSL.
Testing milliyet.com.tr... no SSL.
Testing google.cl... not vulnerable.
Testing y8.com... no SSL.
Testing moz.com... not vulnerable.
Testing google.pt... not vulnerable.
Testing rediff.com... not vulnerable.
Testing google.com.sg... not vulnerable.
Testing usps.com... no SSL.
Testing snapdeal.com... no SSL.
Testing ndtv.com... no SSL.
Testing dmm.co.jp... no SSL.
Testing amazon.fr... not vulnerable.
Testing ucoz.ru... no SSL.
Testing usatoday.com... no SSL.
Testing douban.com... no SSL.
Testing disqus.com... not vulnerable.
Testing acesse.com... not vulnerable.
Testing youyuan.com... no SSL.
Testing meetup.com... not vulnerable.
Testing samsung.com... no SSL.
Testing v1.cn... no SSL.
Testing 4dsply.com... not vulnerable.
Testing rutracker.org... no SSL.
Testing mercadolivre.com.br... no SSL.
Testing bitly.com... not vulnerable.
Testing google.com.bd... not vulnerable.
Testing 39.net... no SSL.
Testing washingtonpost.com... no SSL.
Testing babylon.com... no SSL.
Testing rbc.ru... no SSL.
Testing constantcontact.com... not vulnerable.
Testing nbcnews.com... not vulnerable.
Testing uploaded.net... not vulnerable.
Testing hulu.com... not vulnerable.
Testing fedex.com... not vulnerable.
Testing mama.cn... no SSL.
Testing thefreecamsecret.com... no SSL.
Testing web.de... vulnerable.
Testing hp.com... not vulnerable.
Testing nih.gov... no SSL.
Testing zol.com.cn... no SSL.
Testing fbcdn.net... not vulnerable.
Testing suning.com... not vulnerable.
Testing google.cz... not vulnerable.
Testing intuit.com... not vulnerable.
Testing ign.com... no SSL.
Testing infusionsoft.com... not vulnerable.
Testing baomihua.com... no SSL.
Testing detik.com... not vulnerable.
Testing time.com... not vulnerable.
Testing clickbank.com... not vulnerable.
Testing goal.com... no SSL.
Testing marca.com... no SSL.
Testing ehow.com... no SSL.
Testing olx.in... no SSL.
Testing scribd.com... not vulnerable.
Testing bluehost.com... not vulnerable.
Testing microsoftonline.com... no SSL.
Testing histats.com... not vulnerable.
Testing yaolan.com... no SSL.
Testing hardsextube.com... not vulnerable.
Testing ebay.in... no SSL.
Testing varzesh3.com... no SSL.
Testing speedtest.net... no SSL.
Testing extratorrent.cc... not vulnerable.
Testing webmd.com... no SSL.
Testing xuite.net... not vulnerable.
Testing chaturbate.com... vulnerable.
Testing github.io... no SSL.
Testing it168.com... no SSL.
Testing iqiyi.com... not vulnerable.
Testing zeobit.com... vulnerable.
Testing mobile01.com... no SSL.
Testing bloomberg.com... not vulnerable.
Testing gsmarena.com... no SSL.
Testing free.fr... not vulnerable.
Testing cj.com... no SSL.
Testing huanqiu.com... no SSL.
Testing xing.com... not vulnerable.
Testing yesky.com... no SSL.
Testing orange.fr... no SSL.
Testing thefreedictionary.com... no SSL.
Testing enet.com.cn... no SSL.
Testing daum.net... no SSL.
Testing libero.it... no SSL.
Testing gateable.com... no SSL.
Testing americanexpress.com... not vulnerable.
Testing kooora.com... no SSL.
Testing force.com... no SSL.
Testing cnzz.com... no SSL.
Testing ixxx.com... not vulnerable.
Testing google.no... not vulnerable.
Testing youjizz.com... no SSL.
Testing zippyshare.com... not vulnerable.