From ec2e923530419d43d59895d69b0ab412f7e9c78a Mon Sep 17 00:00:00 2001 From: Jason Ertel Date: Tue, 24 Jan 2023 10:28:39 -0500 Subject: [PATCH 1/3] Add proper spacing between headers and content --- salt/sensoroni/files/analyzers/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/salt/sensoroni/files/analyzers/README.md b/salt/sensoroni/files/analyzers/README.md index e87a95638..8b1f44f29 100644 --- a/salt/sensoroni/files/analyzers/README.md +++ b/salt/sensoroni/files/analyzers/README.md @@ -3,6 +3,7 @@ Security Onion provides a means for performing data analysis on varying inputs. This data can be any data of interest sourced from event logs. Examples include hostnames, IP addresses, file hashes, URLs, etc. The analysis is conducted by one or more analyzers that understand that type of input. Analyzers come with the default installation of Security Onion. However, it is also possible to add additional analyzers to extend the analysis across additional areas or data types. ## Supported Observable Types + The built-in analyzers support the following observable types: | Name | Domain | Hash | IP | Mail | Other | URI | URL | User Agent | @@ -20,6 +21,7 @@ The built-in analyzers support the following observable types: | WhoisLookup |✓ |✗|✗|✗|✗|✓|✗|✗| ## Authentication + Many analyzers require authentication, via an API key or similar. The table below illustrates which analyzers require authentication. | Name | Authn Req'd| From 62b96c3698907dec2feba42cc56d4990cd0f3a50 Mon Sep 17 00:00:00 2001 From: Jason Ertel Date: Tue, 24 Jan 2023 10:31:02 -0500 Subject: [PATCH 2/3] rework filter for action --- .github/workflows/pythontest.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pythontest.yml b/.github/workflows/pythontest.yml index f888b1a43..dae1c420b 100644 --- a/.github/workflows/pythontest.yml +++ b/.github/workflows/pythontest.yml @@ -2,9 +2,9 @@ name: python-test on: push: - paths: salt/sensoroni/files/analyzers + paths: + - "salt/sensoroni/files/analyzers/**" pull_request: - paths: salt/sensoroni/files/analyzers jobs: build: From 0dc5e7e714caf1ed3e4b242f9c79625b6e254cba Mon Sep 17 00:00:00 2001 From: Jason Ertel Date: Tue, 24 Jan 2023 10:38:59 -0500 Subject: [PATCH 3/3] try paths with wildcard --- .github/workflows/pythontest.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/pythontest.yml b/.github/workflows/pythontest.yml index dae1c420b..3ce481ee0 100644 --- a/.github/workflows/pythontest.yml +++ b/.github/workflows/pythontest.yml @@ -5,6 +5,8 @@ on: paths: - "salt/sensoroni/files/analyzers/**" pull_request: + paths: + - "salt/sensoroni/files/analyzers/**" jobs: build: