Skip to content

Instantly share code, notes, and snippets.

@sn4k3-meyer
Last active October 20, 2020 11:17
Show Gist options
  • Save sn4k3-meyer/57b3652b551590b346a548772686d18f to your computer and use it in GitHub Desktop.
Save sn4k3-meyer/57b3652b551590b346a548772686d18f to your computer and use it in GitHub Desktop.
#!/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