Skip to content

Commit

Permalink
Add Harbor Detection
Browse files Browse the repository at this point in the history
Add Harbor detection for module network_device.
  • Loading branch information
OussamaBeng authored and bretfourbe committed Apr 5, 2024
1 parent 26997b3 commit dec4f26
Show file tree
Hide file tree
Showing 3 changed files with 256 additions and 1 deletion.
169 changes: 169 additions & 0 deletions tests/attack/test_mod_network_device.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import json
from asyncio import Event
from unittest.mock import AsyncMock

Expand All @@ -11,6 +12,8 @@
from wapitiCore.net.crawler import AsyncCrawler
from wapitiCore.attack.mod_network_device import ModuleNetworkDevice
from wapitiCore.attack.network_devices.mod_forti import ModuleForti
from wapitiCore.attack.network_devices.mod_harbor import ModuleHarbor



@pytest.mark.asyncio
Expand Down Expand Up @@ -363,3 +366,169 @@ async def test_raise_on_request_error():
await module.check_forti("http://perdu.com/")

assert exc_info.value.args[0] == "RequestError occurred: [Errno -2] Name or service not known"


@pytest.mark.asyncio
@respx.mock
async def test_detect_harbor_with_version():
json_data = {
"auth_mode": "db_auth",
"banner_message": "",
"harbor_version": "v2.10",
"oidc_provider_name": "",
"primary_auth_mode": False,
"self_registration": True
}
respx.get("http://perdu.com/").mock(
return_value=httpx.Response(
200,
content='<html><head><title>Hello</title></head><body><h1>Perdu sur Internet ?</h1> \
<h2>Pas de panique, on va vous aider</h2> \
</body></html>'
)
)
respx.get("http://perdu.com/api/v2.0/systeminfo").mock(
return_value=httpx.Response(
200,
headers={"Content-Type": "application/json"},
content=json.dumps(json_data)
)
)

respx.get(url__regex=r"http://perdu.com/.*?").mock(return_value=httpx.Response(404))

persister = AsyncMock()

request = Request("http://perdu.com/")
request.path_id = 1

crawler_configuration = CrawlerConfiguration(Request("http://perdu.com/"))
async with AsyncCrawler.with_configuration(crawler_configuration) as crawler:
options = {"timeout": 10, "level": 2, "tasks": 20}

module = ModuleNetworkDevice(crawler, persister, options, Event(), crawler_configuration)

await module.attack(request)

assert persister.add_payload.call_count == 1
assert persister.add_payload.call_args_list[0][1]["info"] == (
'{"name": "Harbor", "version": "v2.10", "categories": ["Network Equipment"], "groups": ["Content"]}'
)

@pytest.mark.asyncio
@respx.mock
async def test_detect_harbor_without_version():
json_data = {
"auth_mode": "db_auth",
"banner_message": "",
"oidc_provider_name": "",
"primary_auth_mode": False,
"self_registration": True
}
respx.get("http://perdu.com/").mock(
return_value=httpx.Response(
200,
content='<html><head><title>Hello</title></head><body><h1>Perdu sur Internet ?</h1> \
<h2>Pas de panique, on va vous aider</h2> \
</body></html>'
)
)
respx.get("http://perdu.com/api/v2.0/systeminfo").mock(
return_value=httpx.Response(
200,
headers={"Content-Type": "application/json"},
content=json.dumps(json_data)
)
)

respx.get(url__regex=r"http://perdu.com/.*?").mock(return_value=httpx.Response(404))

persister = AsyncMock()

request = Request("http://perdu.com/")
request.path_id = 1

crawler_configuration = CrawlerConfiguration(Request("http://perdu.com/"))
async with AsyncCrawler.with_configuration(crawler_configuration) as crawler:
options = {"timeout": 10, "level": 2, "tasks": 20}

module = ModuleNetworkDevice(crawler, persister, options, Event(), crawler_configuration)

await module.attack(request)

assert persister.add_payload.call_count == 1
assert persister.add_payload.call_args_list[0][1]["info"] == (
'{"name": "Harbor", "version": "", "categories": ["Network Equipment"], "groups": ["Content"]}'
)


@pytest.mark.asyncio
@respx.mock
async def test_detect_harbor_with_json_error():

respx.get("http://perdu.com/").mock(
return_value=httpx.Response(
200,
content='<html><head><title>Hello</title></head><body><h1>Perdu sur Internet ?</h1> \
<h2>Pas de panique, on va vous aider</h2> \
</body></html>'
)
)
respx.get("http://perdu.com/api/v2.0/systeminfo").mock(
return_value=httpx.Response(
200,
headers={"Content-Type": "application/json"},
content="Not Json"
)
)

respx.get(url__regex=r"http://perdu.com/.*?").mock(return_value=httpx.Response(404))

persister = AsyncMock()

request = Request("http://perdu.com/")
request.path_id = 1

