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
This commit is contained in:
mukul975
2026-03-10 21:02:12 +01:00
parent c74d52fa30
commit 27c6414ca5
1390 changed files with 106806 additions and 0 deletions
@@ -0,0 +1,21 @@
MIT License
Copyright (c) 2025 Anthropic Agent Skills Contributors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
@@ -0,0 +1,53 @@
# API Reference: Saviynt Access Recertification
## Saviynt EIC REST API v5
### Authentication
```python
POST /ECM/api/login
Body: {"username": "admin", "password": "pass"}
Returns: {"access_token": "...", "token_type": "Bearer"}
```
### Certification Endpoints
| Method | Endpoint | Description |
|--------|----------|-------------|
| POST | `/ECM/api/v5/listCertification` | List campaigns |
| POST | `/ECM/api/v5/getCertificationDetails` | Campaign statistics |
| POST | `/ECM/api/v5/getCertificationItems` | Get review items |
| POST | `/ECM/api/v5/certifyItems` | Certify/revoke items |
### listCertification Payload
| Field | Description |
|-------|-------------|
| `certificationstatus` | `active`, `completed`, `expired` |
| `max` | Maximum results per page |
| `offset` | Pagination offset |
### Certification Item Fields
| Field | Description |
|-------|-------------|
| `username` | Identity under review |
| `entitlement_value` | Access being reviewed |
| `risk_score` | Computed risk (0-10) |
| `last_used_date` | Last access usage date |
| `peer_group_match` | Whether peers have same access |
### certifyItems Actions
| Action | Description |
|--------|-------------|
| `certify` | Approve continued access |
| `revoke` | Remove access |
| `consult` | Request additional reviewer input |
### Campaign Types
| Type | Trigger |
|------|---------|
| User Manager | Manager reviews direct reports |
| Application Owner | App owner reviews all users |
| Entitlement Owner | Entitlement owner reviews holders |
| Event-Based | Triggered by role/department change |
## References
- Saviynt REST API: https://docs.saviyntcloud.com/
- Saviynt Certification: https://docs.saviyntcloud.com/bundle/EIC-Admin-v24x/
@@ -0,0 +1,142 @@
#!/usr/bin/env python3
"""Agent for managing Saviynt access recertification campaigns via REST API."""
import requests
import json
import argparse
from datetime import datetime, timezone
import urllib3
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
def authenticate(base_url, username, password):
"""Authenticate to Saviynt EIC and get OAuth token."""
url = f"{base_url}/ECM/api/login"
payload = {"username": username, "password": password}
resp = requests.post(url, json=payload, verify=False, timeout=30)
resp.raise_for_status()
token = resp.json().get("access_token")
print(f"[*] Authenticated to Saviynt EIC")
return {"Authorization": f"Bearer {token}"}
def list_campaigns(base_url, headers, status="active"):
"""List certification campaigns."""
url = f"{base_url}/ECM/api/v5/listCertification"
payload = {"certificationstatus": status, "max": 50, "offset": 0}
resp = requests.post(url, headers=headers, json=payload, verify=False, timeout=30)
resp.raise_for_status()
campaigns = resp.json().get("certifications", [])
print(f"\n[*] Campaigns ({status}): {len(campaigns)}")
for c in campaigns:
print(f" {c.get('certificationname')} - certifier: {c.get('certifier', 'N/A')} "
f"| due: {c.get('duedate', 'N/A')}")
return campaigns
def get_campaign_details(base_url, headers, cert_key):
"""Get detailed campaign status including item counts."""
url = f"{base_url}/ECM/api/v5/getCertificationDetails"
payload = {"certkey": cert_key}
resp = requests.post(url, headers=headers, json=payload, verify=False, timeout=30)
resp.raise_for_status()
details = resp.json()
total = details.get("totalitems", 0)
certified = details.get("certifieditems", 0)
revoked = details.get("revokeditems", 0)
pending = total - certified - revoked
print(f"\n[*] Campaign {cert_key}: total={total}, certified={certified}, "
f"revoked={revoked}, pending={pending}")
return details
def get_pending_items(base_url, headers, cert_key, max_items=100):
"""Get items pending review in a certification campaign."""
url = f"{base_url}/ECM/api/v5/getCertificationItems"
payload = {"certkey": cert_key, "status": "pending", "max": max_items, "offset": 0}
resp = requests.post(url, headers=headers, json=payload, verify=False, timeout=30)
resp.raise_for_status()
items = resp.json().get("certificationitems", [])
print(f"\n[*] Pending items: {len(items)}")
high_risk = [i for i in items if i.get("risk_score", 0) > 7]
print(f" High-risk items (score > 7): {len(high_risk)}")
for i in high_risk[:10]:
print(f" [!] {i.get('username')} - {i.get('entitlement_value')} "
f"(risk: {i.get('risk_score')})")
return items
def certify_items(base_url, headers, cert_key, item_ids, action="certify"):
"""Certify or revoke items in a campaign."""
url = f"{base_url}/ECM/api/v5/certifyItems"
payload = {"certkey": cert_key, "itemids": item_ids, "action": action,
"comments": f"Auto-{action} by recertification agent"}
resp = requests.post(url, headers=headers, json=payload, verify=False, timeout=30)
resp.raise_for_status()
print(f"[*] {action.capitalize()}d {len(item_ids)} items in campaign {cert_key}")
return resp.json()
def check_overdue_campaigns(base_url, headers):
"""Find campaigns past their due date."""
url = f"{base_url}/ECM/api/v5/listCertification"
payload = {"certificationstatus": "active", "max": 200, "offset": 0}
resp = requests.post(url, headers=headers, json=payload, verify=False, timeout=30)
resp.raise_for_status()
campaigns = resp.json().get("certifications", [])
now = datetime.now(timezone.utc)
overdue = []
for c in campaigns:
due = c.get("duedate", "")
if due:
try:
due_dt = datetime.fromisoformat(due.replace("Z", "+00:00"))
if due_dt < now:
overdue.append({"name": c.get("certificationname"),
"due": due, "certifier": c.get("certifier")})
except ValueError:
pass
print(f"\n[*] Overdue campaigns: {len(overdue)}")
for o in overdue:
print(f" [!] {o['name']} (due: {o['due']}, certifier: {o['certifier']})")
return overdue
def generate_report(campaigns, overdue, output_path):
"""Generate recertification status report."""
report = {"report_date": datetime.now(timezone.utc).isoformat(),
"active_campaigns": len(campaigns), "overdue_campaigns": len(overdue),
"campaigns": campaigns[:50], "overdue": overdue}
with open(output_path, "w") as f:
json.dump(report, f, indent=2, default=str)
print(f"\n[*] Report saved to {output_path}")
def main():
parser = argparse.ArgumentParser(description="Saviynt Access Recertification Agent")
parser.add_argument("action", choices=["list", "details", "pending", "overdue", "full-audit"])
parser.add_argument("--url", required=True, help="Saviynt EIC base URL")
parser.add_argument("--username", required=True)
parser.add_argument("--password", required=True)
parser.add_argument("--cert-key", help="Certification campaign key")
parser.add_argument("-o", "--output", default="recert_report.json")
args = parser.parse_args()
headers = authenticate(args.url, args.username, args.password)
if args.action == "list":
list_campaigns(args.url, headers)
elif args.action == "details" and args.cert_key:
get_campaign_details(args.url, headers, args.cert_key)
elif args.action == "pending" and args.cert_key:
get_pending_items(args.url, headers, args.cert_key)
elif args.action == "overdue":
check_overdue_campaigns(args.url, headers)
elif args.action == "full-audit":
campaigns = list_campaigns(args.url, headers)
overdue = check_overdue_campaigns(args.url, headers)
generate_report(campaigns, overdue, args.output)
if __name__ == "__main__":
main()