2019-09-23 00:03:53 +08:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# coding=utf-8
|
|
|
|
from theHarvester.lib.core import *
|
|
|
|
from theHarvester.discovery import otxsearch
|
|
|
|
import requests
|
|
|
|
import pytest
|
|
|
|
|
|
|
|
|
|
|
|
class TestOtx(object):
|
|
|
|
@staticmethod
|
|
|
|
def domain() -> str:
|
|
|
|
return 'metasploit.com'
|
|
|
|
|
|
|
|
def test_api(self):
|
|
|
|
base_url = f'https://otx.alienvault.com/api/v1/indicators/domain/{TestOtx.domain()}/passive_dns'
|
|
|
|
headers = {'User-Agent': Core.get_user_agent()}
|
|
|
|
request = requests.get(base_url, headers=headers)
|
|
|
|
assert request.status_code == 200
|
|
|
|
|
|
|
|
def test_search(self):
|
|
|
|
search = otxsearch.SearchOtx(TestOtx.domain())
|
|
|
|
search.process()
|
2019-09-26 03:17:24 +08:00
|
|
|
assert isinstance(search.get_hostnames(), set)
|
2019-09-23 00:03:53 +08:00
|
|
|
|
|
|
|
def test_search_no_results(self):
|
|
|
|
search = otxsearch.SearchOtx('radiant.eu')
|
|
|
|
search.process()
|
|
|
|
assert len(search.get_hostnames()) == 0
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
pytest.main()
|