mirror of
https://github.com/mukul975/Anthropic-Cybersecurity-Skills.git
synced 2026-07-18 13:39:40 +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
33 lines
916 B
Markdown
33 lines
916 B
Markdown
# API Reference — Performing Malware Hash Enrichment with VirusTotal
|
|
|
|
## Libraries Used
|
|
- **requests**: HTTP client for VirusTotal API v3
|
|
- **hashlib**: Local file hash calculation (MD5, SHA1, SHA256)
|
|
|
|
## CLI Interface
|
|
|
|
```
|
|
python agent.py --api-key <key> lookup --hash <sha256>
|
|
python agent.py --api-key <key> bulk --hashes <h1> <h2> [--rate-limit 4]
|
|
python agent.py --api-key <key> behavior --hash <sha256>
|
|
python agent.py hash-file --file <path>
|
|
```
|
|
|
|
## VirusTotalClient API Calls
|
|
|
|
### `get_file_report(file_hash)`
|
|
**Endpoint:** `GET /api/v3/files/{hash}`
|
|
Returns: detection ratio, file type, tags, threat classification.
|
|
|
|
### `get_file_behavior(file_hash)`
|
|
**Endpoint:** `GET /api/v3/files/{hash}/behaviours`
|
|
Returns: sandbox results (processes, files, registry, DNS, HTTP).
|
|
|
|
## Rate Limiting
|
|
Free tier: 4 requests/minute. Agent auto-sleeps after each batch of 4.
|
|
|
|
## Dependencies
|
|
```
|
|
pip install requests
|
|
```
|