
Security News
Node.js Moves Toward Stable TypeScript Support with Amaro 1.0
Amaro 1.0 lays the groundwork for stable TypeScript support in Node.js, bringing official .ts loading closer to reality.
The Splunk SOAR SDK is available as a package on PyPI.
The recommended installation method is via uv.
This package defines the soarapps
command line interface. To use it, install as a uv tool:
uv tool install splunk-soar-sdk
soarapps --help
When developing a new Splunk SOAR app using the SDK, you should use uv as your project management tool:
uv add splunk-soar-sdk
Running the above command will add splunk-soar-sdk
as a dependency of your Splunk SOAR app, in your pyproject.toml
file.
In order to start using SDK and build your first Splunk SOAR App, follow the Getting Started guide.
A Splunk SOAR app developed with the SDK will look something like this:
Project structure:
string_reverser/
├─ src/
│ ├─ __init__.py
│ ├─ app.py
├─ tests/
│ ├─ __init__.py
│ ├─ test_app.py
├─ .pre-commit-config.yaml
├─ logo.svg
├─ logo_dark.svg
├─ pyproject.toml
With app.py
containing:
from soar_sdk.abstract import SOARClient
from soar_sdk.app import App
from soar_sdk.asset import AssetField, BaseAsset
from soar_sdk.params import Params
from soar_sdk.action_results import ActionOutput
class Asset(BaseAsset):
base_url: str
api_key: str = AssetField(sensitive=True, description="API key for authentication")
app = App(name="test_app", asset_cls=Asset, appid="1e1618e7-2f70-4fc0-916a-f96facc2d2e4", app_type="sandbox", logo="logo.svg", logo_dark="logo_dark.svg", product_vendor="Splunk", product_name="Example App", publisher="Splunk")
@app.test_connectivity()
def test_connectivity(client: SOARClient, asset: Asset) -> None:
client.debug(f"testing connectivity against {asset.base_url}")
class ReverseStringParams(Params):
input_string: str
class ReverseStringOutput(ActionOutput):
reversed_string: str
@app.action(action_type="test", verbose="Reverses a string.")
def reverse_string(
param: ReverseStringParams, client: SOARClient
) -> ReverseStringOutput:
reversed_string = param.input_string[::-1]
return ReverseStringOutput(reversed_string=reversed_string)
if __name__ == "__main__":
app.cli()
Copyright 2025 Splunk Inc.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software 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.
FAQs
The official framework for developing and testing Splunk SOAR Apps
We found that splunk-soar-sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Amaro 1.0 lays the groundwork for stable TypeScript support in Node.js, bringing official .ts loading closer to reality.
Research
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.