Skip to content

Commit

Permalink
Merge pull request #4 from splunk-soar-connectors/tapishj/PAPP-34631
Browse files Browse the repository at this point in the history
PAPP-34631: Talos MVP
  • Loading branch information
tapishj-splunk authored Nov 19, 2024
2 parents 444ec12 + cc235b0 commit 33522fe
Show file tree
Hide file tree
Showing 15 changed files with 385 additions and 178 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linting.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Linting
on: [push, pull_request]
jobs:
lint:
lint:
# Run per push for internal contributers. This isn't possible for forked pull requests,
# so we'll need to run on PR events for external contributers.
# String comparison below is case insensitive.
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -198,4 +198,4 @@
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
34 changes: 20 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Connector Version: 1.0.1
Product Vendor: Cisco
Product Name: Talos Cloud Intelligence
Product Version Supported (regex): ".\*"
Minimum Product Version: 6.2.1.305
Minimum Product Version: 6.2.2

This app provides investigative actions for Cisco Talos Cloud Intelligence

Expand Down Expand Up @@ -40,8 +40,8 @@ The below configuration variables are required for this Connector to operate. T
VARIABLE | REQUIRED | TYPE | DESCRIPTION
-------- | -------- | ---- | -----------
**base_url** | required | string | Base URL provided by Talos
**certificate** | optional | password | Certificate contents to authenticate with Talos
**key** | optional | password | Private key to authenticate with Talos
**certificate** | required | password | Certificate contents to authenticate with Talos
**key** | required | password | Private key to authenticate with Talos
**verify_server_cert** | optional | boolean | Verify server certificate

### Supported Actions
Expand Down Expand Up @@ -75,19 +75,21 @@ Provide information on an IP address's reputation, enabling you to take proper a
#### Action Parameters
PARAMETER | REQUIRED | DESCRIPTION | TYPE | CONTAINS
--------- | -------- | ----------- | ---- | --------
**ip** | required | IP to query | string | `ip`
**ip** | required | IP to query | string | `ip` `ipv6`

#### Action Output
DATA PATH | TYPE | CONTAINS | EXAMPLE VALUES
--------- | ---- | -------- | --------------
action_result.parameter.ip | string | `ip` |
action_result.parameter.ip | string | `ip` `ipv6` |
action_result.status | string | |
action_result.message | string | |
summary.total_objects | numeric | |
summary.total_objects_successful | numeric | |
action_result.data.0.Threat Level | string | |
action_result.data.1.Threat Categories | string | |
action_result.data.2.Acceptable Use Policy Categories | string | |
action_result.data.\*.Observable | string | |
action_result.data.\*.Threat_Level | string | |
action_result.data.\*.Threat_Categories | string | |
action_result.data.\*.AUP | string | |
action_result.summary.message | string | | 72.163.4.185 has a Favorable threat level

## action: 'domain reputation'
Query domain info
Expand All @@ -110,9 +112,11 @@ action_result.status | string | |
action_result.message | string | |
summary.total_objects | numeric | |
summary.total_objects_successful | numeric | |
action_result.data.0.Threat Level | string | |
action_result.data.1.Threat Categories | string | |
action_result.data.2.Acceptable Use Policy Categories | string | |
action_result.data.\*.Observable | string | |
action_result.data.\*.Threat_Level | string | |
action_result.data.\*.Threat_Categories | string | |
action_result.data.\*.AUP | string | |
action_result.summary.message | string | | splunk.com has a Favorable threat level

## action: 'url reputation'
Query URL info
Expand All @@ -135,6 +139,8 @@ action_result.status | string | |
action_result.message | string | |
summary.total_objects | numeric | |
summary.total_objects_successful | numeric | |
action_result.data.0.Threat Level | string | |
action_result.data.1.Threat Categories | string | |
action_result.data.2.Acceptable Use Policy Categories | string | |
action_result.data.\*.Observable | string | |
action_result.data.\*.Threat_Level | string | |
action_result.data.\*.Threat_Categories | string | |
action_result.data.\*.AUP | string | |
action_result.summary.message | string | | https://splunk.com has a Favorable threat level
Loading

0 comments on commit 33522fe

Please sign in to comment.