Query network abuse contacts on the command-line for a given ip address on abuse-contacts.abusix.org
Project description
querycontacts - Query Abuse Contacts
ahocorapy is a pure python implementation of the Aho-Corasick Algorithm. Given a list of keywords one can check if at least one of the keywords exist in a given text in linear time.
Installation
pip install querycontacts
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.org --version show program's version number and exit
Examples
Show version:
$ querycontacts --version querycontacts 1.0.0
Show abuse contact for your IP:
$ IP=$(curl ipecho.net/plain) $ querycontacts $IP abuse@yourisp.example.com
Error when no abuse contact was found:
$ querycontacts 127.0.0.1 querycontacts: error: no contacts for 127.0.0.1
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']
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
querycontacts-1.0.1.tar.gz
(16.0 kB
view details)
Built Distribution
File details
Details for the file querycontacts-1.0.1.tar.gz
.
File metadata
- Download URL: querycontacts-1.0.1.tar.gz
- Upload date:
- Size: 16.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
b6be4740b4180fba733dc67bad430ec1413be6148461f4eab5aa6c2362dec552
|
|
MD5 |
b5e95894223a790ae83e63a94c5a8541
|
|
BLAKE2b-256 |
b7bf195fe69869b02a83bbd71a7d886b27305ee374c56dac9004617d64175653
|
File details
Details for the file querycontacts-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: querycontacts-1.0.1-py3-none-any.whl
- Upload date:
- Size: 5.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
5fc33df2a358a1c9b46bafc5d77448314c37565a434014e41ea5085041bfe6c0
|
|
MD5 |
87950e5f90481ac7d42e377886dc0e7e
|
|
BLAKE2b-256 |
e46e098b12e3e345446a356458d1c62dede3f3229758d55e683d032157c17656
|