task: add code security scan option
This commit is contained in:
parent
290e872c15
commit
d8431550f3
@ -22,6 +22,7 @@ func main() {
|
||||
taskItems := []tasks.Tasker{
|
||||
tasks.NewGenerateJwtTokenTask(config),
|
||||
tasks.NewCurlLookupTask(),
|
||||
tasks.NewCodeSecurityScanTask(),
|
||||
|
||||
tasks.NewExitTask(),
|
||||
}
|
||||
|
35
go/tasks/code_security_scan.go
Normal file
35
go/tasks/code_security_scan.go
Normal file
@ -0,0 +1,35 @@
|
||||
package tasks
|
||||
|
||||
import (
|
||||
"ocl/portainer-devtool/utils"
|
||||
)
|
||||
|
||||
type CodeSecurityScanTask struct {
|
||||
}
|
||||
|
||||
func NewCodeSecurityScanTask() *CodeSecurityScanTask {
|
||||
return &CodeSecurityScanTask{}
|
||||
}
|
||||
|
||||
func (task *CodeSecurityScanTask) Execute() error {
|
||||
utils.SuccessPrint(`
|
||||
1. Scan client with snyk: "snyk test"
|
||||
2. Scan server with snyk: "cd api && snyk test"
|
||||
3. If snyk is not authenticated: "snyk auth"
|
||||
4. Specify the severity threshold: "snyk test --severity-threshold=<low|medium|high|critical>"
|
||||
5. Other commands with snyk: "snyk --help"
|
||||
`)
|
||||
|
||||
utils.SuccessPrint(`
|
||||
Steps to scan portainer image with Trivy:
|
||||
1. Build the local image: "docker build -t oscarzhou/portainer:dev-ee -f build/linux/Dockfile ."
|
||||
2. Scan with trivy: 'docker run --rm -v "/var/run/docker.sock":"/var/run/docker.sock" aquasec/trivy:latest image oscarzhou/portainer:dev-ee'
|
||||
3. Other commands with trivy: 'docker run --rm -v "/var/run/docker.sock":"/var/run/docker.sock" aquasec/trivy:latest --help'
|
||||
`)
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (task *CodeSecurityScanTask) String() string {
|
||||
return "Code Security Scan"
|
||||
}
|
Loading…
Reference in New Issue
Block a user