Sign inSign up

yimura/crackerjack-docker

By yimura

Updated over 2 years ago

A dockerized version of crackerjack, an easy to use web interface built around hashcat!

Image
Security
0

751

yimura/crackerjack-docker repository overview

CrackerJack but Dockerized!

See https://github.com/ctxis/crackerjack for what this tool does, this image is just a dockerized version of it.

Supported Tags

  • CPU: cpu
  • GPU: nvidia

Supported Drivers

The following hardware vendors are supported currently:

CPU:

  • OpenCL (Intel)

GPU:

  • CUDA (Nvidia)

Not supported

CPU:

  • OpenCL (AMD)

GPU:

  • ROCm (AMD)

Usage

Below are two example docker-compose files to deploy this, one CPU and one for GPU:

version: '3.5'
services:
  crackerjack:
    container_name: crackerjack
    image: yimura/crackerjack-docker:cpu
    restart: unless-stopped
    ports:
      - 8080:8080
    volumes:
      - ./data/:/opt/crackerjack/data/
version: '3.5'
services:
  crackerjack:
    container_name: crackerjack
    image: yimura/crackerjack-docker:nvidia
    ports:
      - 8080:8080
    volumes:
      - ./data/:/opt/crackerjack/data/
    deploy:
      resources:
        reservations:
          devices:
            - driver: nvidia
              count: 1
              capabilities: [gpu]

Tag summary

Content type

Image

Digest

sha256:d9421d9b9

Size

933.8 MB

Last updated

over 2 years ago

docker pull yimura/crackerjack-docker:cpu