Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(adapter): Update intentID to assessTLS from ensureTLS #247

Merged
merged 2 commits into from
Aug 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
apiVersion: intent.security.nimbus.com/v1alpha1
kind: SecurityIntent
metadata:
name: ensure-tls-default
name: assess-tls-default
spec:
intent:
id: ensureTLS
id: assessTLS
action: Audit
description: |
Assess the TLS configuration to ensure compliance with the security standards. This includes verifying TLS protocol version,
Expand All @@ -17,10 +17,10 @@ spec:
apiVersion: intent.security.nimbus.com/v1alpha1
kind: ClusterSecurityIntentBinding
metadata:
name: ensure-tls-default
name: assess-tls-default
spec:
intents:
- name: ensure-tls-default
- name: assess-tls-default
selector:
nsSelector:
matchNames:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
apiVersion: intent.security.nimbus.com/v1alpha1
kind: SecurityIntent
metadata:
name: ensure-tls-external-addresses
name: assess-tls-external-addresses
spec:
intent:
id: ensureTLS
id: assessTLS
action: Audit
severity: "medium"
description: |
Expand All @@ -21,10 +21,10 @@ spec:
apiVersion: intent.security.nimbus.com/v1alpha1
kind: ClusterSecurityIntentBinding
metadata:
name: ensure-tls-external-addresses
name: assess-tls-external-addresses
spec:
intents:
- name: ensure-tls-external-addresses
- name: assess-tls-external-addresses
selector:
nsSelector:
matchNames:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
apiVersion: intent.security.nimbus.com/v1alpha1
kind: SecurityIntent
metadata:
name: ensure-tls-scheduled
name: assess-tls-scheduled
spec:
intent:
id: ensureTLS
id: assessTLS
action: Audit
severity: "medium"
description: |
Expand All @@ -20,10 +20,10 @@ spec:
apiVersion: intent.security.nimbus.com/v1alpha1
kind: ClusterSecurityIntentBinding
metadata:
name: ensure-tls-scheduled
name: assess-tls-scheduled
spec:
intents:
- name: ensure-tls-scheduled
- name: assess-tls-scheduled
selector:
nsSelector:
matchNames:
Expand Down
4 changes: 2 additions & 2 deletions pkg/adapter/idpool/idpool.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const (
DisallowCapabilities = "disallowCapabilities"
ExploitPFA = "preventExecutionFromTempOrLogsFolders"
CocoWorkload = "cocoWorkload"
EnsureTLS = "ensureTLS"
AssessTLS = "assessTLS"
DenyENAccess = "denyExternalNetworkAccess"
)

