Skip to content
This repository
branch: master
file 1065 lines (1058 sloc) 38.046 kb
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064
Disclaimer: This scan was performed around April 8, 12: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 redtube.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 avito.ru... vulnerable.
Testing kaskus.co.id... vulnerable.
Testing web.de... vulnerable.
Testing suning.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 slate.com... vulnerable.
Testing scoop.it... vulnerable.
Testing hidemyass.com... vulnerable.
Testing 123rf.com... vulnerable.
Testing m-w.com... vulnerable.
Testing dreamstime.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 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 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... not vulnerable.
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... 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... not vulnerable.
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... no SSL.
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... not 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... 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... not vulnerable.
Testing github.io... no SSL.
Testing it168.com... no SSL.
Testing iqiyi.com... no SSL.
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.
Testing hudong.com... no SSL.
Testing hdfcbank.com... no SSL.
Testing beeg.com... vulnerable.
Testing motherless.com... not vulnerable.
Testing tinyurl.com... not vulnerable.
Testing zendesk.com... not vulnerable.
Testing amazon.cn... not vulnerable.
Testing google.co.kr... not vulnerable.
Testing cloudfront.net... no SSL.
Testing wideinfo.org... not vulnerable.
Testing kakaku.com... no SSL.
Testing google.co.hu... not vulnerable.
Testing abcnews.go.com... not vulnerable.
Testing xcar.com.cn... no SSL.
Testing eazel.com... no SSL.
Testing google.ie... not vulnerable.
Testing icicibank.com... no SSL.
Testing amazon.in... not vulnerable.
Testing cbssports.com... no SSL.
Testing repubblica.it... no SSL.
Testing ameba.jp... not vulnerable.
Testing nba.com... not vulnerable.
Testing elpais.com... no SSL.
Testing google.ae... not vulnerable.
Testing battle.net... not vulnerable.
Testing google.cn... no SSL.
Testing yandex.ua... not vulnerable.
Testing tmz.com... not vulnerable.
Testing lifehacker.com... not vulnerable.
Testing bestbuy.com... not vulnerable.
Testing pof.com... not vulnerable.
Testing getresponse.com... not vulnerable.
Testing sharelive.net... not vulnerable.
Testing jabong.com... not vulnerable.
Testing bitauto.com... no SSL.
Testing mysearchdial.com... not vulnerable.
Testing goo.gl... not vulnerable.
Testing feedly.com... not vulnerable.
Testing lenta.ru... no SSL.
Testing ad6media.fr... not vulnerable.
Testing techcrunch.com... not vulnerable.
Testing groupon.com... not vulnerable.
Testing target.com... no SSL.
Testing lemonde.fr... not vulnerable.
Testing in.com... no SSL.
Testing pchome.net... no SSL.
Testing google.az... not vulnerable.
Testing dell.com... no SSL.
Testing w3.org... no SSL.
Testing nydailynews.com... no SSL.
Testing mgid.com... not vulnerable.
Testing udn.com... no SSL.
Testing upworthy.com... not vulnerable.
Testing intoday.in... no SSL.
Testing seznam.cz... vulnerable.
Testing xe.com... not vulnerable.
Testing ebay.com.au... no SSL.
Testing list-manage.com... not vulnerable.
Testing ci123.com... no SSL.
Testing okcupid.com... vulnerable.
Testing t-online.de... no SSL.
Testing drudgereport.com... no SSL.
Testing odesk.com... not vulnerable.
Testing irctc.co.in... no SSL.
Testing engadget.com... no SSL.
Testing accuweather.com... no SSL.
Testing gizmodo.com... not vulnerable.
Testing aili.com... no SSL.
Testing 0427d7.se... no SSL.
Testing elmundo.es... no SSL.
Testing snapdo.com... no SSL.
Testing google.dk... not vulnerable.
Testing ebay.it... no SSL.
Testing youdao.com... not vulnerable.
Testing tagged.com... no SSL.
Testing probux.com... not vulnerable.
Testing lefigaro.fr... not vulnerable.
Testing latimes.com... no SSL.
Testing retailmenot.com... no SSL.
Testing surveymonkey.com... not vulnerable.
Testing uimserv.net... no SSL.
Testing issuu.com... not vulnerable.
Testing blackhatworld.com... no SSL.
Testing istockphoto.com... not vulnerable.
Testing livescore.com... no SSL.
Testing justdial.com... no SSL.
Testing doubleclick.com... not vulnerable.
Testing google.co.il... not vulnerable.
Testing plugrush.com... not vulnerable.
Testing jrj.com.cn... no SSL.
Testing b5m.com... no SSL.
Testing searchfun.in... no SSL.
Testing capitalone.com... not vulnerable.
Testing subscene.com... no SSL.
Testing google.fi... not vulnerable.
Testing pch.com... vulnerable.
Testing delta-search.com... no SSL.
Testing caijing.com.cn... no SSL.
Testing elance.com... not vulnerable.
Testing joomla.org... no SSL.
Testing freelancer.com... not vulnerable.
Testing quora.com... not vulnerable.
Testing att.com... not vulnerable.
Testing abril.com.br... no SSL.
Testing trovigo.com... no SSL.
Testing trulia.com... no SSL.
Testing naukri.com... not vulnerable.
Testing gazeta.pl... no SSL.
Testing ck101.com... no SSL.
Testing blogspot.de... not vulnerable.
Testing kwejk.pl... not vulnerable.
Testing 4399.com... no SSL.
Testing teebik.com... not vulnerable.
Testing sahibinden.com... no SSL.
Testing xywy.com... no SSL.
Testing digg.com... not vulnerable.
Testing cntv.cn... no SSL.
Testing mywebsearch.com... no SSL.
Testing homedepot.com... no SSL.
Testing 2345.com... no SSL.
Testing siteadvisor.com... not vulnerable.
Testing zing.vn... not vulnerable.
Testing ero-advertising.com... no SSL.
Testing informer.com... not vulnerable.
Testing onlinesbi.com... no SSL.
Testing lenovo.com... not vulnerable.
Testing eyny.com... no SSL.
Testing mysearchresults.com... no SSL.
Testing bestusefuldownloads.com... no SSL.
Testing clixsense.com... not vulnerable.
Testing youm7.com... not vulnerable.
Testing jimdo.com... no SSL.
Testing semrush.com... not vulnerable.
Testing likes.com... not vulnerable.
Testing wired.com... not vulnerable.
Testing rapidgator.net... not vulnerable.
Testing cpmterra.com... no SSL.
Testing lady8844.com... no SSL.
Testing webmoney.ru... no SSL.
Testing oracle.com... not vulnerable.
Testing mercadolibre.com.ar... no SSL.
Testing mlb.com... no SSL.
Testing google.com.my... not vulnerable.
Testing fotolia.com... not vulnerable.
Testing adnxs.com... no SSL.
Testing empowernetwork.com... not vulnerable.
Testing amazon.it... not vulnerable.
Testing timeanddate.com... no SSL.
Testing gome.com.cn... not vulnerable.
Testing foursquare.com... not vulnerable.
Testing habrahabr.ru... no SSL.
Testing telexfree.com... not vulnerable.
Testing newegg.com... no SSL.
Testing shareasale.com... no SSL.
Testing xda-developers.com... vulnerable.
Testing expedia.com... no SSL.
Testing ig.com.br... no SSL.
Testing theblaze.com... no SSL.
Testing 2ch.net... no SSL.
Testing irs.gov... no SSL.
Testing commentcamarche.net... no SSL.
Testing doorblog.jp... no SSL.
Testing exoclick.com... no SSL.
Testing java.com... not vulnerable.
Testing ce.cn... no SSL.
Testing sberbank.ru... no SSL.
Testing typepad.com... not vulnerable.
Testing taleo.net... not vulnerable.
Testing corriere.it... no SSL.
Testing ning.com... not vulnerable.
Testing twimg.com... no SSL.
Testing match.com... no SSL.
Testing haber7.com... no SSL.
Testing steampowered.com... not vulnerable.
Testing google.sk... not vulnerable.
Testing pcgames.com.cn... no SSL.
Testing twoo.com... no SSL.
Testing who.is... not vulnerable.
Testing awesomehp.com... no SSL.
Testing iminent.com... no SSL.
Testing backpage.com... no SSL.
Testing gutefrage.net... not vulnerable.
Testing vnexpress.net... no SSL.
Testing chip.de... no SSL.
Testing systweak.com... no SSL.
Testing rednet.cn... no SSL.
Testing kinopoisk.ru... not vulnerable.
Testing opensiteexplorer.org... no SSL.
Testing xgo.com.cn... no SSL.
Testing gc.ca... no SSL.
Testing ria.ru... no SSL.
Testing swagbucks.com... no SSL.
Testing citibank.com... no SSL.
Testing examiner.com... not vulnerable.
Testing hypergames.net... no SSL.
Testing ya.ru... no SSL.
Testing adultfriendfinder.com... no SSL.
Testing life.com.tw... not vulnerable.
Testing houzz.com... not vulnerable.
Testing etao.com... no SSL.
Testing chexun.com... no SSL.
Testing flipora.com... no SSL.
Testing marketwatch.com... no SSL.
Testing shaadi.com... not vulnerable.
Testing mihanblog.com... no SSL.
Testing blogspot.ru... not vulnerable.
Testing myfreecams.com... no SSL.
Testing bodybuilding.com... not vulnerable.
Testing 58.com... no SSL.
Testing leadpages.net... not vulnerable.
Testing taboola.com... not vulnerable.
Testing evernote.com... not vulnerable.
Testing hubspot.com... no SSL.
Testing verizonwireless.com... no SSL.
Testing kijiji.ca... no SSL.
Testing urbandictionary.com... no SSL.
Testing hatena.ne.jp... not vulnerable.
Testing eonline.com... no SSL.
Testing facenama.com... no SSL.
Testing terra.com.br... not vulnerable.
Testing ca.gov... no SSL.
Testing independent.co.uk... no SSL.
Testing altervista.org... no SSL.
Testing mirror.co.uk... no SSL.
Testing seesaa.net... not vulnerable.
Testing pcbaby.com.cn... no SSL.
Testing mobile.de... no SSL.
Testing steamcommunity.com... vulnerable.
Testing slate.com... vulnerable.
Testing tickld.com... not vulnerable.
Testing soku.com... no SSL.
Testing webs.com... no SSL.
Testing focus.de... not vulnerable.
Testing oneindia.in... no SSL.
Testing tukif.com... no SSL.
Testing babytree.com... no SSL.
Testing firedrive.com... not vulnerable.
Testing clicksvenue.com... no SSL.
Testing drtuber.com... no SSL.
Testing pixiv.net... not vulnerable.
Testing ebay.fr... no SSL.
Testing qtrax.com... no SSL.
Testing cbslocal.com... not vulnerable.
Testing yellowpages.com... not vulnerable.
Testing scoop.it... vulnerable.
Testing asos.com... no SSL.
Testing watchseries.lt... no SSL.
Testing free-tv-video-online.me... not vulnerable.
Testing mynet.com... no SSL.
Testing hotels.com... no SSL.
Testing movie4k.to... no SSL.
Testing bloglovin.com... not vulnerable.
Testing news.com.au... not vulnerable.
Testing hidemyass.com... vulnerable.
Testing hubpages.com... not vulnerable.
Testing mercadolibre.com.mx... no SSL.
Testing azlyrics.com... no SSL.
Testing viralnova.com... no SSL.
Testing kompas.com... no SSL.
Testing tabelog.com... no SSL.
Testing sakura.ne.jp... no SSL.
Testing blogspot.jp... not vulnerable.
Testing yoka.com... no SSL.
Testing yac.mx... no SSL.
Testing 123rf.com... vulnerable.
Testing rottentomatoes.com... not vulnerable.
Testing amazon.es... not vulnerable.
Testing citrixonline.com... no SSL.
Testing chinabyte.com... no SSL.
Testing linkbucks.com... no SSL.
Testing m-w.com... vulnerable.
Testing agoda.com... not vulnerable.
Testing npr.org... not vulnerable.
Testing wiktionary.org... not vulnerable.
Testing ashleyrnadison.com... no SSL.
Testing gawker.com... not vulnerable.
Testing priceline.com... not vulnerable.
Testing slickdeals.net... not vulnerable.
Testing vk.me... not vulnerable.
Testing templatemonster.com... not vulnerable.
Testing dreamstime.com... vulnerable.
Testing europa.eu... not vulnerable.
Testing r10.net... not vulnerable.
Testing realtor.com... no SSL.
Testing mega.co.nz... not vulnerable.
Testing gotomeeting.com... no SSL.
Testing addmefast.com... no SSL.
Testing tokobagus.com... no SSL.
Testing majesticseo.com... not vulnerable.
Testing kayak.com... no SSL.
Testing ouedkniss.com... not vulnerable.
Testing adscale.de... no SSL.
Testing optmd.com... no SSL.
Testing viadeo.com... not vulnerable.
Testing coupons.com... no SSL.
Testing amung.us... vulnerable.
Testing smh.com.au... no SSL.
Testing cbsnews.com... no SSL.
Testing google.com.kw... not vulnerable.
Testing linksynergy.com... no SSL.
Testing wow.com... no SSL.
Testing cnbc.com... not vulnerable.
Testing google.kz... not vulnerable.
Testing duckduckgo.com... vulnerable.
Testing eastday.com... no SSL.
Testing moneycontrol.com... no SSL.
Testing blogspot.com.tr... not vulnerable.
Testing macys.com... not vulnerable.
Testing privatehomeclips.com... not vulnerable.
Testing youth.cn... no SSL.
Testing website-unavailable.com... no SSL.
Testing leo.org... vulnerable.
Testing outlook.com... no SSL.
Testing tudou.com... no SSL.
Testing dict.cc... not vulnerable.
Testing prntscr.com... not vulnerable.
Testing howstuffworks.com... no SSL.
Testing all-free-download.com... no SSL.
Testing espnfc.com... no SSL.
Testing nordstrom.com... no SSL.
Testing filehippo.com... no SSL.
Testing liveleak.com... no SSL.
Testing yandex.com.tr... not vulnerable.
Testing allrecipes.com... no SSL.
Testing glassdoor.com... not vulnerable.
Testing prestashop.com... not vulnerable.
Testing sex.com... no SSL.
Testing monster.com... no SSL.
Testing tomshardware.com... no SSL.
Testing bongacams.com... no SSL.
Testing jqw.com... no SSL.
Testing mp3skull.com... no SSL.
Testing eventbrite.com... vulnerable.
Testing squarespace.com... not vulnerable.
Testing ancestry.com... no SSL.
Testing mpnrs.com... not vulnerable.
Testing bhaskar.com... not vulnerable.
Testing lequipe.fr... no SSL.
Testing traidnt.net... not vulnerable.
Testing people.com... no SSL.
Testing hupu.com... no SSL.
Testing aparat.com... no SSL.
Testing over-blog.com... no SSL.
Testing chinatimes.com... no SSL.
Testing wetransfer.com... vulnerable.
Testing tradedoubler.com... no SSL.
Testing google.lk... not vulnerable.
Testing southwest.com... not vulnerable.
Testing persianblog.ir... no SSL.
Testing ehowenespanol.com... not vulnerable.
Testing custhelp.com... not vulnerable.
Testing clarin.com... not vulnerable.
Testing renren.com... no SSL.
Testing overstock.com... no SSL.
Testing lanacion.com.ar... no SSL.
Testing sh.st... vulnerable.
Testing stockstar.com... no SSL.
Testing narod.ru... no SSL.
Testing google.bg... not vulnerable.
Testing shopclues.com... not vulnerable.
Testing softpedia.com... no SSL.
Testing porn.com... no SSL.
Testing sfgate.com... not vulnerable.
Testing shopify.com... not vulnerable.
Testing turbobit.net... not vulnerable.
Testing vice.com... not vulnerable.
Testing 24h.com.vn... no SSL.
Testing virgilio.it... no SSL.
Testing cracked.com... not vulnerable.
Testing searchengines.ru... not vulnerable.
Testing linternaute.com... no SSL.
Testing nuvid.com... no SSL.
Testing gamefaqs.com... no SSL.
Testing hespress.com... not vulnerable.
Testing pcmag.com... no SSL.
Testing google.co.nz... not vulnerable.
Testing internethaber.com... no SSL.
Testing as.com... no SSL.
Testing jquery.com... not vulnerable.
Testing zanox.com... not vulnerable.
Testing delta-homes.com... no SSL.
Testing imageshack.us... not vulnerable.
Testing payoneer.com... not vulnerable.
Testing entrepreneur.com... vulnerable.
Testing appledaily.com.tw... no SSL.
Testing behance.net... no SSL.
Testing bestblackhatforum.com... no SSL.
Testing nownews.com... no SSL.
Testing youtube-mp3.org... no SSL.
Testing wunderground.com... no SSL.
Testing zoho.com... vulnerable.
Testing reverso.net... no SSL.
Testing autohome.com.cn... no SSL.
Testing nifty.com... not vulnerable.
Testing foxsports.com... no SSL.
Testing vesti.ru... no SSL.
Testing alarabiya.net... no SSL.
Testing sapo.pt... not vulnerable.
Testing haberturk.com... no SSL.
Testing blogspot.com.ar... not vulnerable.
Testing digikala.com... no SSL.
Testing farsnews.com... no SSL.
Testing csdn.net... not vulnerable.
Testing indianrail.gov.in... no SSL.
Testing bhphotovideo.com... not vulnerable.
Testing jvzoo.com... not vulnerable.
Testing interia.pl... not vulnerable.
Testing echo.msk.ru... no SSL.
Testing allocine.fr... no SSL.
Testing yts.re... vulnerable.
Testing ensonhaber.com... not vulnerable.
Testing chron.com... not vulnerable.
Testing haberler.com... no SSL.
Testing airtel.in... no SSL.
Testing immobilienscout24.de... no SSL.
Testing gazeta.ru... no SSL.
Testing mackolik.com... no SSL.
Testing 17ok.com... no SSL.
Testing google.com.ec... not vulnerable.
Testing qvo6.com... no SSL.
Testing media-fire.org... not vulnerable.
Testing idnes.cz... no SSL.
Testing jd.com... no SSL.
Testing usmagazine.com... vulnerable.
Testing pravda.com.ua... no SSL.
Testing worldstarhiphop.com... no SSL.
Testing sape.ru... not vulnerable.
Testing india.com... no SSL.
Testing zappos.com... no SSL.
Testing lowes.com... not vulnerable.
Testing babycenter.com... no SSL.
Testing avast.com... not vulnerable.
Testing nouvelobs.com... not vulnerable.
Testing 9gag.tv... no SSL.
Testing amazon.ca... not vulnerable.
Testing pixlr.com... not vulnerable.
Testing rightmove.co.uk... not vulnerable.
Testing biblegateway.com... not vulnerable.
Testing hstpnetwork.com... no SSL.
Testing sears.com... not vulnerable.
Testing cy-pr.com... no SSL.
Testing nfl.com... not vulnerable.
Testing klikbca.com... no SSL.
Testing ibm.com... no SSL.
Testing yandex.kz... not vulnerable.
Testing jobrapido.com... no SSL.
Testing gamespot.com... not vulnerable.
Testing searchengineland.com... not vulnerable.
Testing nokia.com... no SSL.
Testing spankwire.com... no SSL.
Testing fatakat.com... no SSL.
Testing mapquest.com... no SSL.
Testing sexlog.com... not vulnerable.
Testing nhl.com... no SSL.
Testing basecamp.com... not vulnerable.
Testing tabnak.ir... no SSL.
Testing gismeteo.ru... no SSL.
Testing gap.com... no SSL.
Testing youboy.com... no SSL.
Testing 6.cn... no SSL.
Testing jeuxvideo.com... not vulnerable.
Testing fishcod.com... no SSL.
Testing nypost.com... not vulnerable.
Testing heise.de... not vulnerable.
Testing magentocommerce.com... not vulnerable.
Testing letitbit.net... not vulnerable.
Testing hongkiat.com... no SSL.
Testing leagueoflegends.com... not vulnerable.
Testing dmm.com... no SSL.
Testing nikkei.com... no SSL.
Testing ted.com... not vulnerable.
Testing sozcu.com.tr... no SSL.
Testing ahrefs.com... not vulnerable.
Testing welt.de... no SSL.
Testing tablica.pl... not vulnerable.
Testing infobae.com... no SSL.
Testing milanuncios.com... no SSL.
Testing sulekha.com... no SSL.
Testing fhserve.com... not vulnerable.
Testing google.com.do... not vulnerable.
Testing wmmail.ru... not vulnerable.
Testing cam4.com... no SSL.
Testing novinky.cz... no SSL.
Testing screencast.com... no SSL.
Testing thehindu.com... no SSL.
Testing instructables.com... not vulnerable.
Testing gulfup.com... no SSL.
Testing deezer.com... not vulnerable.
Testing aizhan.com... no SSL.
Testing zimbio.com... no SSL.
Testing fool.com... vulnerable.
Testing mercadolibre.com.ve... no SSL.
Testing digitalpoint.com... vulnerable.
Testing gtmetrix.com... not vulnerable.
Testing webhostingtalk.com... not vulnerable.
Testing ccb.com... no SSL.
Testing bankmellat.ir... no SSL.
Testing google.com.ly... not vulnerable.
Testing ovh.net... no SSL.
Testing streamcloud.eu... no SSL.
Testing box.com... not vulnerable.
Testing android.com... not vulnerable.
Testing sitepoint.com... not vulnerable.
Testing weheartit.com... not vulnerable.
Testing imagebam.com... no SSL.
Testing p5w.net... no SSL.
Testing nairaland.com... not vulnerable.
Testing hm.com... no SSL.
Testing primewire.ag... no SSL.
Testing japanpost.jp... not vulnerable.
Testing cbc.ca... no SSL.
Testing kickstarter.com... not vulnerable.
Testing qinbei.com... no SSL.
Testing staples.com... no SSL.
Testing sahadan.com... no SSL.
Testing dafont.com... not vulnerable.
Testing whitepages.com... not vulnerable.
Testing popcash.net... not vulnerable.
Testing z5x.net... not vulnerable.
Testing businessweek.com... no SSL.
Testing xunlei.com... no SSL.
Testing subito.it... no SSL.
Testing graphicriver.net... no SSL.
Testing disney.go.com... not vulnerable.
Testing theverge.com... no SSL.
Testing cbs.com... no SSL.
Testing pr-cy.ru... not vulnerable.
Testing mediaset.it... no SSL.
Testing lapatilla.com... not vulnerable.
Testing ustream.tv... not vulnerable.
Testing getbootstrap.com... no SSL.
Testing google.rs... not vulnerable.
Testing picmonkey.com... vulnerable.
Testing dmoz.org... no SSL.
Testing rutor.org... no SSL.
Testing keepvid.com... no SSL.
Testing united.com... not vulnerable.
Testing pingdom.com... not vulnerable.
Testing tutsplus.com... not vulnerable.
Testing sky.com... no SSL.
Testing billdesk.com... not vulnerable.
Testing petflow.com... vulnerable.
Testing grooveshark.com... not vulnerable.
Testing careerbuilder.com... not vulnerable.
Testing squidoo.com... vulnerable.
Testing ticketmaster.com... not vulnerable.
Testing avazutracking.net... vulnerable.
Testing woorank.com... not vulnerable.
Testing nike.com... not vulnerable.
Testing sporx.com... not vulnerable.
Testing makemytrip.com... not vulnerable.
Testing chinanews.com... no SSL.
Testing elegantthemes.com... vulnerable.
Testing change.org... not vulnerable.
Testing biglobe.ne.jp... no SSL.
Testing google.hr... not vulnerable.
Testing indiamart.com... no SSL.
Testing postimg.org... no SSL.
Testing myspace.com... no SSL.
Testing xiaomi.com... not vulnerable.
Testing anyoption.com... no SSL.
Testing mysql.com... not vulnerable.
Testing lockerdome.com... not vulnerable.
Testing foodnetwork.com... no SSL.
Testing dealshark.com... no SSL.
Testing 55bbs.com... no SSL.
Testing forobeta.com... no SSL.
Testing xtube.com... not vulnerable.
Testing gumtree.com... no SSL.
Testing sueddeutsche.de... not vulnerable.
Testing mbc.net... no SSL.
Testing peyvandha.ir... no SSL.
Testing keezmovies.com... no SSL.
Testing zulily.com... not vulnerable.
Testing firstpost.com... no SSL.
Testing aftonbladet.se... not vulnerable.
Testing comcast.com... no SSL.
Testing beytoote.com... no SSL.
Testing woothemes.com... not vulnerable.
Testing seekingalpha.com... not vulnerable.
Testing orf.at... no SSL.
Testing searchenginewatch.com... no SSL.
Testing video-one.com... no SSL.
Testing verizon.com... no SSL.
Testing ezinearticles.com... not vulnerable.
Testing ileehoo.com... no SSL.
Testing pinimg.com... no SSL.
Testing savefrom.net... not vulnerable.
Testing brainyquote.com... no SSL.
Testing 500px.com... vulnerable.
Testing delta.com... not vulnerable.
Testing icloud.com... no SSL.
Testing tribunnews.com... no SSL.
Testing mmbang.com... no SSL.
Testing hindustantimes.com... no SSL.
Testing 6park.com... no SSL.
Testing premierleague.com... no SSL.
Testing spotify.com... not vulnerable.
Testing icicibank.co.in... no SSL.
Testing rakuten.com... no SSL.
Testing tistory.com... not vulnerable.
Testing pantip.com... no SSL.
Testing dantri.com.vn... no SSL.
Testing fidelity.com... not vulnerable.
Testing fastdailyfind.com... no SSL.
Testing pcpop.com... no SSL.
Testing skysports.com... no SSL.
Testing abc.es... no SSL.
Testing kioskea.net... no SSL.
Testing 51fanli.com... no SSL.
Testing manta.com... not vulnerable.
Testing dubizzle.com... no SSL.
Testing almanar.com.lb... no SSL.
Testing stagram.com... not vulnerable.
Testing ovh.com... not vulnerable.
Testing eztv.it... not vulnerable.
Testing cloob.com... no SSL.
Testing eluniversal.com.mx... no SSL.
Testing souq.com... no SSL.
Testing 1und1.de... not vulnerable.
Testing gstatic.com... not vulnerable.
Testing online.sh.cn... no SSL.
Testing forexfactory.com... no SSL.
Testing vcommission.com... no SSL.
Testing ilivid.com... not vulnerable.
Testing 104.com.tw... no SSL.
Testing 56.com... not vulnerable.
Testing sofanti.com... no SSL.
Testing css-tricks.com... not vulnerable.
Testing myfitnesspal.com... not vulnerable.
Testing kohls.com... not vulnerable.
Testing wmtransfer.com... no SSL.
Testing tinypic.com... no SSL.
Testing openadserving.com... not vulnerable.
Testing statigr.am... no SSL.
Testing eastmoney.com... no SSL.
Testing wiocha.pl... not vulnerable.
Testing namecheap.com... not vulnerable.
Testing google.by... not vulnerable.
Testing merdeka.com... no SSL.
Testing linkwithin.com... no SSL.
Testing homeway.com.cn... no SSL.

No SSL: 512
Vulnerable: 48
Not vulnerable: 440
Something went wrong with that request. Please try again.