A Python library of utility classes for SentinelIQ analyzers and responders
Project description
Sentineliqsdk
Modern Python library of utility classes for SentinelIQ analyzers and responders.
Note: This SDK now exposes only the modern API (Python 3.13). Legacy helper aliases
such as getData, getParam, checkTlp, and notSupported were removed. Migrate to
get_data, get_param, and rely on automatic TLP/PAP enforcement in Worker.
Installing
To install this package, run:
pip install sentineliqsdk
Using
Example usage:
from __future__ import annotations
import json
from sentineliqsdk import Analyzer, Extractor, Worker, runner, WorkerInput
class EchoAnalyzer(Analyzer):
def execute(self):
value = self.get_data()
return self.report({"echo": value})
def run(self):
return self.execute()
if __name__ == "__main__":
# Option A: instantiate directly
report = EchoAnalyzer(WorkerInput(data_type="ip", data="1.2.3.4")).run()
print(json.dumps(report.full_report, ensure_ascii=False))
# Option B: use runner with input_data
runner(EchoAnalyzer, WorkerInput(data_type="ip", data="8.8.8.8"))
Internal structure (for maintainers):
src/sentineliqsdk/core/worker.pysrc/sentineliqsdk/analyzers/base.pysrc/sentineliqsdk/responders/base.pysrc/sentineliqsdk/extractors/regex.py(Extractor uses stdlib validators: ipaddress, urlparse)
Extractor
The Extractor detects common IOC types using Python's standard library instead of
complex regular expressions:
- ip:
ipaddress.ip_address - url/uri:
urllib.parse.urlparse - mail:
email.utils.parseaddr - hash: length + hex digits check
- domain/fqdn/registry/user‑agent: simple heuristics aligned with the test suite
Migration (Breaking Changes)
- Import from the top-level package only:
- Before:
from sentineliqsdk.analyzer import Analyzer - After:
from sentineliqsdk import Analyzer
- Before:
- Removed legacy helpers:
getData,getParam,checkTlp,notSupported,unexpectedError. - Removed legacy config key:
config.auto_extract_artifacts(useconfig.auto_extract). - Removed legacy module paths:
sentineliqsdk.analyzer,sentineliqsdk.responder,sentineliqsdk.worker,sentineliqsdk.extractor(all exported at top-level instead).
Contributing
Prerequisites
-
Generate an SSH key and add the SSH key to your GitHub account.
-
Configure SSH to automatically load your SSH keys:
cat << EOF >> ~/.ssh/config Host * AddKeysToAgent yes IgnoreUnknown UseKeychain UseKeychain yes ForwardAgent yes EOF
-
Install VS Code and VS Code's Dev Containers extension. Alternatively, install PyCharm.
-
Optional: install a Nerd Font such as FiraCode Nerd Font and configure VS Code or PyCharm to use it.
Development environments
The following development environments are supported:
-
⭐️ GitHub Codespaces: click on Open in GitHub Codespaces to start developing in your browser.
-
⭐️ VS Code Dev Container (with container volume): click on Open in Dev Containers to clone this repository in a container volume and create a Dev Container with VS Code.
-
⭐️ uv: clone this repository and run the following from root of the repository:
# Create and install a virtual environment uv sync --python 3.13 --all-extras # Activate the virtual environment source .venv/bin/activate # Install the pre-commit hooks pre-commit install --install-hooks
-
VS Code Dev Container: clone this repository, open it with VS Code, and run Ctrl/⌘ + ⇧ + P → Dev Containers: Reopen in Container.
-
PyCharm Dev Container: clone this repository, open it with PyCharm, create a Dev Container with Mount Sources, and configure an existing Python interpreter at
/opt/venv/bin/python.
Developing
- This project follows the Conventional Commits standard to automate Semantic Versioning and Keep A Changelog with Commitizen.
- Run
poefrom within the development environment to print a list of Poe the Poet tasks available to run on this project. - Run tests with coverage:
poe test(writesreports/coverage.xmland shows a summary). - Run
uv add {package}from within the development environment to install a run time dependency and add it topyproject.tomlanduv.lock. Add--devto install a development dependency. - Run
uv sync --upgradefrom within the development environment to upgrade all dependencies to the latest versions allowed bypyproject.toml. Add--only-devto upgrade the development dependencies only. - Run
cz bumpto bump the package's version, update theCHANGELOG.md, and create a git tag. Then push the changes and the git tag withgit push origin main --tags.
Security and privacy
- Error payloads sanitize config keys containing any of:
key,password,secret,token. - You can override or extend this list via the
secret_phrasesparameter toWorker(...).
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sentineliqsdk-0.2.2.tar.gz.
File metadata
- Download URL: sentineliqsdk-0.2.2.tar.gz
- Upload date:
- Size: 100.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.8.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
16b049653f7e44faa38b44e3a355659a6317f9c4223b9b900e65ed9d329b2d21
|
|
| MD5 |
4170ca22c0ba309c466aa6eafe72e5fa
|
|
| BLAKE2b-256 |
13daff1bb842b66f134e060090fcee6fafc0ac4f5562a03bc157ab2642b74823
|
File details
Details for the file sentineliqsdk-0.2.2-py3-none-any.whl.
File metadata
- Download URL: sentineliqsdk-0.2.2-py3-none-any.whl
- Upload date:
- Size: 41.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.8.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b67146bc12a2551099d9edaeb10568eea1590de9e0465b3ba515d0f90f86d111
|
|
| MD5 |
d506613ab39845249611e1ee17495f59
|
|
| BLAKE2b-256 |
069dbcfd7a4ab0f08407560cb9806e7297427e9a3e93574bccf48302bf45b27e
|