1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
|
import unittest
import shodan
try:
basestring
except NameError:
basestring = str
class ShodanTests(unittest.TestCase):
api = None
FACETS = [
'port',
('domain', 1)
]
QUERIES = {
'simple': 'cisco-ios',
'minify': 'apache',
'advanced': 'apache port:443',
'empty': 'asdasdasdasdasdasdasdasdasdhjihjkjk',
}
def setUp(self):
with open('SHODAN-API-KEY') as f:
self.api = shodan.Shodan(f.read().strip())
def test_search_simple(self):
results = self.api.search(self.QUERIES['simple'])
# Make sure the properties exist
self.assertIn('matches', results)
self.assertIn('total', results)
# Make sure no error occurred
self.assertNotIn('error', results)
# Make sure some values were returned
self.assertTrue(results['matches'])
self.assertTrue(results['total'])
# A regular search shouldn't have the optional info
self.assertNotIn('opts', results['matches'][0])
def test_search_empty(self):
results = self.api.search(self.QUERIES['empty'])
self.assertTrue(len(results['matches']) == 0)
self.assertEqual(results['total'], 0)
def test_search_facets(self):
results = self.api.search(self.QUERIES['simple'], facets=self.FACETS)
self.assertTrue(results['facets']['port'])
self.assertEqual(len(results['facets']['domain']), 1)
def test_count_simple(self):
results = self.api.count(self.QUERIES['simple'])
# Make sure the properties exist
self.assertIn('matches', results)
self.assertIn('total', results)
# Make sure no error occurred
self.assertNotIn('error', results)
# Make sure no values were returned
self.assertFalse(results['matches'])
self.assertTrue(results['total'])
def test_count_facets(self):
results = self.api.count(self.QUERIES['simple'], facets=self.FACETS)
self.assertTrue(results['facets']['port'])
self.assertEqual(len(results['facets']['domain']), 1)
def test_host_details(self):
host = self.api.host('147.228.101.7')
self.assertEqual('147.228.101.7', host['ip_str'])
self.assertFalse(isinstance(host['ip'], basestring))
def test_search_minify(self):
results = self.api.search(self.QUERIES['minify'], minify=False)
self.assertIn('opts', results['matches'][0])
def test_exploits_search(self):
results = self.api.exploits.search('apache')
self.assertIn('matches', results)
self.assertIn('total', results)
self.assertTrue(results['matches'])
def test_exploits_search_paging(self):
results = self.api.exploits.search('apache', page=1)
match1 = results['matches'][0]
results = self.api.exploits.search('apache', page=2)
match2 = results['matches'][0]
self.assertNotEqual(match1['_id'], match2['_id'])
def test_exploits_search_facets(self):
results = self.api.exploits.search('apache', facets=['source', ('author', 1)])
self.assertIn('facets', results)
self.assertTrue(results['facets']['source'])
self.assertTrue(len(results['facets']['author']) == 1)
def test_exploits_count(self):
results = self.api.exploits.count('apache')
self.assertIn('matches', results)
self.assertIn('total', results)
self.assertTrue(len(results['matches']) == 0)
def test_exploits_count_facets(self):
results = self.api.exploits.count('apache', facets=['source', ('author', 1)])
self.assertEqual(len(results['matches']), 0)
self.assertIn('facets', results)
self.assertTrue(results['facets']['source'])
self.assertTrue(len(results['facets']['author']) == 1)
def test_trends_search(self):
results = self.api.trends.search('apache', facets=[('product', 10)])
self.assertIn('total', results)
self.assertIn('matches', results)
self.assertIn('facets', results)
self.assertTrue(results['matches'])
self.assertIn('2023-06', [bucket['key'] for bucket in results['facets']['product']])
results = self.api.trends.search('apache', facets=[])
self.assertIn('total', results)
self.assertIn('matches', results)
self.assertNotIn('facets', results)
self.assertTrue(results['matches'])
self.assertIn('2023-06', [match['month'] for match in results['matches']])
def test_trends_search_filters(self):
results = self.api.trends.search_filters()
self.assertIn('has_ipv6', results)
self.assertNotIn('http.html', results)
def test_trends_search_facets(self):
results = self.api.trends.search_facets()
self.assertIn('product', results)
self.assertNotIn('cpe', results)
# Test error responses
def test_invalid_key(self):
api = shodan.Shodan('garbage')
raised = False
try:
api.search('something')
except shodan.APIError:
raised = True
self.assertTrue(raised)
def test_invalid_host_ip(self):
raised = False
try:
self.api.host('test')
except shodan.APIError:
raised = True
self.assertTrue(raised)
def test_search_empty_query(self):
raised = False
try:
self.api.search('')
except shodan.APIError:
raised = True
self.assertTrue(raised)
def test_search_advanced_query(self):
# The free API plan can't use filters
raised = False
try:
self.api.search(self.QUERIES['advanced'])
except shodan.APIError:
raised = True
self.assertTrue(raised)
if __name__ == '__main__':
unittest.main()
|