forked from hacklcx/HFish
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
46 changed files
with
3,957 additions
and
217 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,52 @@ | ||
[rpc] | ||
status = 1 # 是否启动 0 关闭 1服务端 2客户端 | ||
addr = 127.0.0.1:7879 # RPC 服务端地址 | ||
name = Server # 1 服务端 名称 2 客户端 名称 | ||
|
||
[admin] | ||
addr = 127.0.0.1:9001 # 管理后台启动地址 | ||
account = admin # 登录账号 | ||
password = admin # 登录密码 | ||
|
||
[api] | ||
status = 1 # 是否启动 API 1 启动 0 关闭 | ||
url = /api/v1/post/report # 管理后台启动地址 | ||
web_url = /api/v1/post/report # 管理后台启动地址 | ||
deep_url = /api/v1/post/deep_report # 管理后台启动地址 | ||
sec_key = 9cbf8a4dcb8e30682b927f352d6559a0 # API 认证秘钥 | ||
|
||
[web] | ||
status = 1 # 是否启动 WEB 1 启动 0 关闭, 启动 API 后 WEB 方可上报结果 | ||
addr = 0.0.0.0:9000 # WEB 启动地址,0.0.0.0 对外开放,127.0.0.1 对内开放 可走 Nginx 反向代理 | ||
status = 0 # 是否启动 WEB 1 启动 0 关闭, 启动 API 后 WEB 方可上报结果 | ||
addr = 0.0.0.0:9010 # WEB 启动地址,0.0.0.0 对外开放,127.0.0.1 对内开放 可走 Nginx 反向代理 | ||
template = wordPress/html # WEB 模板路径 | ||
index = index.html # WEB 首页文件 | ||
static = wordPress/static # WEB 静态文件路径 注意:必须存在两个目录,html 文件 和静态文件 不能平级 | ||
url = / # WEB 访问目录,默认 / 可更改成 index.html index.asp index.php | ||
|
||
[dark_net] | ||
[deep] | ||
status = 0 # 是否启动 暗网 1 启动 0 关闭, 启动 API 后 方可上报结果 | ||
addr = 0.0.0.0:9002 # 暗网 WEB 启动地址 | ||
template = github/html # 暗网 WEB 模板路径 | ||
static = github/static # 暗网 WEB 静态文件路径 注意:必须存在两个目录,html 文件 和静态文件 不能平级 | ||
addr = 0.0.0.0:9012 # 暗网 WEB 启动地址 | ||
template = deep/html # 暗网 WEB 模板路径 | ||
index = index.html # 暗网 WEB 首页文件 | ||
static = deep/static # 暗网 WEB 静态文件路径 注意:必须存在两个目录,html 文件 和静态文件 不能平级 | ||
url = / # 暗网 WEB 访问目录,默认 / 可更改成 index.html index.asp index.php | ||
|
||
[ssh] | ||
status = 1 # 是否启动 SSH 1 启动 0 关闭 | ||
addr = 0.0.0.0:22 # SSH 服务端地址 注意端口冲突,请先关闭服务器 openssh 服务 或 修改端口 | ||
status = 0 # 是否启动 SSH 1 启动 0 关闭 | ||
addr = 0.0.0.0:26 # SSH 服务端地址 注意端口冲突,请先关闭服务器 openssh 服务 或 修改端口 | ||
|
||
[redis] | ||
status = 1 # 是否启动 Redis 1 启动 0 关闭 | ||
addr = 0.0.0.0:6379 # Redis 服务端地址 注意端口冲突 | ||
status = 0 # 是否启动 Redis 1 启动 0 关闭 | ||
addr = 0.0.0.0:6374 # Redis 服务端地址 注意端口冲突 | ||
|
||
[mysql] | ||
status = 1 # 是否启动 Mysql 1 启动 0 关闭 | ||
addr = 0.0.0.0:3306 # Mysql 服务端地址 注意端口冲突 | ||
status = 0 # 是否启动 Mysql 1 启动 0 关闭 | ||
addr = 0.0.0.0:3304 # Mysql 服务端地址 注意端口冲突 | ||
files = /etc/passwd,/etc/group # Mysql 服务端读取客户端任意文件; 多写逗号分隔,会随机取 | ||
|
||
[http] | ||
status = 0 # 是否启动 HTTP 正向代理 1 启动 0 关闭 | ||
addr = 0.0.0.0:7878 # HTTP 服务端地址 注意端口冲突 | ||
addr = 0.0.0.0:7871 # HTTP 正向代理 服务端地址 注意端口冲突 | ||
|
||
[telnet] | ||
status = 0 # 是否启动 Telnet 1 启动 0 关闭 | ||
addr = 0.0.0.0:24 # Telnet 服务端地址 注意端口冲突 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.