Expand Down Expand Up @@ -49,7 +49,7 @@ var KyvIds = []string{

// k8tlsIds are IDs supported by k8tls.
var k8tlsIds = []string{
EnsureTLS,
AssessTLS,
}

// IsIdSupportedBy determines whether a given ID is supported by a security engine.
Expand Down
2 changes: 1 addition & 1 deletion pkg/adapter/nimbus-k8tls/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# SPDX-License-Identifier: Apache-2.0
# Copyright 2023 Authors of Nimbus

FROM golang:1.22 as builder
FROM golang:1.22 AS builder
ARG TARGETOS
ARG TARGETARCH

Expand Down
34 changes: 18 additions & 16 deletions pkg/adapter/nimbus-k8tls/builder/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,20 @@ import (
"strconv"
"strings"

"github.com/5GSEC/nimbus/api/v1alpha1"
"github.com/5GSEC/nimbus/pkg/adapter/common"
"github.com/5GSEC/nimbus/pkg/adapter/idpool"
batchv1 "k8s.io/api/batch/v1"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"sigs.k8s.io/controller-runtime/pkg/client"
"sigs.k8s.io/controller-runtime/pkg/log"

"github.com/5GSEC/nimbus/api/v1alpha1"
"github.com/5GSEC/nimbus/pkg/adapter/common"
"github.com/5GSEC/nimbus/pkg/adapter/idpool"
)

var (
DefaultSchedule = "@weekly"
backOffLimit = int32(5)
backOffLimit = int32(5)
)

func BuildCronJob(ctx context.Context, cwnp v1alpha1.ClusterNimbusPolicy) (*batchv1.CronJob, *corev1.ConfigMap) {
Expand All @@ -45,29 +46,29 @@ func BuildCronJob(ctx context.Context, cwnp v1alpha1.ClusterNimbusPolicy) (*batc

func cronJobFor(ctx context.Context, id string, rule v1alpha1.NimbusRules) (*batchv1.CronJob, *corev1.ConfigMap) {
switch id {
case idpool.EnsureTLS:
return ensureTlsCronJob(ctx, rule)
case idpool.AssessTLS:
return assessTlsCronJob(ctx, rule)
default:
return nil, nil
}
}

func ensureTlsCronJob(ctx context.Context, rule v1alpha1.NimbusRules) (*batchv1.CronJob, *corev1.ConfigMap) {
func assessTlsCronJob(ctx context.Context, rule v1alpha1.NimbusRules) (*batchv1.CronJob, *corev1.ConfigMap) {
schedule, scheduleKeyExists := rule.Rule.Params["schedule"]
externalAddresses, addrKeyExists := rule.Rule.Params["external_addresses"]
if scheduleKeyExists && addrKeyExists {
return cronJobForEnsureTls(ctx, schedule[0], externalAddresses...)
return cronJobForAssessTls(ctx, schedule[0], externalAddresses...)
}
if scheduleKeyExists {
return cronJobForEnsureTls(ctx, schedule[0])
return cronJobForAssessTls(ctx, schedule[0])
}
if addrKeyExists {
return cronJobForEnsureTls(ctx, DefaultSchedule, externalAddresses...)
return cronJobForAssessTls(ctx, DefaultSchedule, externalAddresses...)
}
return cronJobForEnsureTls(ctx, DefaultSchedule)
return cronJobForAssessTls(ctx, DefaultSchedule)
}

func cronJobForEnsureTls(ctx context.Context, schedule string, externalAddresses ...string) (*batchv1.CronJob, *corev1.ConfigMap) {
func cronJobForAssessTls(ctx context.Context, schedule string, externalAddresses ...string) (*batchv1.CronJob, *corev1.ConfigMap) {
logger := log.FromContext(ctx)
cj := &batchv1.CronJob{
Spec: batchv1.CronJobSpec{
Expand Down Expand Up @@ -183,7 +184,7 @@ func cronJobForEnsureTls(ctx context.Context, schedule string, externalAddresses
if len(externalAddresses) > 0 {
cm := buildConfigMap(externalAddresses)

cj.Spec.JobTemplate.Spec.Template.Spec.Containers[0].VolumeMounts = append(cj.Spec.JobTemplate.Spec.Template.Spec.Containers[0].VolumeMounts, corev1.VolumeMount{
cj.Spec.JobTemplate.Spec.Template.Spec.InitContainers[0].VolumeMounts = append(cj.Spec.JobTemplate.Spec.Template.Spec.InitContainers[0].VolumeMounts, corev1.VolumeMount{
Name: cm.Name,
ReadOnly: true,
MountPath: "/var/k8tls/",
Expand All @@ -199,10 +200,11 @@ func cronJobForEnsureTls(ctx context.Context, schedule string, externalAddresses
},
})

cj.Spec.JobTemplate.Spec.Template.Spec.Containers[0].Command[0] = "./tlsscan"
cj.Spec.JobTemplate.Spec.Template.Spec.Containers[0].Command = append(cj.Spec.JobTemplate.Spec.Template.Spec.Containers[0].Command,
cj.Spec.JobTemplate.Spec.Template.Spec.InitContainers[0].Command[0] = "./tlsscan"
cj.Spec.JobTemplate.Spec.Template.Spec.InitContainers[0].Command = append(cj.Spec.JobTemplate.Spec.Template.Spec.InitContainers[0].Command,
"--infile",
cj.Spec.JobTemplate.Spec.Template.Spec.Containers[0].VolumeMounts[2].MountPath+"addresses",
cj.Spec.JobTemplate.Spec.Template.Spec.InitContainers[0].VolumeMounts[2].MountPath+"addresses",
"--compact-json",
)
return cj, cm
}
Expand Down
Loading