Skip to content

Commit c73cf83

Browse files
committed
Add history and type parameters to Shodan.dns.domain_info() method and CLI command
1 parent 9b1fe51 commit c73cf83

File tree

4 files changed

+16
-5
lines changed

4 files changed

+16
-5
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
CHANGELOG
22
=========
33

4+
1.21.1
5+
------
6+
* Add ``history`` and ``type`` parameters to ``Shodan.dns.domain_info()`` method and CLI command
7+
48
1.21.0
59
------
610
* New API methods ``api.search_facets()`` and ``api.search_filters()`` to get a list of available facets and filters.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setup(
99
name='shodan',
10-
version='1.21.0',
10+
version='1.21.1',
1111
description='Python library and command-line utility for Shodan (https://developer.shodan.io)',
1212
long_description=README,
1313
long_description_content_type='text/x-rst',

shodan/__main__.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -138,13 +138,15 @@ def convert(fields, input, format):
138138
@click.argument('domain', metavar='<domain>')
139139
@click.option('--details', '-D', help='Lookup host information for any IPs in the domain results', default=False, is_flag=True)
140140
@click.option('--save', '-S', help='Save the information in the a file named after the domain (append if file exists).', default=False, is_flag=True)
141-
def domain_info(domain, details, save):
141+
@click.option('--history', '-H', help='Include historical DNS data in the results', default=False, is_flag=True)
142+
@click.option('--type', '-T', help='Only returns DNS records of the provided type', default=None)
143+
def domain_info(domain, details, save, history, type):
142144
"""View all available information for a domain"""
143145
key = get_api_key()
144146
api = shodan.Shodan(key)
145147

146148
try:
147-
info = api.dns.domain_info(domain)
149+
info = api.dns.domain_info(domain, history=history, type=type)
148150
except shodan.APIError as e:
149151
raise click.ClickException(e.value)
150152

shodan/client.py

+7-2
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,15 @@ class Dns:
6969
def __init__(self, parent):
7070
self.parent = parent
7171

72-
def domain_info(self, domain):
72+
def domain_info(self, domain, history=False, type=None):
7373
"""Grab the DNS information for a domain.
7474
"""
75-
return self.parent._request('/dns/domain/{}'.format(domain), {})
75+
args = {}
76+
if history:
77+
args['history'] = history
78+
if type:
79+
args['type'] = type
80+
return self.parent._request('/dns/domain/{}'.format(domain), args)
7681

7782
class Notifier:
7883

0 commit comments

Comments
 (0)