Intezer Platform SDK
Project description
Intezer SDK
The SDK wraps the Intezer Platform API 2.0 (full HTTP API documentation).
📖 Full documentation: https://intezer-python-sdk.readthedocs.io/
What you can do with the SDK:
- Analyze files, URLs and endpoint scans
- Send and retrieve alerts (raw and phishing emails)
- Inspect incidents and cases (devices, users, TTPs)
- Search analyses, alerts, incidents, cases and devices history
- Index files as trusted or malicious and look up genetic families
- Get code reuse, metadata, IOCs, dynamic TTPs, capabilities and related samples
Installation
pip install intezer-sdk
The SDK requires CPython 3.10 or newer.
Quick start
Configure the global API once, then use any SDK class:
from intezer_sdk import api
from intezer_sdk.analysis import FileAnalysis
api.set_global_api('<api_key>')
analysis = FileAnalysis(file_path='/path/to/sample')
analysis.send(wait=True)
print(analysis.result())
The API key can also be read from the INTEZER_ANALYZE_API_KEY environment
variable. See the Getting started guide
for US region, on-premise, and multi-tenant setups.
A taste of the SDK
# Analyze a URL
from intezer_sdk.analysis import UrlAnalysis
analysis = UrlAnalysis(url='https://example.com/suspicious')
analysis.send(wait=True)
# Fetch an alert and its scans
from intezer_sdk.alerts import Alert
alert = Alert.from_id(alert_id='<alert_id>', wait=True, fetch_scans=True)
print(alert.verdict, alert.family_name)
# Look up a case
from intezer_sdk.cases import Case
case = Case.from_id(case_id='<case_id>')
print(case.case_title, case.case_status, case.case_priority)
For the full set of examples — wait patterns, sub-analyses, alert ingestion, incident and case search, indexing, history queries, on-premise setup — see the hosted documentation.
Project details
Release history Release notifications | RSS feed
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 intezer_sdk-1.27.6.tar.gz.
File metadata
- Download URL: intezer_sdk-1.27.6.tar.gz
- Upload date:
- Size: 54.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.25
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
94f3fcd870c5d27921c229a3ede15225473dd0bc48c6447074261d6908e686ef
|
|
| MD5 |
8563e1466516b6f1954373e7dbe1ae75
|
|
| BLAKE2b-256 |
3d2fd57d067a310011526c59c52ee4487aaa43bb0bc00360712214af80aac7f6
|
File details
Details for the file intezer_sdk-1.27.6-py3-none-any.whl.
File metadata
- Download URL: intezer_sdk-1.27.6-py3-none-any.whl
- Upload date:
- Size: 65.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.25
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bc8a301fcc2e74678f13b6f1f55c54871df49cf894841d3b755dbb86a60caac2
|
|
| MD5 |
5b514f94cab8111ca8ab604178aa78fc
|
|
| BLAKE2b-256 |
3c34964cdf196bed3c10917d229009035f9089ea406189a64b1e5ba02ec1af46
|