https://github.com/righettod/toolbox-jsoncrack
Docker image to have a local instance of JSON Crack.
https://github.com/righettod/toolbox-jsoncrack
docker json
Last synced: about 1 month ago
JSON representation
Docker image to have a local instance of JSON Crack.
- Host: GitHub
- URL: https://github.com/righettod/toolbox-jsoncrack
- Owner: righettod
- License: gpl-3.0
- Created: 2024-03-01T13:58:32.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-02T00:34:10.000Z (over 1 year ago)
- Last Synced: 2025-03-02T01:25:44.608Z (over 1 year ago)
- Topics: docker, json
- Language: Shell
- Homepage: https://github.com/AykutSarac/jsoncrack.com
- Size: 71.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 💻 JSON Crack toolbox
  
## 🎯 Description
The goal of this repository is to provide an up to date docker image of the [JSON Crack](https://github.com/AykutSarac/jsoncrack.com) tool.
## 📦 Build
See [here](https://github.com/AykutSarac/jsoncrack.com?tab=readme-ov-file#docker).
## 👨💻 Usage
You can use the following PowerShell code snippet:
```powershell
$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
```
## 🤝 Sources & credits
* [JSON Crack author](https://github.com/AykutSarac/jsoncrack.com).