The goal of this repository is to provide an up to date docker image of the JSON Crack tool.
See here.
You can use the following PowerShell code snippet:
$toolUrl = "http://localhost:8888"
docker run -d -p 8888:8080 ghcr.io/righettod/toolbox-jsoncrack:main
$status = 0
while ($status -ne 200) {
Write-Host "[+] Wait 15 seconds that the container starts..." -ForegroundColor Yellow
Start-Sleep 15
$status = (Invoke-WebRequest -Uri $toolUrl -UseBasicParsing).StatusCode
}
Write-Host "[i] URL to use is $toolUrl" -ForegroundColor Cyan
Firefox.exe $toolUrl