aboul3la / Sublist3r

Fast subdomains enumeration tool for penetration testers
GNU General Public License v2.0
9.48k stars 2.07k forks source link

exception handled for ssl verification error #316

Closed amustaque97 closed 2 years ago

amustaque97 commented 3 years ago

While investigating issue #312. It was throwing an ugly exception which can be avoided by just taking care of default values.... Now it is not showing exceptions on the screen.

Here is the screenshot after code changes. Screenshot from 2021-05-12 06-33-44

To fix SSL verification issue, we need to pass verify=False as an argument in the get request of NetcraftEnum engine. If we hard code value of verify it will be same for all the domains. If we want it to be optional then we need to take it's value as an input and will need to update all the engines. But it will be insecure and will be prone to MITM.

What do you guys think please let me know! Thank you