Skip to content

Commit

Permalink
adding an event on unexpected_k8s_nodeport_connection
Browse files Browse the repository at this point in the history
Signed-off-by: h4l0gen <[email protected]>

adding an event on unexpected_k8s_nodeport_connection

Signed-off-by: h4l0gen <[email protected]>

final

Signed-off-by: h4l0gen <[email protected]>
  • Loading branch information
h4l0gen committed Apr 23, 2024
1 parent 31789dc commit 0e969b6
Show file tree
Hide file tree
Showing 2 changed files with 103 additions and 0 deletions.
53 changes: 53 additions & 0 deletions events/syscall/unexpected_k8s_nodeport_connection.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
// SPDX-License-Identifier: Apache-2.0
/*
Copyright (C) 2024 The Falco Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package syscall

import (
"fmt"
"github.com/falcosecurity/event-generator/events"
"net"
)

var _ = events.Register(
UnexpectedK8sNodePortConnection,
events.WithDisabled(), // this rule is not included in falco_rules.yaml (stable rules), so disable the action
)

func UnexpectedK8sNodePortConnection(h events.Helper) error {
if h.InContainer() {
port := 31000

// Get the IP address of the "eth0" interface
hostIP, err := getHostEth0IP()
if err != nil {
return err
}

addr, err := net.ResolveUDPAddr("udp", fmt.Sprintf("%s:%d", hostIP, port))
if err != nil {
return err
}

// Establish a UDP connection to the address

conn, err := net.DialUDP("udp", nil, addr)
if err != nil {
return err
}
defer conn.Close() // Close the connection when the function returns
}
return &events.ErrSkipped{
Reason: "'Unexpected k8s Nodeport connection' is applicable only to containers.",
}
}
50 changes: 50 additions & 0 deletions events/syscall/utils_net.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
//go:build linux
// +build linux

// SPDX-License-Identifier: Apache-2.0
/*
Copyright (C) 2023 The Falco Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package syscall

import (
"errors"
"net"
)

func getHostEth0IP() (string, error) {
ifaces, err := net.Interfaces()
if err != nil {
return "", err
}

for _, iface := range ifaces {
if iface.Name == "eth0" {
addrs, err := iface.Addrs()
if err != nil {
return "", err
}

for _, addr := range addrs {
ipnet, ok := addr.(*net.IPNet)
if ok && !ipnet.IP.IsLoopback() {
if ipnet.IP.To4() != nil {
return ipnet.IP.String(), nil
}
}
}
}
}

return "", errors.New("eth0 interface not found or has no valid IPv4 address")
}

0 comments on commit 0e969b6

Please sign in to comment.