1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
|
package source
import (
"slices"
"strings"
"testing"
"time"
"github.com/pranshuparmar/witr/pkg/model"
)
func TestWarningsDetectsLDPreload(t *testing.T) {
p := []model.Process{
{PID: 999999, Command: "pm2", Cmdline: "pm2"},
{
PID: 123,
Command: "bash",
StartedAt: time.Now(),
User: "bob",
WorkingDir: "/home/bob",
Env: []string{"LD_PRELOAD=/tmp/libhack.so"},
},
}
warnings := Warnings(p)
if !slices.Contains(warnings, "Process sets LD_PRELOAD (potential library injection)") {
t.Fatalf("expected LD_PRELOAD warning, got: %v", warnings)
}
}
func TestWarningsDetectsDYLDVars(t *testing.T) {
p := []model.Process{
{PID: 999999, Command: "pm2", Cmdline: "pm2"},
{
PID: 123,
Command: "zsh",
StartedAt: time.Now(),
User: "bob",
WorkingDir: "/home/bob",
Env: []string{
"DYLD_LIBRARY_PATH=/tmp",
"DYLD_INSERT_LIBRARIES=/tmp/inject.dylib",
},
},
}
warnings := Warnings(p)
want := "Process sets DYLD_* variables (potential library injection): DYLD_INSERT_LIBRARIES, DYLD_LIBRARY_PATH"
if !slices.Contains(warnings, want) {
t.Fatalf("expected DYLD warning %q, got: %v", want, warnings)
}
}
func TestWarningsIgnoresEmptyPreloadVars(t *testing.T) {
p := []model.Process{
{PID: 999999, Command: "pm2", Cmdline: "pm2"},
{
PID: 123,
Command: "zsh",
StartedAt: time.Now(),
User: "bob",
WorkingDir: "/home/bob",
Env: []string{
"LD_PRELOAD=",
"DYLD_INSERT_LIBRARIES=",
},
},
}
warnings := Warnings(p)
if slices.Contains(warnings, "Process sets LD_PRELOAD (potential library injection)") {
t.Fatalf("did not expect LD_PRELOAD warning, got: %v", warnings)
}
if slices.Contains(warnings, "Process sets DYLD_* variables (potential library injection): DYLD_INSERT_LIBRARIES") {
t.Fatalf("did not expect DYLD warning, got: %v", warnings)
}
}
// checks if the order of env vars warnings are deterministic
func FuzzEnvSuspiciousWarningsDeterministic(f *testing.F) {
f.Add("LD_PRELOAD=/tmp/lib.so")
f.Add("DYLD_LIBRARY_PATH=/tmp\nDYLD_INSERT_LIBRARIES=/tmp/inject.dylib")
f.Add("DYLD_LIBRARY_PATH=\nLD_PRELOAD=")
f.Add("")
f.Fuzz(func(t *testing.T, input string) {
parts := strings.Split(input, "\n")
if len(parts) > 50 {
parts = parts[:50]
}
for i := range parts {
if len(parts[i]) > 200 {
parts[i] = parts[i][:200]
}
}
w1 := envSuspiciousWarnings(parts)
w2 := envSuspiciousWarnings(parts)
if !slices.Equal(w1, w2) {
t.Fatalf("expected deterministic output, got %v vs %v", w1, w2)
}
})
}
func TestEnvSuspiciousWarnings(t *testing.T) {
tests := []struct {
name string
env []string
want []string
}{
{
name: "LD_PRELOAD",
env: []string{"LD_PRELOAD=/tmp/libhack.so"},
want: []string{"Process sets LD_PRELOAD (potential library injection)"},
},
{
name: "DYLD keys sorted and deduped",
env: []string{
"DYLD_LIBRARY_PATH=/tmp",
"DYLD_INSERT_LIBRARIES=/tmp/inject.dylib",
"DYLD_LIBRARY_PATH=/tmp", // dup
},
want: []string{
"Process sets DYLD_* variables (potential library injection): DYLD_INSERT_LIBRARIES, DYLD_LIBRARY_PATH",
},
},
{
name: "ignores empty values (current behavior)",
env: []string{"LD_PRELOAD=", "DYLD_INSERT_LIBRARIES="},
want: nil,
},
{
name: "value with '=' still counts",
env: []string{"LD_PRELOAD=a=b"},
want: []string{"Process sets LD_PRELOAD (potential library injection)"},
},
{
name: "no '=' ignored",
env: []string{"LD_PRELOAD"},
want: nil,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := envSuspiciousWarnings(tt.env)
if !slices.Equal(got, tt.want) {
t.Fatalf("got %v, want %v", got, tt.want)
}
})
}
}
// attempts to cause a panic when checking for env vars
func FuzzWarningsNoPanic(f *testing.F) {
f.Add("LD_PRELOAD=/tmp/lib.so")
f.Add("DYLD_INSERT_LIBRARIES=/tmp/inject.dylib")
f.Add("NOT_AN_ENV")
f.Fuzz(func(t *testing.T, entry string) {
if len(entry) > 2000 {
entry = entry[:2000]
}
p := []model.Process{
{
PID: 123,
Command: "test",
Cmdline: "test",
StartedAt: time.Now(),
User: "bob",
WorkingDir: "/home/bob",
Env: []string{entry},
},
}
_ = Warnings(p)
})
}
func TestWarningsDetectsDeletedExecutable(t *testing.T) {
p := []model.Process{
{
PID: 123,
Command: "nginx",
StartedAt: time.Now(),
ExeDeleted: true,
},
}
warnings := Warnings(p)
want := "Process is running from a deleted binary (potential library injection or pending update)"
if !slices.Contains(warnings, want) {
t.Fatalf("expected deleted binary warning, got: %v", warnings)
}
}
func TestEnrichSocketInfo(t *testing.T) {
tests := []struct {
state string
wantExplanation string
}{
{"TIME_WAIT", "The local OS is holding the port in a protocol-wait state to ensure all packets are received."},
{"CLOSE_WAIT", "The remote end has closed the connection, but the local application hasn't responded."},
{"LISTEN", "The process is actively waiting for incoming connections."},
}
for _, tt := range tests {
si := &model.SocketInfo{State: tt.state}
EnrichSocketInfo(si)
if si.Explanation != tt.wantExplanation {
t.Errorf("state %s: got explanation %q, want %q", tt.state, si.Explanation, tt.wantExplanation)
}
}
}
|