Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Velociraptor Legacy Plugin 1.0.0 #2101

Open
wants to merge 26 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
5033d7e
[PLGN-133] Samanage/Solarwinds updates (#1623)
dlaverty-r7 Feb 14, 2023
9d00d36
[PLGN-133] Solarwinds - updated id outputs as integers to line up wit…
dlaverty-r7 Feb 14, 2023
4ba164b
[PLGN-46] - Cybereason - Archive Sensor Functionality (#1566)
TKuzas-R7 Apr 17, 2023
bcfd511
Cybereason output fix (#1727)
TKuzas-R7 Apr 27, 2023
221d29d
[MC-1452] Update Okta plugin (#1733)
dsliwinski-r7 May 9, 2023
77698f1
IC fixes (#1792)
cmcnally-r7 May 22, 2023
a84096b
[MC-1452] Return status code in Monitor Logs task in Okta plugin (#1764)
dsliwinski-r7 May 23, 2023
28951ae
Change port input back to string (#1809)
cmcnally-r7 May 24, 2023
012e7cf
[MC-1452] Update pagination in Monitor Logs task in Okta plugin (#1838)
dsliwinski-r7 Jun 7, 2023
9bf8e9b
Updated armorblox plugin with the review comments. (#1721)
SamhithaTatipalli Jun 15, 2023
249716f
[SOAR-14571] - Zoom - Delete User Returns Json Parsing Error (#1846)
TKuzas-R7 Jun 29, 2023
7e79299
run black linter, fix unit tests and validators (#1857)
llaszuk-r7 Jul 5, 2023
704eb1e
Zoom Validator Fixes (#1870)
TKuzas-R7 Jul 10, 2023
ef32136
[PLGN-361] Cloud Enable & Remove Defective Endpoint Actions from ICS …
mrinehart-r7 Aug 25, 2023
2d3aac5
plgn-380 salesforce add deduping (#1993)
llaszuk-r7 Sep 27, 2023
657d73f
plgn-412 remove clean data and stop converting output (#2002)
llaszuk-r7 Sep 29, 2023
d591957
Update trigger | update pathing | update github branch refs (#2047)
ablakley-r7 Oct 19, 2023
7e82a3f
[PLGN-560] Update Proofpoint TAP task handling (#2069)
dlaverty-r7 Oct 25, 2023
a69f81a
[PLGN-560] Update proofpoint task subsequent run (#2077)
dlaverty-r7 Oct 26, 2023
574ea3f
[PLGN-362]- Pager Duty - Refactor to use requests rather than pypd (#…
rbowden-r7 Oct 31, 2023
d9a1895
Add files via upload
jbauvinet-r7 Nov 6, 2023
92350e4
Performed Black.
jbauvinet-r7 Nov 6, 2023
18231cb
Black formatting
cmcnally-r7 Nov 7, 2023
5b0b49f
Remove duplicated plugin
cmcnally-r7 Nov 7, 2023
ec4c682
Fix help md validator
cmcnally-r7 Nov 7, 2023
c9ac171
Extension pnx 500x500
jbauvinet-r7 Nov 7, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Change port input back to string (#1809)
cmcnally-r7 authored and ablakley-r7 committed Nov 7, 2023
commit 28951aeb2f17d1a5c9e7e5a3527d7330383bdf36
2 changes: 1 addition & 1 deletion plugins/thehive/help.md
Original file line number Diff line number Diff line change
@@ -31,7 +31,7 @@ The connection configuration accepts the following parameters:
|api_key|credential_secret_key|None|False|An optional API key for authentication via bearer token|None|9de5069c5afe602b2ea0a04b66beb2c0|
|credentials|credential_username_password|None|False|Username and password|None|{}|
|host|string|None|True|TheHive host|None|thehive.company.com or 10.3.4.50|
|port|integer|9000|True|TheHive API port|None|9000|
|port|string|9000|True|TheHive API port|None|9000|
|protocol|string|None|True|HTTP Protocol|['http', 'https']|http|
|proxy|object|None|False|An optional dictionary containing proxy data, with HTTP or HTTPS as the key, and the proxy URL as the value|None|{}|
|verify|boolean|True|True|Verify the certificate|None|True|
2 changes: 1 addition & 1 deletion plugins/thehive/komand_thehive/connection/connection.py
Original file line number Diff line number Diff line change
@@ -27,7 +27,7 @@ def connect(self, params={}):
self.verify = params.get(Input.VERIFY, True)
self.proxy = params.get(Input.PROXY, {})

url = f"{protocol}://{host}:{str(port)}"
url = f"{protocol}://{host}:{port}"
self.logger.info(f"URL: {url}")

if self.proxy:
2 changes: 1 addition & 1 deletion plugins/thehive/komand_thehive/connection/schema.py
Original file line number Diff line number Diff line change
@@ -38,7 +38,7 @@ class ConnectionSchema(insightconnect_plugin_runtime.Input):
"order": 1
},
"port": {
"type": "integer",
"type": "string",
"title": "Port",
"description": "TheHive API port",
"default": "9000",
2 changes: 1 addition & 1 deletion plugins/thehive/plugin.spec.yaml
Original file line number Diff line number Diff line change
@@ -34,7 +34,7 @@ connection:
example: thehive.company.com or 10.3.4.50
required: true
port:
type: integer
type: string
title: Port
description: TheHive API port
default: '9000'