mirror of
https://github.com/mukul975/Anthropic-Cybersecurity-Skills.git
synced 2026-06-11 05:34:55 +03:00
c21af3347e
- Add scripts/agent.py and references/api-reference.md to all remaining skills - Update all 648 LICENSE files: copyright now reads 'Mahipal' - Add implementing-security-monitoring-with-datadog (new skill with full anatomy) - All 649 skills now have: SKILL.md, LICENSE, scripts/agent.py, references/api-reference.md
1.3 KiB
1.3 KiB
API Reference: Implementing Mobile Application Management
Microsoft Intune MAM API (Graph)
import requests
headers = {"Authorization": "Bearer <token>"}
# List MAM policies
policies = requests.get(
"https://graph.microsoft.com/v1.0/deviceAppManagement/managedAppPolicies",
headers=headers).json()
# List managed apps
apps = requests.get(
"https://graph.microsoft.com/v1.0/deviceAppManagement/managedAppRegistrations",
headers=headers).json()
MAM Policy Settings
| Setting | Recommended | Description |
|---|---|---|
| pinRequired | true | Require app PIN |
| encryptAppData | true | Encrypt app data |
| dataBackupBlocked | true | Block iCloud/Google backup |
| screenCaptureBlocked | true | Block screenshots |
| managedBrowserRequired | true | Force managed browser |
| maxPinRetries | 5 | Wipe after failures |
Conditional Launch Settings
| Condition | Action | Value |
|---|---|---|
| Jailbreak/root | Block | true |
| Min OS version | Warn/Block | 16.0 |
| Offline wipe | Wipe | 30 days |
| Max PIN retries | Wipe | 5 |