Skip to content

Commit d91ffd8

Browse files
committed
Add new CLI command: shodan alert domain
1 parent b7a9978 commit d91ffd8

File tree

3 files changed

+37
-1
lines changed

3 files changed

+37
-1
lines changed

CHANGELOG.md

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

4+
1.23.0
5+
------
6+
* Add new CLI command: shodan alert domain
7+
48
1.22.1
59
------
610
* Fix bug when converting data file to CSV using Python3

setup.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,14 @@
22

33
from setuptools import setup
44

5+
56
DEPENDENCIES = open('requirements.txt', 'r').read().split('\n')
67
README = open('README.rst', 'r').read()
78

9+
810
setup(
911
name='shodan',
10-
version='1.22.1',
12+
version='1.23.0',
1113
description='Python library and command-line utility for Shodan (https://developer.shodan.io)',
1214
long_description=README,
1315
long_description_content_type='text/x-rst',

shodan/cli/alert.py

+30
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
from operator import itemgetter
55
from shodan.cli.helpers import get_api_key
6+
from time import sleep
67

78

89
@click.group()
@@ -46,6 +47,35 @@ def alert_create(name, netblocks):
4647
click.secho('Alert ID: {}'.format(alert['id']), fg='cyan')
4748

4849

50+
@alert.command(name='domain')
51+
@click.argument('domain', metavar='<domain>', type=str)
52+
@click.option('--triggers', help='List of triggers to enable', default='malware,industrial_control_system,internet_scanner,iot,open_database,new_service,ssl_expired,vulnerable')
53+
def alert_domain(domain, triggers):
54+
"""Create a network alert based on a domain name"""
55+
key = get_api_key()
56+
57+
api = shodan.Shodan(key)
58+
try:
59+
# Grab a list of IPs for the domain
60+
domain = domain.lower()
61+
click.secho('Looking up domain information...', dim=True)
62+
info = api.dns.domain_info(domain, type='A')
63+
domain_ips = set([record['value'] for record in info['data']])
64+
65+
# Create the actual alert
66+
click.secho('Creating alert...', dim=True)
67+
alert = api.create_alert('__domain: {}'.format(domain), list(domain_ips))
68+
69+
# Enable the triggers so it starts getting managed by Shodan Monitor
70+
click.secho('Enabling triggers...', dim=True)
71+
api.enable_alert_trigger(alert['id'], triggers)
72+
except shodan.APIError as e:
73+
raise click.ClickException(e.value)
74+
75+
click.secho('Successfully created domain alert!', fg='green')
76+
click.secho('Alert ID: {}'.format(alert['id']), fg='cyan')
77+
78+
4979
@alert.command(name='info')
5080
@click.argument('alert', metavar='<alert id>')
5181
def alert_info(alert):

0 commit comments

Comments
 (0)