├── .gitignore ├── Dockerfile ├── README.md ├── api ├── fish.pb.go ├── fish.proto ├── fish_grpc.pb.go └── gen.bat ├── config.yaml ├── config └── config.go ├── docker-compose.yml ├── go.mod ├── go.sum ├── img ├── img.png ├── img_1.png ├── img_10.png ├── img_11.png ├── img_12.png ├── img_13.png ├── img_14.png ├── img_15.png ├── img_16.png ├── img_2.png ├── img_3.png ├── img_4.png ├── img_5.png ├── img_6.png ├── img_7.png ├── img_8.png └── img_9.png ├── main.go ├── pkg ├── database │ └── database.go ├── file │ └── file.go ├── log │ └── logrus.go ├── mail │ └── mail.go ├── model │ ├── agent.go │ ├── common │ │ └── alive.go │ ├── message.go │ ├── request │ │ └── request.go │ ├── response │ │ ├── common.go │ │ └── response.go │ ├── task.go │ └── user.go └── utils │ ├── crypto.go │ └── file.go ├── server ├── grpc.go └── web.go ├── service └── service.go ├── template ├── agent.exe └── agent.go └── 无害化钓鱼_http.openapi.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/README.md -------------------------------------------------------------------------------- /api/fish.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/api/fish.pb.go -------------------------------------------------------------------------------- /api/fish.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/api/fish.proto -------------------------------------------------------------------------------- /api/fish_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/api/fish_grpc.pb.go -------------------------------------------------------------------------------- /api/gen.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/api/gen.bat -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/config.yaml -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/config/config.go -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/go.sum -------------------------------------------------------------------------------- /img/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/img/img.png -------------------------------------------------------------------------------- /img/img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/img/img_1.png -------------------------------------------------------------------------------- /img/img_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/img/img_10.png -------------------------------------------------------------------------------- /img/img_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/img/img_11.png -------------------------------------------------------------------------------- /img/img_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/img/img_12.png -------------------------------------------------------------------------------- /img/img_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/img/img_13.png -------------------------------------------------------------------------------- /img/img_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/img/img_14.png -------------------------------------------------------------------------------- /img/img_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/img/img_15.png -------------------------------------------------------------------------------- /img/img_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/img/img_16.png -------------------------------------------------------------------------------- /img/img_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/img/img_2.png -------------------------------------------------------------------------------- /img/img_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/img/img_3.png -------------------------------------------------------------------------------- /img/img_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/img/img_4.png -------------------------------------------------------------------------------- /img/img_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/img/img_5.png -------------------------------------------------------------------------------- /img/img_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/img/img_6.png -------------------------------------------------------------------------------- /img/img_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/img/img_7.png -------------------------------------------------------------------------------- /img/img_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/img/img_8.png -------------------------------------------------------------------------------- /img/img_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/img/img_9.png -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/main.go -------------------------------------------------------------------------------- /pkg/database/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/pkg/database/database.go -------------------------------------------------------------------------------- /pkg/file/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/pkg/file/file.go -------------------------------------------------------------------------------- /pkg/log/logrus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/pkg/log/logrus.go -------------------------------------------------------------------------------- /pkg/mail/mail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/pkg/mail/mail.go -------------------------------------------------------------------------------- /pkg/model/agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/pkg/model/agent.go -------------------------------------------------------------------------------- /pkg/model/common/alive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/pkg/model/common/alive.go -------------------------------------------------------------------------------- /pkg/model/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/pkg/model/message.go -------------------------------------------------------------------------------- /pkg/model/request/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/pkg/model/request/request.go -------------------------------------------------------------------------------- /pkg/model/response/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/pkg/model/response/common.go -------------------------------------------------------------------------------- /pkg/model/response/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/pkg/model/response/response.go -------------------------------------------------------------------------------- /pkg/model/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/pkg/model/task.go -------------------------------------------------------------------------------- /pkg/model/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/pkg/model/user.go -------------------------------------------------------------------------------- /pkg/utils/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/pkg/utils/crypto.go -------------------------------------------------------------------------------- /pkg/utils/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/pkg/utils/file.go -------------------------------------------------------------------------------- /server/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/server/grpc.go -------------------------------------------------------------------------------- /server/web.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/server/web.go -------------------------------------------------------------------------------- /service/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/service/service.go -------------------------------------------------------------------------------- /template/agent.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/template/agent.exe -------------------------------------------------------------------------------- /template/agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/template/agent.go -------------------------------------------------------------------------------- /无害化钓鱼_http.openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pow1e/pfish/HEAD/无害化钓鱼_http.openapi.json --------------------------------------------------------------------------------