mirror of
https://github.com/mukul975/Anthropic-Cybersecurity-Skills.git
synced 2026-06-13 06:34:57 +03:00
27c6414ca5
Complete skill folder anatomy across all cybersecurity skills: - scripts/agent.py: 80-150 line Python agents using real libraries (impacket, boto3, azure-mgmt-*, kubernetes, pefile, yara, scapy, shodan, stix2, etc.) - references/api-reference.md: real API documentation with method signatures - LICENSE: MIT license for all skill folders
78 lines
2.3 KiB
Markdown
78 lines
2.3 KiB
Markdown
# API Reference: Auditing Azure Active Directory Configuration
|
|
|
|
## azure-identity Authentication
|
|
|
|
```python
|
|
from azure.identity import DefaultAzureCredential, ClientSecretCredential
|
|
|
|
# Default (managed identity, env vars, CLI)
|
|
credential = DefaultAzureCredential()
|
|
|
|
# Service principal
|
|
credential = ClientSecretCredential(tenant_id, client_id, client_secret)
|
|
|
|
# Get Graph API token
|
|
token = credential.get_token("https://graph.microsoft.com/.default")
|
|
```
|
|
|
|
## Microsoft Graph API Endpoints
|
|
|
|
| Endpoint | Description |
|
|
|----------|-------------|
|
|
| `GET /organization` | Tenant info and verified domains |
|
|
| `GET /directoryRoles` | List directory roles |
|
|
| `GET /directoryRoles/{id}/members` | Members of a role |
|
|
| `GET /identity/conditionalAccess/policies` | Conditional Access policies |
|
|
| `GET /users?$filter=userType eq 'Guest'` | Guest users |
|
|
| `GET /users?$select=signInActivity` | User sign-in activity |
|
|
| `GET /auditLogs/signIns` | Sign-in logs |
|
|
| `GET /reports/authenticationMethods/userRegistrationDetails` | MFA registration |
|
|
|
|
## Python Graph API Helper
|
|
|
|
```python
|
|
import requests
|
|
|
|
def graph_get(token, endpoint, params=None):
|
|
headers = {"Authorization": f"Bearer {token}"}
|
|
url = f"https://graph.microsoft.com/v1.0{endpoint}"
|
|
return requests.get(url, headers=headers, params=params).json()
|
|
|
|
# List Global Admins
|
|
roles = graph_get(token, "/directoryRoles")
|
|
for role in roles["value"]:
|
|
if role["displayName"] == "Global Administrator":
|
|
members = graph_get(token, f"/directoryRoles/{role['id']}/members")
|
|
```
|
|
|
|
## Key Conditional Access Policy Fields
|
|
|
|
```json
|
|
{
|
|
"displayName": "Require MFA for admins",
|
|
"state": "enabled",
|
|
"conditions": {
|
|
"users": {"includeUsers": ["All"], "excludeGroups": ["break-glass"]},
|
|
"clientAppTypes": ["all"]
|
|
},
|
|
"grantControls": {
|
|
"builtInControls": ["mfa"]
|
|
}
|
|
}
|
|
```
|
|
|
|
## azure-mgmt-authorization (RBAC)
|
|
|
|
```python
|
|
from azure.mgmt.authorization import AuthorizationManagementClient
|
|
client = AuthorizationManagementClient(credential, subscription_id)
|
|
for assignment in client.role_assignments.list():
|
|
print(assignment.principal_id, assignment.role_definition_id)
|
|
```
|
|
|
|
### References
|
|
|
|
- azure-identity: https://pypi.org/project/azure-identity/
|
|
- MS Graph API: https://learn.microsoft.com/en-us/graph/api/overview
|
|
- azure-mgmt-authorization: https://pypi.org/project/azure-mgmt-authorization/
|