Last active
October 20, 2020 11:17
-
-
Save sn4k3-meyer/57b3652b551590b346a548772686d18f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
#coding: utf-8 | |
from spyse import spyse | |
import json | |
from pprint import pprint | |
#gere sua api-key em https://spyse.com/ | |
API_KEY = '' | |
s = spyse(API_KEY) | |
url = input("[+]Url: ") | |
subdomainsFind = [] | |
subdomains = s.subdomains_aggregate(url, param="domain",page=2) | |
certificate = s.ip_port_lookup(url) | |
subdomainsFind.append(subdomains) | |
pprint(subdomainsFind) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment