How to find websites without SSL?

shenZi

Regular Member
Joined
Sep 23, 2009
Messages
256
Reaction score
19
Hey guys,
Do you know a tool that shows me websites that don't have SSL? For example if i search for an keyword and the tool scrawls the pages which dont have SSL.

Hope you can help me out,
Shenzi
 
Make a bot which crawl some directories with kkk websites on it.

If https skip
If http save as whatever

Not a big deal for a bot maker.
 
I am not sure if this is what you are looking for:
Code:
keyword -inurl:https://
That will return only non-https web pages on Google.

If you want to copy the URLs, set results per page to 100 and add this to inspector-stylesheet:
Code:
.s {
    display: none;
}
.r a h3{
    display: none !important;
}
That will hide the description and title and will only show the URL.
 
Last edited:
Back
Top