abusix / querycontacts

Query network abuse contacts for a given ip address on abuse-contacts.abusix.zone

Home Page:https://www.abusix.com/contactdb

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status PyPi Version PyPi License PyPi Versions PyPi Wheel

querycontacts - Query Abuse Contacts

Installation

pip install querycontacts

Starting with version 2.0.0 support for python 2.7 is dropped. This is related to dnspython 2.0.0 also dropping support.

Command line usage

usage: querycontacts [-h] [--provider PROVIDER] [--version] ip

QueryContact - Find the Abuse contact for a IP address

positional arguments:
ip                   query network abuse contacts for a given ip address

optional arguments:
-h, --help           show this help message and exit
--provider PROVIDER  change standard network abuse contacts provider.
                    Defaults to abuse-contacts.abusix.zone
--version            show program's version number and exit

Examples

Show version:

$ querycontacts --version
querycontacts 2.0.0

Show abuse contact for your IP:

$ IP=$(curl ipecho.net/plain)
$ querycontacts $IP
abuse@yourisp.example.com

Test response for localhost:

$ querycontacts 127.0.0.1
Abusix ContactDB Test point

Library usage

>>> from querycontacts import ContactFinder
>>> qf = ContactFinder()
>>> qf.find('127.0.0.2')
['root@localhost', 'abuse@localhost']

>>> qf.find('::ffff:7f00:2')
['root@localhost']

About

Query network abuse contacts for a given ip address on abuse-contacts.abusix.zone

https://www.abusix.com/contactdb

License:GNU General Public License v3.0


Languages

Language:Python 98.5%Language:Shell 1.5%