A lightweight PanOS (Palo Alto Networks) Firewall Management utility.
Project description
EZPanOS
lightweight PAN-OS utility library focused on practical operational tasks.
Why ezpanos exists
ezpanos is not a replacement for Palo Alto Networks’ official SDKs.
It grew out of working directly with PAN-OS automation and seeing how often engineers still end up dealing with hardcoded XPath, XML-heavy responses, and task-specific parsing logic.
ezpanos exists to make that experience more practical.
The PAN-OS ecosystem exposes strong configuration and object-management primitives, but real-world operational automatiosn require lower-level PanOS command execution and response parsing-- making operations requiring application logic more intuitive to build.
Right now, the CLI and execution interfaces return JSON. Higher-order abstractions on objects introduce maintenance overhead. This is more of an execution and translation layer for higher-order automations and projects.
The goal is to make operational automation easier to read and build.
Installation
pip install ezpanos
Quick Start
from ezpanos import EzPanOS
endpoint = "10.0.0.1"
fw = EzPanOS(endpoint=endpoint, username="admin")
print(fw.execute("show system info"))
For slower systems/commands, raise the default API timeout:
fw = EzPanOS(endpoint=endpoint, username="admin", request_timeout_default=90)
If password is omitted, you are securely prompted. Credentials entered once can be reused in-memory for subsequent connections in the same run.
Config Profiles
You can use a config.json file for endpoint/profile organization and optional usernames/passwords.
Conceptually, an estate is the firewalls you intend to manage. Because the utility works on many PanOS Configuration types: Panorama, Firewall, or Log Collector: each can be assimilated into this framework.
Example config.json:
{
"profiles": {
"estate": {
"username": "svc_firewall",
"endpoints": [
{"endpoint": "firewall-1.inside.example.com"},
{"endpoint": "firewall-2.inside.example.com"}
]
}
}
}
Build instances:
from ezpanos import EzPanOS
instances = EzPanOS.instances_from_config_profile(
config_path="config.json",
config_profile="estate",
)
Note that the name of the config_profile is estate, this is configurable if you intend to logically separate the management of different such estates. This is useful for environments with multiple Panorama Instances.
If passwords are not present in config, you will be prompted and values are reused from in-memory cache where possible.
Rule Management
from ezpanos import EzPanOS
fw = EzPanOS(endpoint="10.0.0.1", username="admin")
result = fw.create_security_rule(
rule_name="example-rule",
from_zones=["trust"],
to_zones=["untrust"],
sources=["any"],
destinations=["any"],
applications=["web-browsing"],
services=["application-default"],
action="allow",
)
print(result)
Delete rule and commit:
delete_result = fw.delete_security_rule("example-rule", ignore_missing=True)
print(delete_result)
commit_result = fw.commit(wait_for_job=True)
print(commit_result)
Job sensitive commands
Some commands like software download/install as well as standard commit jobs execute beyond the xml command success.
To monitor the job id of an executed command:
response = fw.execute("request sustem software download 11.1.6-h3")
job_id = fw.extract_job_id(response)
# Or likewise:
version = "10.1.1"
response = fw.execute(f"request sustem software download version: {version}")
job_id = fw.extract_job_id(response)
This job can then be monitored with
response = fw.execute(f"show jobs id {job_id}")
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 ezpanos-1.0.3.tar.gz.
File metadata
- Download URL: ezpanos-1.0.3.tar.gz
- Upload date:
- Size: 40.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca7555b6d8dafd33a8f8031ffe9298a145c6ef227b614361a5d580a0a75efe90
|
|
| MD5 |
52101a9367883d0d4a6960fef6934f91
|
|
| BLAKE2b-256 |
aa1cd47772e3f71e844991c78284287e92b66631cec29b1ed09b1f963b45735b
|
File details
Details for the file ezpanos-1.0.3-py3-none-any.whl.
File metadata
- Download URL: ezpanos-1.0.3-py3-none-any.whl
- Upload date:
- Size: 37.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d276079c57bc927cefefb501f0cfebaab12f27439a6bfd485d9104ce2b3c4bd5
|
|
| MD5 |
926fc5641a8e1033c51274c2137fdf7b
|
|
| BLAKE2b-256 |
db0580956a02a6d5c17fe751ded1ea1ee97ae9b8c4b55420816a488f387372d0
|