mirror of
https://github.com/laramies/theHarvester.git
synced 2024-11-12 02:16:59 +08:00
35 lines
1.1 KiB
Python
35 lines
1.1 KiB
Python
#!/usr/bin/env python3
|
|
# coding=utf-8
|
|
from theHarvester.lib.core import *
|
|
from theHarvester.discovery import certspottersearch
|
|
import requests
|
|
import pytest
|
|
|
|
|
|
class TestCertspotter(object):
|
|
@staticmethod
|
|
def domain() -> str:
|
|
return 'metasploit.com'
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_api(self):
|
|
base_url = f'https://api.certspotter.com/v1/issuances?domain={TestCertspotter.domain()}&expand=dns_names'
|
|
headers = {'User-Agent': Core.get_user_agent()}
|
|
request = requests.get(base_url, headers=headers)
|
|
assert request.status_code == 200
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_search(self):
|
|
search = certspottersearch.SearchCertspoter(TestCertspotter.domain())
|
|
await search.process()
|
|
assert isinstance(await search.get_hostnames(), set)
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_search_no_results(self):
|
|
search = certspottersearch.SearchCertspoter('radiant.eu')
|
|
await search.process()
|
|
assert len(await search.get_hostnames()) == 0
|
|
|
|
|
|
if __name__ == '__main__':
|
|
pytest.main()
|