Python library for interacting with the PT NAD API
Project description
PT NAD Client
Documentation: https://security-experts-community.github.io/ptnad-client
Source Code: https://github.com/Security-Experts-Community/ptnad-client
Python library for interacting with the PT NAD API.
🚀 Installation
pip install ptnad-client
📖 Usage
from ptnad import PTNADClient
client = PTNADClient("https://1.3.3.7", verify_ssl=False)
client.set_auth(username="user", password="pass")
# client.set_auth(auth_type="sso", username="user", password="pass", client_id="ptnad", client_secret="11111111-abcd-asdf-12334-0123456789ab", sso_url="https://siem.example.local:3334")
client.login()
query = "SELECT src.ip, dst.ip, proto FROM flow WHERE end > 2025.02.25 and end < 2025.02.26 LIMIT 10"
result = client.bql.execute(query)
print(f"Results: {result}")
📋 Filter Examples
Here are some useful filter examples you can use in your queries:
# HTTP not on port 80 (external)
"app_proto == 'http' && dst.port != 80 && dst.groups != 'HOME_NET'"
# TLS not on port 443 (external)
"app_proto == 'tls' && dst.port != 443 && dst.groups != 'HOME_NET'"
# Port 53 but not DNS
"dst.port == 53 && app_proto != 'dns' && (flags == 'FINISHED' && !(flags == 'MISSED_START' || flags == 'MISSED_END')) && pkts.recv > 0"
# Sessions with files
"files"
# Search file by name
"files.filename ~ '*amd64.deb'"
# Bittorrent from internal network
"app_proto == bittorrent and src.groups == 'HOME_NET'"
# Unencrypted email (external)
"(app_proto == 'smtp' || app_proto == 'pop3' || app_proto == 'imap') && !(smtp.rqs.cmd.name == 'STARTTLS' || pop3.rqs.cmd.name == 'STLS' || imap.rqs.cmd.name == 'STARTTLS') && dst.groups != 'HOME_NET'"
# Non-standard ports
"src.groups != 'HOME_NET' && dst.port != 80 && dst.port != 443 && dst.port != 25 && src.port != 53 && src.port != 443 && src.port != 123 && (flags == 'FINISHED' && !(flags == 'MISSED_START' || flags == 'MISSED_END')) && pkts.recv > 0"
# Digital Ocean and Amazon
"dst.geo.org == 'DigitalOcean, LLC' || dst.geo.org == 'Amazon.com, Inc.'"
# POST requests with 200 response
"http(rqs.method==POST && rsp.code==200)"
# MultiScanner triggered
"rpt.type == 'ms'"
# Miners
"rpt.cat == 'miners'"
You can find detailed instructions and examples here - usage_examples
✅ Features
🔐 Authentication
- Local authentication
- IAM (SSO) authentication
📊 BQL Queries
- Execute queries
📡 Monitoring
- Get system status
- Manage triggers
🛡️ Signatures
- Retrieve classes
- Get rules (all/specific)
- Commit/Revert changes
📋 Replists
- Create/Modify basic and dynamic replists
- Retrieve replist info
🛠️ Upcoming Features
- Documentation
- Sources management
- Hosts management
- Groups management
🧑💻 Contributing
Want to contribute? Check out the following:
We welcome all ideas, suggestions, and improvements!
PT NAD Client is part of an open SDK ecosystem designed to simplify integration with our products. Check out other related projects in the ecosystem:
🔹py-ptsandbox — A python library for asynchronous interactions with the PT Sandbox API
🔹sandbox-cli — CLI instrument for easy working with PT Sandbox
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 ptnad_client-0.2.1.tar.gz.
File metadata
- Download URL: ptnad_client-0.2.1.tar.gz
- Upload date:
- Size: 146.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c501bf9833f2528ad485c512dc85dd3331e9e3f8723942dae076713014ddf273
|
|
| MD5 |
593d1fea6113711ee743f717b0e6e819
|
|
| BLAKE2b-256 |
090e8a097314b7e94d0bc3e4c0cd15bba15bf038cc89206a37fc2014f7922aab
|
File details
Details for the file ptnad_client-0.2.1-py3-none-any.whl.
File metadata
- Download URL: ptnad_client-0.2.1-py3-none-any.whl
- Upload date:
- Size: 20.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e32667486d5a962cebd953da887a4fe6046c21654dba9f3b388a3ee73b8b9b04
|
|
| MD5 |
53f5cfafdcfefd45af2baf1055d36b2d
|
|
| BLAKE2b-256 |
ec75ecc73c385d3b0a6c91af6ce0cf079ba3d051da3eb9089af68e73dcad3131
|