2021-06-21 07:19:27 +08:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# coding=utf-8
|
|
|
|
import requests
|
|
|
|
from theHarvester.lib.core import *
|
|
|
|
from theHarvester.discovery import anubis
|
2021-08-22 09:12:08 +08:00
|
|
|
import os
|
2021-06-21 07:19:27 +08:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
pytestmark = pytest.mark.asyncio
|
2021-08-22 10:59:34 +08:00
|
|
|
github_ci = os.getenv('GITHUB_ACTIONS')
|
2021-08-22 09:12:08 +08:00
|
|
|
|
|
|
|
|
2021-06-21 07:19:27 +08:00
|
|
|
class TestAnubis:
|
|
|
|
@staticmethod
|
|
|
|
def domain() -> str:
|
|
|
|
return 'apple.com'
|
|
|
|
|
|
|
|
async def test_api(self):
|
|
|
|
base_url = f'https://jldc.me/anubis/subdomains/{TestAnubis.domain()}'
|
|
|
|
headers = {'User-Agent': Core.get_user_agent()}
|
|
|
|
request = requests.get(base_url, headers=headers)
|
|
|
|
assert request.status_code == 200
|
|
|
|
|
|
|
|
async def test_do_search(self):
|
|
|
|
search = anubis.SearchAnubis(word=TestAnubis.domain())
|
|
|
|
await search.do_search()
|
|
|
|
return await search.get_hostnames()
|
|
|
|
|
|
|
|
async def test_process(self):
|
|
|
|
await self.test_do_search()
|
|
|
|
assert len(await self.test_do_search()) > 0
|