Some checks failed
Tests / Go Tests (push) Has been cancelled
Tests / Python Tests (push) Has been cancelled
Tests / Integration Tests (push) Has been cancelled
Tests / Go Lint (push) Has been cancelled
Tests / Python Lint (push) Has been cancelled
Tests / Security Scan (push) Has been cancelled
Tests / All Checks Passed (push) Has been cancelled
Security Scanning / Secret Scanning (push) Has been cancelled
Security Scanning / Dependency Vulnerability Scan (push) Has been cancelled
Security Scanning / Go Security Scan (push) Has been cancelled
Security Scanning / Python Security Scan (push) Has been cancelled
Security Scanning / Node.js Security Scan (push) Has been cancelled
Security Scanning / Docker Image Security (push) Has been cancelled
Security Scanning / Security Summary (push) Has been cancelled
CI/CD Pipeline / Go Tests (push) Has been cancelled
CI/CD Pipeline / Python Tests (push) Has been cancelled
CI/CD Pipeline / Website Tests (push) Has been cancelled
CI/CD Pipeline / Linting (push) Has been cancelled
CI/CD Pipeline / Security Scan (push) Has been cancelled
CI/CD Pipeline / Docker Build & Push (push) Has been cancelled
CI/CD Pipeline / Integration Tests (push) Has been cancelled
CI/CD Pipeline / Deploy to Staging (push) Has been cancelled
CI/CD Pipeline / Deploy to Production (push) Has been cancelled
CI/CD Pipeline / CI Summary (push) Has been cancelled
ci/woodpecker/manual/build-ci-image Pipeline was successful
ci/woodpecker/manual/main Pipeline failed
All services: admin-v2, studio-v2, website, ai-compliance-sdk, consent-service, klausur-service, voice-service, and infrastructure. Large PDFs and compiled binaries excluded via .gitignore.
97 lines
2.4 KiB
Go
97 lines
2.4 KiB
Go
// BreakPilot Compliance SDK - Security Scanner Service
|
|
//
|
|
// Orchestrates security scanning tools and aggregates results.
|
|
|
|
package main
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
"os"
|
|
"os/signal"
|
|
"syscall"
|
|
"time"
|
|
|
|
"github.com/breakpilot/compliance-sdk/services/security-scanner/internal/api"
|
|
"github.com/breakpilot/compliance-sdk/services/security-scanner/internal/scanner"
|
|
"github.com/gin-gonic/gin"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
func main() {
|
|
logger, _ := zap.NewProduction()
|
|
defer logger.Sync()
|
|
|
|
// Initialize scanner manager
|
|
scannerManager := scanner.NewManager(logger)
|
|
|
|
if os.Getenv("ENVIRONMENT") == "production" {
|
|
gin.SetMode(gin.ReleaseMode)
|
|
}
|
|
|
|
router := gin.New()
|
|
router.Use(gin.Recovery())
|
|
|
|
// Health check
|
|
router.GET("/health", func(c *gin.Context) {
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"status": "healthy",
|
|
"service": "security-scanner",
|
|
"tools": scannerManager.AvailableTools(),
|
|
})
|
|
})
|
|
|
|
// API routes
|
|
v1 := router.Group("/api/v1")
|
|
{
|
|
// Scanning
|
|
v1.POST("/scan", api.StartScan(scannerManager))
|
|
v1.GET("/scan/:scanId", api.GetScanStatus(scannerManager))
|
|
v1.GET("/scan/:scanId/results", api.GetScanResults(scannerManager))
|
|
|
|
// Findings
|
|
v1.GET("/findings", api.GetFindings(scannerManager))
|
|
v1.GET("/findings/:findingId", api.GetFinding(scannerManager))
|
|
v1.PUT("/findings/:findingId/status", api.UpdateFindingStatus(scannerManager))
|
|
|
|
// SBOM
|
|
v1.POST("/sbom/generate", api.GenerateSBOM(scannerManager))
|
|
v1.GET("/sbom/:sbomId", api.GetSBOM(scannerManager))
|
|
v1.GET("/sbom/:sbomId/export/:format", api.ExportSBOM(scannerManager))
|
|
|
|
// Recommendations
|
|
v1.GET("/recommendations", api.GetRecommendations(scannerManager))
|
|
|
|
// Tool status
|
|
v1.GET("/tools", api.GetToolsStatus(scannerManager))
|
|
}
|
|
|
|
port := os.Getenv("PORT")
|
|
if port == "" {
|
|
port = "8083"
|
|
}
|
|
|
|
srv := &http.Server{
|
|
Addr: ":" + port,
|
|
Handler: router,
|
|
ReadTimeout: 15 * time.Second,
|
|
WriteTimeout: 300 * time.Second, // Long timeout for scans
|
|
}
|
|
|
|
go func() {
|
|
logger.Info("Starting Security Scanner", zap.String("port", port))
|
|
if err := srv.ListenAndServe(); err != nil && err != http.ErrServerClosed {
|
|
logger.Fatal("Failed to start server", zap.Error(err))
|
|
}
|
|
}()
|
|
|
|
quit := make(chan os.Signal, 1)
|
|
signal.Notify(quit, syscall.SIGINT, syscall.SIGTERM)
|
|
<-quit
|
|
|
|
logger.Info("Shutting down...")
|
|
ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
|
|
defer cancel()
|
|
srv.Shutdown(ctx)
|
|
}
|