├── Dockerfile ├── Dockerfile.client ├── Dockerfile.ginweb ├── README.md ├── cache └── cache.go ├── client └── client.go ├── database └── database.go ├── docker-compose.yml ├── go.mod ├── go.sum ├── main.go ├── server └── server.go ├── service.proto ├── vulnerability ├── service.pb.go ├── service.pb.micro.go └── service_grpc.pb.go └── web └── web.go /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackerRoo/Distributed-Vulnerability-Detection-Powered-by-Go-and-Large-Models/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackerRoo/Distributed-Vulnerability-Detection-Powered-by-Go-and-Large-Models/HEAD/Dockerfile.client -------------------------------------------------------------------------------- /Dockerfile.ginweb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackerRoo/Distributed-Vulnerability-Detection-Powered-by-Go-and-Large-Models/HEAD/Dockerfile.ginweb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackerRoo/Distributed-Vulnerability-Detection-Powered-by-Go-and-Large-Models/HEAD/README.md -------------------------------------------------------------------------------- /cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackerRoo/Distributed-Vulnerability-Detection-Powered-by-Go-and-Large-Models/HEAD/cache/cache.go -------------------------------------------------------------------------------- /client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackerRoo/Distributed-Vulnerability-Detection-Powered-by-Go-and-Large-Models/HEAD/client/client.go -------------------------------------------------------------------------------- /database/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackerRoo/Distributed-Vulnerability-Detection-Powered-by-Go-and-Large-Models/HEAD/database/database.go -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackerRoo/Distributed-Vulnerability-Detection-Powered-by-Go-and-Large-Models/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackerRoo/Distributed-Vulnerability-Detection-Powered-by-Go-and-Large-Models/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackerRoo/Distributed-Vulnerability-Detection-Powered-by-Go-and-Large-Models/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackerRoo/Distributed-Vulnerability-Detection-Powered-by-Go-and-Large-Models/HEAD/main.go -------------------------------------------------------------------------------- /server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackerRoo/Distributed-Vulnerability-Detection-Powered-by-Go-and-Large-Models/HEAD/server/server.go -------------------------------------------------------------------------------- /service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackerRoo/Distributed-Vulnerability-Detection-Powered-by-Go-and-Large-Models/HEAD/service.proto -------------------------------------------------------------------------------- /vulnerability/service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackerRoo/Distributed-Vulnerability-Detection-Powered-by-Go-and-Large-Models/HEAD/vulnerability/service.pb.go -------------------------------------------------------------------------------- /vulnerability/service.pb.micro.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackerRoo/Distributed-Vulnerability-Detection-Powered-by-Go-and-Large-Models/HEAD/vulnerability/service.pb.micro.go -------------------------------------------------------------------------------- /vulnerability/service_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackerRoo/Distributed-Vulnerability-Detection-Powered-by-Go-and-Large-Models/HEAD/vulnerability/service_grpc.pb.go -------------------------------------------------------------------------------- /web/web.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackerRoo/Distributed-Vulnerability-Detection-Powered-by-Go-and-Large-Models/HEAD/web/web.go --------------------------------------------------------------------------------