2020-05-18 06:29:22 +08:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# coding=utf-8
|
|
|
|
import requests
|
|
|
|
from theHarvester.lib.core import *
|
|
|
|
from theHarvester.discovery import sublist3r
|
2021-08-22 09:12:08 +08:00
|
|
|
import os
|
2020-05-18 06:29:22 +08:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
pytestmark = pytest.mark.asyncio
|
2021-08-22 11:35:40 +08:00
|
|
|
github_ci = os.getenv('GITHUB_ACTIONS') # Github set this to be the following: true instead of True
|
2021-08-22 09:12:08 +08:00
|
|
|
|
|
|
|
|
2020-05-18 06:29:22 +08:00
|
|
|
class TestSublist3r(object):
|
|
|
|
@staticmethod
|
|
|
|
def domain() -> str:
|
|
|
|
return 'target.com'
|
|
|
|
|
|
|
|
async def test_api(self):
|
|
|
|
base_url = f'https://api.sublist3r.com/search.php?domain={TestSublist3r.domain()}'
|
|
|
|
headers = {'User-Agent': Core.get_user_agent()}
|
|
|
|
request = requests.get(base_url, headers=headers)
|
|
|
|
assert request.status_code == 200
|
|
|
|
|
2021-06-21 07:19:52 +08:00
|
|
|
async def test_do_search(self):
|
2020-05-18 06:29:22 +08:00
|
|
|
search = sublist3r.SearchSublist3r(TestSublist3r.domain())
|
|
|
|
await search.process()
|
|
|
|
assert isinstance(await search.get_hostnames(), list)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
pytest.main()
|