crawler_configuration = CrawlerConfiguration(Request("http://perdu.com/"))
async with AsyncCrawler.with_configuration(crawler_configuration) as crawler:
options = {"timeout": 10, "level": 2, "tasks": 20}

module = ModuleNetworkDevice(crawler, persister, options, Event(), crawler_configuration)

await module.attack(request)

assert persister.add_payload.call_count == 1
assert persister.add_payload.call_args_list[0][1]["info"] == (
'{"name": "Harbor", "version": "", "categories": ["Network Equipment"], "groups": ["Content"]}'
)


@pytest.mark.asyncio
@respx.mock
async def test_detect_harbor_raise_on_request_error():
respx.get("http://perdu.com/").mock(
return_value=httpx.Response(
200,
content='<html><head><title>Hello</title></head><body><h1>Perdu sur Internet ?</h1> \
<h2>Pas de panique, on va vous aider</h2> \
</body></html>'
)
)
respx.get(url__regex=r"http://perdu.com/.*").mock(
side_effect=RequestError("RequestError occurred: [Errno -2] Name or service not known"))

persister = AsyncMock()

request = Request("http://perdu.com/")
request.path_id = 1

crawler_configuration = CrawlerConfiguration(Request("http://perdu.com/"))
async with AsyncCrawler.with_configuration(crawler_configuration) as crawler:
options = {"timeout": 10, "level": 2, "tasks": 20}

module = ModuleHarbor(crawler, persister, options, Event(), crawler_configuration)

with pytest.raises(RequestError) as exc_info:
await module.check_harbor("http://perdu.com/")

assert exc_info.value.args[0] == "RequestError occurred: [Errno -2] Name or service not known"
3 changes: 2 additions & 1 deletion wapitiCore/attack/mod_network_device.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from asyncio import Event
from typing import Optional

from wapitiCore.attack.network_devices.mod_harbor import ModuleHarbor
from wapitiCore.attack.network_devices.mod_forti import ModuleForti
from wapitiCore.attack.network_devices.mod_ubika import ModuleUbika
from wapitiCore.attack.attack import Attack
Expand Down Expand Up @@ -28,7 +29,7 @@ async def must_attack(self, request: Request, response: Optional[Response] = Non
async def attack(self, request: Request, response: Optional[Response] = None):
self.finished = True
request_to_root = Request(request.url)
modules_list = [ModuleUbika, ModuleForti]
modules_list = [ModuleHarbor, ModuleUbika, ModuleForti]
for module in modules_list:
mod = module(
self.crawler, self.persister, self.options, Event(), self.crawler_configuration
Expand Down
85 changes: 85 additions & 0 deletions wapitiCore/attack/network_devices/mod_harbor.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
import json
import re
from typing import Optional
from urllib.parse import urljoin

from httpx import RequestError

from wapitiCore.attack.attack import Attack
from wapitiCore.net import Request
from wapitiCore.net.response import Response
from wapitiCore.definitions.fingerprint import NAME as TECHNO_DETECTED, WSTG_CODE
from wapitiCore.main.log import log_blue, logging

MSG_NO_HARBOR = "No Harbor Product Detected"
MSG_HARBOR_DETECTED = "{0} {1} Detected !"


class ModuleHarbor(Attack):
"""Detect Harbor."""

device_name = "Harbor"
version = ""

async def check_harbor(self, url):
check_list = ['api/v2.0/systeminfo']

for item in check_list:
full_url = urljoin(url, item)
request = Request(full_url, 'GET')
try:
response: Response = await self.crawler.async_send(request, follow_redirects=False)
except RequestError:
self.network_errors += 1
raise

if (response.is_success and "content-type" in response.headers
and "json" in response.headers["content-type"]):
try:
await self.detect_harbor_version(response.content)
except ValueError:
logging.error(f"Cannot extract version from {full_url}")
return True

return False

async def detect_harbor_version(self, response_content):
try:
# Parse the JSON content
data = json.loads(response_content)
# Extract the harbor_version value
if data.get("harbor_version"):
self.version = data.get("harbor_version")
except (json.JSONDecodeError, KeyError) as json_error:
raise ValueError("The URL doesn't contain a valid JSON.") from json_error

async def attack(self, request: Request, response: Optional[Response] = None):
self.finished = True
request_to_root = Request(request.url)

try:
if await self.check_harbor(request_to_root.url):
harbor_detected = {
"name": self.device_name,
"version": self.version,
"categories": ["Network Equipment"],
"groups": ["Content"]
}
log_blue(
MSG_HARBOR_DETECTED,
self.device_name,
self.version
)

await self.add_addition(
category=TECHNO_DETECTED,
request=request_to_root,
info=json.dumps(harbor_detected),
wstg=WSTG_CODE
)
else:
log_blue(MSG_NO_HARBOR)
except RequestError as req_error:
self.network_errors += 1
logging.error(f"Request Error occurred: {req_error}")

0 comments on commit dec4f26

Please sign in to comment.