Merge branch 'master' of github.com:hacklcx/HFish

This commit is contained in:
WeiMing 2021-06-18 13:48:55 +08:00
commit d3a160fa21
3 changed files with 30 additions and 19 deletions

4
docs/_navbar.md Normal file
View File

@ -0,0 +1,4 @@
- [首页](https://hfish.io/#/)
- [下载](https://hfish.io/#/download)
- [GitHub](https://github.com/hacklcx/HFish)
- [Gitee](https://gitee.com/lauix/HFish)

View File

@ -1,6 +1,6 @@
# 下载
### HFish v2.4.0
### HFish <% version %>
```wiki
2021年6月16日发布
@ -13,20 +13,21 @@
6.修复情报页面api报错问题。
```
!> 注意如果当前使用sqlite数据库的话升级时hfish.db文件将会被覆盖导致之前的攻击记录丢失请注意进行备份。如果要将之前的db文件导入当前版本时请参考mysql.sql的语句修改db文件执行导入。
!> 注意:如果当前使用 sqlite 数据库的话升级时hfish.db 文件将会被覆盖,导致之前的攻击记录丢失,请注意进行备份。如果要将之前的 db 文件导入当前版本时,请参考 mysql.sql 的语句修改 db 文件,执行导入。
## 下载安装
### 控制端安装包
+ [HFish-Linux-amd64](http://hfish.cn-bj.ufileos.com/hfish-2.4.0-linux-amd64.tar.gz) 为 Linux x86架构64位系统使用
+ [HFish-Windows-amd64](http://hfish.cn-bj.ufileos.com/hfish-2.4.0-windows-amd64.tar.gz) 为 Windows x86架构64位系统使用
+ [HFish-Linux-arm64](http://hfish.cn-bj.ufileos.com/hfish-2.4.0-linux-arm64.tar.gz) 为 Linux Arm架构64位系统使用常见于NAS、路由器、树莓派等……
- [HFish-Linux-amd64](http://hfish.cn-bj.ufileos.com/hfish-2.4.0-linux-amd64.tar.gz) 为 Linux x86 架构 64 位系统使用
- [HFish-Windows-amd64](http://hfish.cn-bj.ufileos.com/hfish-2.4.0-windows-amd64.tar.gz) 为 Windows x86 架构 64 位系统使用
- [HFish-Linux-arm64](http://hfish.cn-bj.ufileos.com/hfish-2.4.0-linux-arm64.tar.gz) 为 Linux Arm 架构 64 位系统使用,常见于 NAS、路由器、树莓派等……
## 文件结构
```wiki
HFish
│ server #控制端文件
HFish
│ server #控制端文件
│ config.ini #控制端配置文件
│ README.md #安装使用说明
│ version #版本信息
@ -41,13 +42,13 @@ HFish
│ └───sql
│ └───mysql
│ │ V2.4.0__mysql.sql #mysql数据库用户升级文件
│ │
│ │
│ └───sqlite
│ │ V2.4.0__sqlite.sql #sqlite数据库用户升级文件
└───logs
│ │ server-年-月-日.log #server日志文件
└───packages
│ │ install.sh #节点部署时安装脚本
│ │ node_account.conf #蜜饵源文件
@ -55,13 +56,12 @@ HFish
│ └───linux-x86 #Linux 服务包
│ │ client
│ │ service-*.tar.gz
└───static #web服务预览图
│ └───services
│ └───services
│ │ ……
└───web #控制台web文件
│ │ ……
```

View File

@ -31,6 +31,10 @@
color: #ffffff;
}
.sticky nav {
color: #34495e;
}
section.cover .cover-main>p:last-child a:last-child:hover {
--theme-color: #ff5656;
}
@ -46,20 +50,22 @@
</head>
<body>
<nav>
<a href="https://hfish.io/" target="_bank">首页</a>
<a href="https://hfish.io/#/download" target="_bank">下载</a>
<a href="https://github.com/hacklcx/HFish" target="_bank">GitHub</a>
<a href="https://gitee.com/lauix/HFish" target="_bank">Gitee</a>
</nav>
<div id="app"></div>
<script>
window.$docsify = {
name: 'HFish',
loadSidebar: true,
loadNavbar: true,
mergeNavbar: true,
auto2top: true,
subMaxLevel: 2,
coverpage: true,
themeColor: '#e93636',
dv: {
model: {
version: 'v2.4.0',
}
},
search: {
paths: 'auto',
maxAge: 86400000, // 过期时间,单位毫秒,默认一天
@ -70,6 +76,7 @@
// repo: 'https://github.com/hacklcx/HFish',
}
</script>
<script src="https://cdn.jsdelivr.net/gh/yklydxtt/docsify-version@2.0.1/dv.min.js"></script>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/search.js"></script>
<script src="//unpkg.com/prismjs/components/prism-bash.js"></script>