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

adding an event on unexpected_k8s_nodeport_connection #199

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
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" {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does this need to be eth0? Can't we just return first actually connected interface?

Side note: systemd implements predictable network interafce names since ages and most of the time eth0 won't be present on a system.
See https://www.freedesktop.org/wiki/Software/systemd/PredictableNetworkInterfaceNames/.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes fedeDP, according to article this seems a problem. I will try to implement suggested solution.

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")
}