Files
T
mukul975 27c6414ca5 Add folder anatomy (scripts/agent.py + references/api-reference.md) for 648 cybersecurity skills
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
2026-03-10 21:02:12 +01:00

1.7 KiB

API Reference: CyberArk Zero Standing Privilege

CyberArk PVWA REST API v2

Authentication

POST /api/auth/CyberArk/Logon
Body: {"username": "admin", "password": "pass"}
Returns: Session token string

Key Endpoints

Method Endpoint Description
GET /api/Safes List all safes
GET /api/Safes/{name}/Members List safe members and permissions
GET /api/Platforms List configured platforms
GET /api/Accounts List privileged accounts
GET /api/LiveSessions List active privileged sessions
POST /api/Accounts/{id}/CheckIn Release exclusive account access

Safe Member Permissions

Permission ZSP Implication
useAccounts Can initiate privileged sessions
retrieveAccounts Can retrieve passwords
listAccounts Can see account inventory
requestsAuthorizationLevel1 Dual-control approval required

Session Properties

Field Description
User Session initiator
AccountName Target privileged account
Duration Session length in seconds
RemoteMachine Target host

TEA Framework

Component API Field Purpose
Time MaxSessionDuration Auto-revoke after timeout
Entitlements AllowedPermissions Scoped access per session
Approvals requestsAuthorizationLevel Require approval workflow

References