b8788c239e
MCP Docker / build-and-push (push) Has been cancelled
- Remove telemetry: disabled all phone-home (installation notify, false positives, behavior tracking, upgrade tips) - Version branding: removed 'ce-' prefix, product name changed to '长亭雷池 WAF' - Detection engine enhancement: strict preset enables all 17 modules with aggressive configs - Multi-user RBAC: admin/operator/viewer roles with password + TOTP 2FA - Rate limiting: nginx limit_req per website (RPS, burst, action) - JS Challenge: browser fingerprint verification page with cookie-based bypass - Security fixes: removed InsecureSkipVerify, hardcoded credentials, NO_AUTH backdoor
63 lines
1.6 KiB
Markdown
63 lines
1.6 KiB
Markdown
# Web Server
|
|
|
|
web server for mgt-api
|
|
|
|
## Requirements
|
|
|
|
Go 1.18+
|
|
|
|
## Development
|
|
|
|
### Init protobuf
|
|
|
|
```shell
|
|
# Refer: https://grpc.io/docs/languages/go/quickstart/
|
|
# 1. Install protoc
|
|
# https://grpc.io/docs/protoc-installation/
|
|
|
|
# 2. Install Go plugins
|
|
go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.30.0
|
|
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.3.0
|
|
|
|
# 3. Update your PATH so that the protoc compiler can find the plugins
|
|
# export PATH="$PATH:$(go env GOPATH)/bin"
|
|
|
|
# 4. Generate proto go code
|
|
# cd /path/to/management
|
|
./scripts/genproto.sh
|
|
```
|
|
|
|
### Init fvm libs
|
|
|
|
```shell
|
|
# Due to the fvm c header files
|
|
mkdir -p management/webserver/submodule/fvm/
|
|
mkdir -p management/webserver/submodule/libct/
|
|
|
|
cd management/webserver/submodule/fvm/
|
|
# Download https://chaitin.cn/patronus/fvm/-/tags 1.8.21 release:release, https://chaitin.cn/patronus/fvm/-/jobs/6716645
|
|
unzip artifacts.zip
|
|
rm artifacts.zip
|
|
|
|
cd management/webserver/submodule/libct/
|
|
# Download https://chaitin.cn/patronus/libct/-/tags 1.1.1.0 release, https://chaitin.cn/patronus/libct/-/jobs/7229201
|
|
# rename
|
|
rm artifacts.zip
|
|
|
|
cd management/webserver/submodule/
|
|
# Download https://chaitin.cn/patronus/fusion-2/-/tags 5.3.9-r1 build:release, https://chaitin.cn/patronus/fusion-2/-/jobs/7326007
|
|
# rename
|
|
unzip artifacts.zip
|
|
mv artifacts/lib/libfusion.so libfvm.so
|
|
rm artifacts.zip
|
|
rm -r artifacts/
|
|
```
|
|
|
|
### Build
|
|
|
|
```shell
|
|
cd management/
|
|
docker run -it --rm -w="/mnt" --mount type=bind,source="$(pwd)",target=/mnt chaitin.cn/ci/golang:1.18 bash
|
|
cp webserver/submodule/libfvm.so /usr/lib/
|
|
make build-webserver
|
|
``` |