create_kali_weekly_template
Automatically generate Kali Linux weekly templates by fetching the latest ISO and checksum from official sources. Configure custom packages, disk size, memory, and CPU cores for security testing environments.
Instructions
Create a Kali Linux weekly template with automatic latest ISO detection.
Automatically fetches the latest Kali Linux weekly ISO and checksum from https://cdimage.kali.org/kali-weekly/. The ISO URL and checksum change weekly, so this tool always uses the most recent version.
Args: name: Template name (default: "kali-weekly-latest") packages: Additional packages to install (e.g., ["metasploit-framework", "burpsuite"]) ansible_roles: Ansible roles to apply description: Template description disk_size: Disk size (default: "40G") memory: Memory in MB (default: 4096) cores: CPU cores (default: 2)
Returns: Template creation result with ISO information and instructions
Example: # Create latest Kali weekly template result = await create_kali_weekly_template( name="kali-weekly-pentesting", packages=["nmap", "metasploit-framework", "burpsuite"], description="Latest Kali weekly with pentesting tools" )
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | kali-weekly-latest | |
| packages | No | ||
| ansible_roles | No | ||
| description | No | ||
| disk_size | No | 40G | |
| memory | No | ||
| cores | No |