From 2b6bf7ccb96b3563f3b2022c1afb1f1924786af4 Mon Sep 17 00:00:00 2001 From: baizhenxuan Date: Fri, 16 Sep 2022 21:50:07 +0800 Subject: [PATCH] version 0.1.1 --- README.md | 4 ++-- build.gradle.kts | 2 +- doc/en/startup.md | 4 ++-- doc/zh/path_traversal_game.md | 2 +- doc/zh/startup.md | 4 ++-- run.sh | 2 +- src/main/kotlin/net/bytedance/security/app/EngineInfo.kt | 2 +- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4d47e54..29851d2 100644 --- a/README.md +++ b/README.md @@ -30,14 +30,14 @@ the [gradle](https://gradle.org/) tool. $ ./gradlew build -x test ``` -After executing the above command, you will see an artifact file `AppShark-0.1-all.jar` in the directory `build/libs`. +After executing the above command, you will see an artifact file `AppShark-0.1.1-all.jar` in the directory `build/libs`. ## Running AppShark Like the previous step, we assume that you are still in the root folder of the project. You can run the tool with ```shell - $ java -jar build/libs/AppShark-0.1-all.jar config/config.json5 + $ java -jar build/libs/AppShark-0.1.1-all.jar config/config.json5 ``` The `config.json5` has the following configuration contents. diff --git a/build.gradle.kts b/build.gradle.kts index a90da43..8d2f7f3 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -61,7 +61,7 @@ configurations.all { } group = "net.bytedance.security.app" -version = "0.1" +version = "0.1.1" description = "appshark" java.sourceCompatibility = JavaVersion.VERSION_1_8 diff --git a/doc/en/startup.md b/doc/en/startup.md index 55f06dc..9e51db7 100644 --- a/doc/en/startup.md +++ b/doc/en/startup.md @@ -2,7 +2,7 @@ How to get started quickly, take a simple vulnerability scan as an example # 1. Download jar dependencies -the jar file can be [downloaded here](https://github.com/bytedance/appshark/releases/download/0.1/AppShark-0.1-all.jar). Install jre/jdk 11 for our engine. +the jar file can be [downloaded here](https://github.com/bytedance/appshark/releases/download/0.1/AppShark-0.1.1-all.jar). Install jre/jdk 11 for our engine. # 2. Download the config folder on Github @@ -19,7 +19,7 @@ git clone https://github.com/bytedance/appshark # 4. Run Appshark ```shell -java -jar AppShark-0.1-all.jar config/config.json5 +java -jar AppShark-0.1.1-all.jar config/config.json5 ``` # 5. Check out results diff --git a/doc/zh/path_traversal_game.md b/doc/zh/path_traversal_game.md index a0afbb1..f97b87f 100644 --- a/doc/zh/path_traversal_game.md +++ b/doc/zh/path_traversal_game.md @@ -127,7 +127,7 @@ app完整的源码位于 [BypassPathTraversal](https://github.com/nkbai/BypassPa ``` 运行命令如下: ```shell -java -jar AppShark-0.1-all.jar config/config.json5 +java -jar AppShark-0.1.1-all.jar config/config.json5 ``` 可以在out目录中的results.json中发现下面的内容: diff --git a/doc/zh/startup.md b/doc/zh/startup.md index 24b546a..906fd0e 100644 --- a/doc/zh/startup.md +++ b/doc/zh/startup.md @@ -14,7 +14,7 @@ # 1. 下载jar -[点击下载jar包](https://github.com/bytedance/appshark/releases/download/0.1/AppShark-0.1-all.jar). 要求系统安装有jre11环境, +[点击下载jar包](https://github.com/bytedance/appshark/releases/download/0.1.1/AppShark-0.1.1-all.jar). 要求系统安装有jre11环境, # 2. 通过github下载config文件夹 @@ -31,7 +31,7 @@ git clone https://github.com/bytedance/appshark # 4. 启动appshark ```txt -java -jar AppShark-0.1-all.jar config/config.json5 +java -jar AppShark-0.1.1-all.jar config/config.json5 ``` # 5. 查看结果 diff --git a/run.sh b/run.sh index cc5ac0c..b6aefb9 100755 --- a/run.sh +++ b/run.sh @@ -1,4 +1,4 @@ #!/bin/bash export JAVA_HOME=/usr/local/Cellar/openjdk@11/11.0.12 export PATH=/usr/local/Cellar/openjdk@11/11.0.12/bin:$PATH -java -jar build/libs/AppShark-0.1-all.jar config/config.json5 \ No newline at end of file +java -jar build/libs/AppShark-0.1.1-all.jar config/config.json5 \ No newline at end of file diff --git a/src/main/kotlin/net/bytedance/security/app/EngineInfo.kt b/src/main/kotlin/net/bytedance/security/app/EngineInfo.kt index 9961899..ab53786 100644 --- a/src/main/kotlin/net/bytedance/security/app/EngineInfo.kt +++ b/src/main/kotlin/net/bytedance/security/app/EngineInfo.kt @@ -20,5 +20,5 @@ package net.bytedance.security.app object EngineInfo { //version info - const val Version = "0.1" + const val Version = "0.1.1" } \ No newline at end of file