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
azol-0.2.6.tar.gz
(205.7 kB
view details)
Built Distribution
azol-0.2.6-py3-none-any.whl
(216.2 kB
view details)
File details
Details for the file azol-0.2.6.tar.gz
.
File metadata
- Download URL: azol-0.2.6.tar.gz
- Upload date:
- Size: 205.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | da26a6479c44d5c4a98ef7ccd57fe2e03984cecf1c7741e6ff90ffe01f0071b8 |
|
MD5 | 96552d15b1ea48feec24eb3ce5d56632 |
|
BLAKE2b-256 | 08a7117da20f589bbd2d74bb1cb650b1cbca95e973559cc713e61b638fd01339 |
File details
Details for the file azol-0.2.6-py3-none-any.whl
.
File metadata
- Download URL: azol-0.2.6-py3-none-any.whl
- Upload date:
- Size: 216.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f10f2e3791ce6769abe6cc10fd463c5b4990a877d0e653944742313c65dd96f8 |
|
MD5 | 98aea47f540c40a3d7fc21736eaf0e80 |
|
BLAKE2b-256 | 1ae0465ea2f3f6694654520159d0b10602d5927d479a97716ab0412406fc2aed |