mirror of
https://github.com/mukul975/Anthropic-Cybersecurity-Skills.git
synced 2026-07-05 23:38:57 +03:00
Complete folder anatomy for all 649 cybersecurity skills + update LICENSE to Mahipal
- 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
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
# API Reference: Implementing Mobile Application Management
|
||||
|
||||
## Microsoft Intune MAM API (Graph)
|
||||
|
||||
```python
|
||||
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 |
|
||||
|
||||
### References
|
||||
|
||||
- Intune MAM: https://learn.microsoft.com/en-us/mem/intune/apps/app-protection-policy
|
||||
- Graph API MAM: https://learn.microsoft.com/en-us/graph/api/resources/intune-mam-conceptual
|
||||
Reference in New Issue
Block a user