Skip to content

Commit

Permalink
version 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nkbai committed Sep 16, 2022
1 parent 5d11964 commit 2b6bf7c
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions doc/en/startup.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion doc/zh/path_traversal_game.md
Original file line number Diff line number Diff line change
Expand Up @@ -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中发现下面的内容:
Expand Down
4 changes: 2 additions & 2 deletions doc/zh/startup.md
Original file line number Diff line number Diff line change
Expand Up @@ -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文件夹

Expand All @@ -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. 查看结果
Expand Down
2 changes: 1 addition & 1 deletion run.sh
Original file line number Diff line number Diff line change
@@ -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
java -jar build/libs/AppShark-0.1.1-all.jar config/config.json5
2 changes: 1 addition & 1 deletion src/main/kotlin/net/bytedance/security/app/EngineInfo.kt
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ package net.bytedance.security.app

object EngineInfo {
//version info
const val Version = "0.1"
const val Version = "0.1.1"
}

0 comments on commit 2b6bf7c

Please sign in to comment.