A python-based pentesting library for Azure and Entra ID
Project description
Azure Offensive Library
A python-based pentesting library for Azure and Entra ID
Installation
Install the library using Python3 pip:
pip install azol
Basic Usage
Log in as a user and get all subscriptions:
from azol.credentials import User
from azol.clients import ArmClient
cred = User(username="user@domain.com")
arm_client = ArmClient(tenant="tenant.com", cred=cred)
subscriptions=arm_client.get_subscriptions()
for sub_id in subscriptions:
print(sub_id)
Log in as a Service Principal and get all groups, with owners
from pprint import pprint
from azol.credentials import ServicePrincipal
from azol.clients import GraphClient
cred = ServicePrincipal(client_id="00000000-0000-0000-0000-000000000000", client_secret="your secret" )
graph_client = GraphClient(tenant="tenant.com", cred=cred)
groups=graph_client.get_all_groups_and_owners()
for group in groups:
pprint(group)
Log in as a user to their default tenant, but use an interactive signin. Get all tenants the user belongs to.
from azol import *
cred=User("user@domain.com")
arm_client=ArmClient(cred=cred, oauth_flow="authorization_code")
tenants=arm_client.get_tenants()
for tenant in tenants:
print(tenant["defaultDomain"])
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 azol-0.5.0b5.tar.gz.
File metadata
- Download URL: azol-0.5.0b5.tar.gz
- Upload date:
- Size: 229.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
afbeba7e126b237a122e508c2f99769f71a0eb76195d4c5754ad838c4f8d8b3c
|
|
| MD5 |
9268207c7b1a972cf553292fd8ae4686
|
|
| BLAKE2b-256 |
2476dd1f3e659f47f9e6c648e11ca7a7659be6b794bb223e58e6e9eb4c752135
|
File details
Details for the file azol-0.5.0b5-py3-none-any.whl.
File metadata
- Download URL: azol-0.5.0b5-py3-none-any.whl
- Upload date:
- Size: 243.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c96da6650f1a73bce36f488c3ff25ee3d6a46761206137811da3afeaeb3fa06c
|
|
| MD5 |
53eb9619cb7eff484b9b473c4fda645d
|
|
| BLAKE2b-256 |
550122f254a4ded15ceacbac9ea5abe5954721921597e1471b10ad9207a094b4
|