Skip to main content

Async dnsbl lists checker based on asyncio/aiodns.

Project description

Async dnsbl lists checker based on asyncio/aiodns. Checks if ip is listed in anti-spam dns blacklists. Multiple dns blacklists supported. Use aiodns for async dns requests. Usually ip check run for 60+ lists takes less than one second.

Installation

pip intall pydnsbl

Usage

>>> from pydnsbl import DNSBLChecker
>>> checker = DNSBLChecker()
>>> result = checker.check_ip('8.8.8.8')
>>> result
<DNSBLResult: 8.8.8.8  (0/62)> # google is clean
>>> result = checker.check_ip('68.128.212.240')
>>> result
<DNSBLResult: 68.128.212.240 [BLACKLISTED] (12/62)>  # this is just for example
>>> result.blacklisted
True
# detected_by dnsbl providers and their category tag for this ip
>>> result.detected_by
{'web.dnsbl.sorbs.net': ['unknown'], ...
'zen.spamhaus.org': ['spam', 'exploits']}

Extending/overriding providers

Basic

>>> from pydnsbl import DNSBLChecker
>>> providers = BASE_PROVIDERS + ['yourprovider1.com', ...]
>>> checker = DNSBLChecker(providers=providers)
# in providers parameter you can pass providers dnsbl host or Provider class object (see Advanced topic below)

Advanced

Take a look into providers.py file. Use Provider class to create your custom providers. Override process_response method of Provider class to map providers response codes (127.0.0.x) to DNSBLChecker categories.

Contact

Feel free to contact me: ippolitov87 at gmail.com

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pydnsbl-0.5.4.tar.gz (4.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pydnsbl-0.5.4-py3-none-any.whl (7.3 kB view details)

Uploaded Python 3

File details

Details for the file pydnsbl-0.5.4.tar.gz.

File metadata

  • Download URL: pydnsbl-0.5.4.tar.gz
  • Upload date:
  • Size: 4.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pydnsbl-0.5.4.tar.gz
Algorithm Hash digest
SHA256 11ef2a17a549f359b67c879ee7d8195a4bad241fb3a895ab4ecd0fc41e310e17
MD5 03722be757ee044da3d7ebfbbe66838a
BLAKE2b-256 1ecec0ce30e03d205276d1864d004414e0e570d26e928775479d23046dfb9702

See more details on using hashes here.

File details

Details for the file pydnsbl-0.5.4-py3-none-any.whl.

File metadata

File hashes

Hashes for pydnsbl-0.5.4-py3-none-any.whl
Algorithm Hash digest
SHA256 b9937e531849a62cc230df68a6b1eda69110f52324388073ae7bfceee37c93e4
MD5 962698aaef67e7fe1aef8ba7682ccf4d
BLAKE2b-256 0fbf112cc1b289773b25dc6de57e5cb2d9140c64af102bdfeba4efdcaff04d78

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page