generated from falcosecurity/template-repository
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding an event on unexpected_k8s_nodeport_connection
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
Showing
2 changed files
with
103 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.", | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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") | ||
} |