Skip to content

Commit 56626b8

Browse files
authored
Merge pull request #96 from hahwul/release/2.4.0
Release v2.4.0
2 parents e02d704 + 5e0b86f commit 56626b8

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jwt-hack"
3-
version = "2.3.1"
3+
version = "2.4.0"
44
edition = "2021"
55
authors = ["hahwul"]
66
description = "Hack the JWT (JSON Web Token) - A tool for JWT security testing and token manipulation"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ docker pull ghcr.io/hahwul/jwt-hack:latest
4949

5050
#### Docker Hub
5151
```bash
52-
docker pull hahwul/jwt-hack:v2.3.1
52+
docker pull hahwul/jwt-hack:v2.4.0
5353
```
5454

5555
## Features

docs/config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ highlight_theme = "ayu-mirage"
1919

2020
[extra]
2121
logo_text = "JWT-HACK"
22-
badge = "v2.3.1"
22+
badge = "v2.4.0"
2323
logo_image_path = "images/logo.png"
2424
logo_image_padding = "10px"
2525
default_thumbnail = "images/preview.jpg"

docs/content/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ template = "landing.html"
33

44
[extra.hero]
55
title = "Welcome to JWT-HACK!"
6-
badge = "v2.3.1"
6+
badge = "v2.4.0"
77
description = "A high-performance toolkit for testing, analyzing and attacking JSON Web Tokens"
88
image = "/images/preview.jpg" # Background image
99
cta_buttons = [
@@ -45,4 +45,4 @@ icon = "fa-solid fa-robot"
4545
title = "Contributing"
4646
description = "JWT-HACK is an open-source project made with ❤️. If you want to contribute to this project, please see CONTRIBUTING.md and submit a pull request with your cool content!"
4747
button = { text = "View Contributing Guide", url = "https://github.com/hahwul/jwt-hack/blob/main/CONTRIBUTING.md" }
48-
+++
48+
+++

docs/content/get_started/installation/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ docker pull ghcr.io/hahwul/jwt-hack:latest
5050

5151
### Docker Hub
5252
```bash
53-
docker pull hahwul/jwt-hack:v2.3.1
53+
docker pull hahwul/jwt-hack:v2.4.0
5454
```
5555

5656
## Verification
@@ -61,4 +61,4 @@ Once installed, verify that JWT-HACK is working correctly:
6161
jwt-hack --version
6262
```
6363

64-
You should see the version information and the JWT-HACK banner displayed.
64+
You should see the version information and the JWT-HACK banner displayed.

docs/content/usage/server/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ The following request and response shapes are supported.
7777
```/dev/null/health-response.json#L1-5
7878
{
7979
"status": "ok",
80-
"version": "2.3.1"
80+
"version": "2.4.0"
8181
}
8282
```
8383

@@ -283,7 +283,7 @@ Notes:
283283

284284
## cURL Examples
285285

286-
Replace host/port as needed. If the server was started with --api-key, include -H 'X-API-KEY: <API_KEY>' in each request.
286+
Replace host/port as needed. If the server was started with --api-key, include -H 'X-API-KEY: <API_KEY>' in each request.
287287

288288
### Health
289289
```/dev/null/curl-health.sh#L1-3
@@ -375,5 +375,5 @@ curl -s http://127.0.0.1:3000/scan \
375375
- Bind address: Use `--host 0.0.0.0` to accept remote connections.
376376
- CORS: Open (any origin, any method, any header).
377377
- Performance: `/crack` can be CPU-heavy and synchronous; keep search spaces small or run behind a job queue.
378-
- Security: This server is a testing tool. If exposed beyond localhost, use --api-key to require X-API-KEY on all requests and add additional safeguards (authN/Z, rate limits, isolation).
379-
- Errors: Most endpoints return HTTP 200 with `success:false` and `error`. Handle both the HTTP status and the `success` flag in clients.
378+
- Security: This server is a testing tool. If exposed beyond localhost, use --api-key to require X-API-KEY on all requests and add additional safeguards (authN/Z, rate limits, isolation).
379+
- Errors: Most endpoints return HTTP 200 with `success:false` and `error`. Handle both the HTTP status and the `success` flag in clients.

snap/snapcraft.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ base: core22
66
grade: stable
77
confinement: strict
88
license: MIT
9-
version: v2.3.1
9+
version: v2.4.0
1010
architectures:
1111
- build-on: amd64
1212
- build-on: arm64

0 commit comments

Comments
 (0)