Skip to content

Commit

Permalink
feat: release v1.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
zema1 committed Dec 25, 2023
1 parent 27ce92f commit 805d20d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
15 changes: 12 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
## v1.5.2 (2023.12.19)
## v1.5.4 (2023.12.25)

## 变更

- 允许通过指定 url 的方式发送到私有部署的飞书服务

## 新增

- 增加 [Struts2](https://cwiki.apache.org/confluence/display/WW/Security+Bulletins) 漏洞数据源抓取,感谢 [@hi-unc1e](https://github.com/hi-unc1e) 贡献
## v1.5.3 (2023.12.19)

## 新增

- 增加 [Struts2](https://cwiki.apache.org/confluence/display/WW/Security+Bulletins)
漏洞数据源抓取,感谢 [@hi-unc1e](https://github.com/hi-unc1e) 贡献
- 支持配置代理,通过命令行 `-x` 或者环境变量 `HTTPS_PROXY` 指定 [#59](https://github.com/zema1/watchvuln/issues/59)
- `-x socks5://user:[email protected]`
- `-x http(s)://127.0.0.1111`

## 修复

- 修复奇安信接口失效问题
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Docker 方式推荐使用环境变量来配置服务参数
| `DB_CONN` | 数据库链接字符串,详情见 [数据库连接](#数据库连接) | `sqlite3://vuln_v3.sqlite3` |
| `DINGDING_ACCESS_TOKEN` | 钉钉机器人 url 的 `access_token` 部分 | |
| `DINGDING_SECRET` | 钉钉机器人的加签值 (仅支持加签方式) | |
| `LARK_ACCESS_TOKEN` | 飞书机器人 url 的 `/open-apis/bot/v2/hook/` 后的部分 | |
| `LARK_ACCESS_TOKEN` | 飞书机器人 url 的 `/open-apis/bot/v2/hook/` 后的部分, 也支持直接指定完整的 url 来访问私有部署的飞书 | |
| `LARK_SECRET` | 飞书机器人的加签值 (仅支持加签方式) | |
| `WECHATWORK_KEY ` | 微信机器人 url 的 `key` 部分 | |
| `SERVERCHAN_KEY ` | Server酱的 `SCKEY` | |
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
)

var log = golog.Child("[main]")
var Version = "v1.5.3"
var Version = "v1.5.4"

func main() {
golog.Default.SetLevel("info")
Expand Down

0 comments on commit 805d20d

Please sign in to comment.