From 951c547f4eaaf8d2ce277b720ad635ab42e8faf8 Mon Sep 17 00:00:00 2001 From: bitterpanda Date: Thu, 15 Jan 2026 14:44:55 +0100 Subject: [PATCH 1/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dd752317..9dd111ef 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ Zen operates autonomously on the same server as your Java app to: You can install Zen by downloading the zip file [here](https://github.com/AikidoSec/firewall-java/releases/latest) and unzipping it to your directory of choice, we picked `/opt/zen` here for our Linux system as an example. We also have support for Windows and Mac OS X. Please ensure you do not alter the structure of this folder and that the process can read & write to it. -To activate Zen you then just have to add the following argument to your Java command : +To activate Zen you then just have to add the following argument to your Java command **before** the `-jar` argument ``` -javaagent:/opt/zen/agent.jar ``` From 5ff6279b725f1ace4812f2406cb58a49ac70b170 Mon Sep 17 00:00:00 2001 From: bitterpanda Date: Thu, 15 Jan 2026 15:07:00 +0100 Subject: [PATCH 2/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9dd111ef..ec9851ed 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ we picked `/opt/zen` here for our Linux system as an example. We also have suppo Please ensure you do not alter the structure of this folder and that the process can read & write to it. To activate Zen you then just have to add the following argument to your Java command **before** the `-jar` argument ``` --javaagent:/opt/zen/agent.jar +java -javaagent:/opt/zen/agent.jar -jar build/myapp.jar ``` Replace `/opt/zen` with your directory of choice. From 05f652eb06723baf3199f1debf336b9df4a09b47 Mon Sep 17 00:00:00 2001 From: bitterpanda Date: Thu, 15 Jan 2026 15:07:28 +0100 Subject: [PATCH 3/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ec9851ed..3df2e331 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ Zen operates autonomously on the same server as your Java app to: You can install Zen by downloading the zip file [here](https://github.com/AikidoSec/firewall-java/releases/latest) and unzipping it to your directory of choice, we picked `/opt/zen` here for our Linux system as an example. We also have support for Windows and Mac OS X. Please ensure you do not alter the structure of this folder and that the process can read & write to it. -To activate Zen you then just have to add the following argument to your Java command **before** the `-jar` argument +To activate Zen you then just have to add the following `-javaagent` to your Java command **before** the `-jar` argument ``` java -javaagent:/opt/zen/agent.jar -jar build/myapp.jar ``` From cf4b1b2886caf5729a3b480d162f43e9fb098779 Mon Sep 17 00:00:00 2001 From: bitterpanda Date: Thu, 15 Jan 2026 15:07:42 +0100 Subject: [PATCH 4/4] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 3df2e331..2dd4b9fb 100644 --- a/README.md +++ b/README.md @@ -68,6 +68,7 @@ Zen operates autonomously on the same server as your Java app to: You can install Zen by downloading the zip file [here](https://github.com/AikidoSec/firewall-java/releases/latest) and unzipping it to your directory of choice, we picked `/opt/zen` here for our Linux system as an example. We also have support for Windows and Mac OS X. Please ensure you do not alter the structure of this folder and that the process can read & write to it. + To activate Zen you then just have to add the following `-javaagent` to your Java command **before** the `-jar` argument ``` java -javaagent:/opt/zen/agent.jar -jar build/myapp.jar