Metadata-Version: 2.1
Name: ezdnsbl
Version: 0.1.9
Summary: Easy DNSBL querying
Home-page: https://bitbucket.org/c0nch0b4r/ezdnsbl/
Author: c0nch0b4r
Author-email: lp1.on.fire@gmail.com
License: UNKNOWN
Download-URL: https://bitbucket.org/c0nch0b4r/ezdnsbl/get/0.1.9.tar.gz
Project-URL: Source, https://bitbucket.org/c0nch0b4r/ezdnsbl/
Keywords: dnsbl blacklist dns
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet
Classifier: Topic :: Security
Requires-Python: ~=2.7
Description-Content-Type: text/x-rst
Requires-Dist: dnspython

======
README
======

A first stab at writing something that could be construed as a python script. Aims to simplify querying multiple DNSBLs.


-----
Setup
-----

1. Run setup.py
2. Put your Project Honey Pot API token in `provider/httpbl_apikey.py` (use `httpbl_apikey.py.sample`) -OR- remove HTTBL from the ipv4 array in `provider/__init__.py`


-----
Usage
-----

Run the program with an argument of either an IP address, domain name, AS number, or MD5/SHA1 hash. If no argument is given, drop into a python shell with dnsbl_query imported as a library.

Take a look at the source for more info.

NOTE: This script makes NO ATTEMPT to rate-limit queries - it is up to YOU to ensure that your usage conforms to the various AUPs and terms of each of the providers listed below.


----------------------
DNS Blacklists Queried
----------------------

The following DNSBL providers are queried:

APEWS (apews.py)
  http://www.apews.org/
TeamCymru MHR and IP-ASN Mapping (cymru.py)
  http://www.team-cymru.org/
dan.me's TOR Node Blacklist (dan.py)
  https://www.dan.me.uk/
GBUdb (gbudb.py)
  http://www.gbudb.com/index.jsp
Project Honeypot's Http:BL (honeypot.py, httbl_apikey.py)
  http://www.projecthoneypot.org/
LashBack's Unsubscribe Blacklist (lashback.py)
  http://www.lashback.com/
Spamhaus' ZEN and DBL (spamhaus.py)
  https://www.spamhaus.org/
Rik van Riel's Spamikaze instance, Passive Spam Block List (surriel.py)
  https://surriel.com/, https://psbl.org/


----------------
Acknowledgements
----------------

Inspired by vincecarney's dnsbl: https://github.com/vincecarney/dnsbl



