mirror of
https://github.com/trustedsec/hate_crack.git
synced 2026-04-28 12:03:11 -07:00
Delete wordlists/kill_transmission.sh (replaced by Python extraction). Update Makefile, Dockerfile.test, lima config, README, TESTING.md, and test_dependencies.py to reference transmission-daemon/transmission-remote instead of transmission-cli. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
42 lines
1.1 KiB
YAML
42 lines
1.1 KiB
YAML
# Lima VM configuration for hate_crack E2E testing
|
|
# Ubuntu 24.04 LTS with hashcat and build dependencies pre-installed.
|
|
# Usage: limactl start --name hate-crack-e2e lima/hate-crack-test.yaml
|
|
|
|
images:
|
|
- location: "https://cloud-images.ubuntu.com/releases/24.04/release/ubuntu-24.04-server-cloudimg-amd64.img"
|
|
arch: "x86_64"
|
|
- location: "https://cloud-images.ubuntu.com/releases/24.04/release/ubuntu-24.04-server-cloudimg-arm64.img"
|
|
arch: "aarch64"
|
|
|
|
cpus: 2
|
|
memory: "4GiB"
|
|
disk: "20GiB"
|
|
|
|
# No host mounts - full isolation mirrors a real user install
|
|
mounts: []
|
|
|
|
provision:
|
|
- mode: system
|
|
script: |
|
|
#!/bin/bash
|
|
set -euo pipefail
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
apt-get update -qq
|
|
apt-get install -y --no-install-recommends \
|
|
build-essential \
|
|
ca-certificates \
|
|
curl \
|
|
git \
|
|
gzip \
|
|
hashcat \
|
|
ocl-icd-libopencl1 \
|
|
pocl-opencl-icd \
|
|
p7zip-full \
|
|
transmission-daemon
|
|
|
|
- mode: user
|
|
script: |
|
|
#!/bin/bash
|
|
set -euo pipefail
|
|
curl -LsSf https://astral.sh/uv/install.sh | sh
|