All Projects → krmaxwell → spyonweb

krmaxwell / spyonweb

Licence: Apache-2.0 License
Python wrapper for the Spyonweb API. Not affiliated with SpyOnWeb.com or DevHQ.

Programming Languages

python
139335 projects - #7 most used programming language

Labels

Projects that are alternatives of or similar to spyonweb

Peanuts
Peanuts is a free and open source wifi tracking tool. Based on the SensePosts Snoopy-NG project that is now closed.
Stars: ✭ 34 (+88.89%)
Mutual labels:  maltego
Maltego
Maltego compilation of various assets, local transforms and helpful scripts
Stars: ✭ 80 (+344.44%)
Mutual labels:  maltego
Argos
This script will automatically set up an OSINT workstation starting from a Ubuntu OS.
Stars: ✭ 73 (+305.56%)
Mutual labels:  maltego
Maltego-haveibeenpwned
Maltego integration of https://haveibeenpwned.com
Stars: ✭ 55 (+205.56%)
Mutual labels:  maltego
Web-Penetration-Testing-with-Kali-Linux-Third-Edition
Web Penetration Testing with Kali Linux - Third Edition, published by Packt
Stars: ✭ 20 (+11.11%)
Mutual labels:  maltego
Amass
In-depth Attack Surface Mapping and Asset Discovery
Stars: ✭ 1,693 (+9305.56%)
Mutual labels:  maltego
Amass
In-depth Attack Surface Mapping and Asset Discovery
Stars: ✭ 6,284 (+34811.11%)
Mutual labels:  maltego
censys-maltego
Censys Maltego transforms! Take advantage of Censys transforms for Maltego to back your investigations with the most trusted Internet data available.
Stars: ✭ 25 (+38.89%)
Mutual labels:  maltego

spyonweb

A Python library for the Spyonweb API. Documentation for the RESTful API is available at https://api.spyonweb.com/v1/docs. NB: This Python library is not affiliated with Spyonweb.com. Be sure to review their Terms of Service.

Available methods

  • summary: The Request Summary API allows you to input a domain name and get the number of domains with the same Google Adsense, Google Analytics identifiers, IP Address, and Nameserver.
  • domain: The Domain API allows you to input a domain and get a list of domains that share the same identifiers (Google Adsense, Google Analytics, IP Address, Nameserver).
  • adsense: The Google Adsense API allows you to input a Google adsense identifier and get a list of domains that share the same identifier.
  • analytics: The Google Analytics API allows you to input a Google Analytics identifier and get a list of domains that share the same identifier.
  • ipaddress: The IP Address API allows you to input an IP address and get a list of domains hosted on this IP address.
  • dns_domain: The Domains on Nameserver API allows you to input a nameserver and get a list of domains handled by this nameserver.
  • dns_ip: The Nameservers on IP Address API allows you to input an IP address and get a list of nameservers using this IP address.

Usage

import spyonweb


s = spyonweb.spyonweb(token=MY_TOKEN)
test_domain = "fullmooncalendar.net"

s.summary(test_domain)

returns

{
    "status": "found",
    "result": {
        "summary": {
            "fullmooncalendar.net": {
                "items": {
                    "adsense": {
                        // Format: "adsense_code": number_of_domains
                        "pub-5953444431482912": 10,
                        "pub-8423794689684356": 36
                    },
                    "analytics": {
                        // Format: "analytics_code": number_of_domains
                        "UA-15207196": 31,
                        "UA-34505845": 9
                    },
                    "dns_servers": {
                        // Format: "nameserver": number_of_domains
                        "erdomain.earth.orderbox-dns.com": 470,
                        "erdomain.mars.orderbox-dns.com": 470,
                        "erdomain.mercury.orderbox-dns.com": 469,
                        "erdomain.venus.orderbox-dns.com": 469
                    },
                    "ip": {
                        // Format: "ip_address": number_of_domains
                        "209.40.194.244": 9
                    }
                }
            }
        }
    }
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].