Close Open Privacy Scan

bolt Snapshot: commit 90e0dd2
science engine v1.5
schedule 2026-07-16T02:15:16.284411+00:00

verified_user No application data leak found

No high-confidence exfiltration was found in application code. Dependency data flows are listed separately and do not affect this verdict.

smart_toy MCP server detected: github.com/mark3labs/mcp-go — detected in dependencies, not a safety judgment.

App Privacy Score

72 /100
Medium privacy risk

Medium risk · 1981 finding(s)

Dependency score: 0 (High risk)

bar_chart Score Breakdown

telemetry −25
env_fs −3

list Scan Summary

2 high 53 medium 1926 low
First-party packages: 1
Dependency packages: 64
Ecosystem: go

swap_horiz Application data flows

No application data flows were found. See dependency data flows below.

hub Dependency data flows (3)
high github.com/minio/minio-go/v7 dependency User/PII-bearing data read from the environment or filesystem flows to an external network call. This is potential data exfiltration.
pkgs/go/[email protected]/functional_tests.go:13775 pkgs/go/[email protected]/functional_tests.go:14422
high cloud.google.com/go/compute/metadata dependency User/PII-bearing data read from the environment or filesystem flows to an external network call. This is potential data exfiltration.
pkgs/go/[email protected]/metadata.go:519 pkgs/go/[email protected]/metadata.go:530
medium google.golang.org/protobuf dependency PII-bearing data is written to a log/print sink. Logged PII is a privacy concern even when it does not leave the process.
pkgs/go/[email protected]/internal/cmd/generate-protos/main.go:520 pkgs/go/[email protected]/internal/cmd/generate-protos/main.go:523

</> First-Party Code

first-party (python)

go first-party
medium telemetry production #8a2c872f9d20ac0f Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
repo/adapters/handlers/rest/configure_api.go:272
		err := sentry.Init(sentry.ClientOptions{
			// Setup related config
			Dsn:         appState.ServerConfig.Config.Sentry.DSN,
			Debug:       appState.ServerConfig.Config.Sentry.Debug,
			Release:     "weaviate-core@" + build.Version,
			Environment: appState.ServerConfig.Config.Sentry.Environment,
			// Enable tracing if requested
			EnableTracing:    !appState.ServerConfig.Config.Sentry.TracingDisabled,
			AttachStacktrace: true,
			// Sample rates based on the config
			SampleRate:         appState.ServerConfig.Config.Sentry.ErrorSampleRate,
			ProfilesSampleRate: appState.ServerConfig.Config.Sentry.ProfileSampleRate,
			TracesSampler: sentry.TracesSampler(func(ctx sentry.SamplingContext) float64 {
				// Inherit decision from parent transaction (if any) if it is sampled or not
				if ctx.Parent != nil && ctx.Parent.Sampled != sentry.SampledUndefined {
					return 1.0
				}

				// Filter out uneeded traces
				switch ctx.Span.Name {
				// We are not interested in traces related to metrics endpoint
				case "GET /metrics":
				// These are some usual internet bot that will spam the server. Won't catch them all but we can reduce
				// the number a bit
				case "GET /favicon.ico":
				case "GET /t4":
				case "GET /ab2g":
				case "PRI *":
				case "GET /api/sonicos/tfa":
				case "GET /RDWeb/Pages/en-US/login.aspx":
				case "GET /_profiler/phpinfo":
				case "POST /wsman":
				case "POST /dns-query":
				case "GET /dns-query":
					return 0.0
				}

				// Filter out graphql queries, currently we have no context intrumentation around it and it's therefore
				// just a blank line with 0 info except graphql resolve -> do -> return.
				if ctx.Span.Name == "POST /v1/graphql" {
					return 0.0
				}

				// Return the configured sample rate otherwise
				return appState.ServerConfig.Config.Sentry.TracesSampleRate
			}),
		})

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry production #aaa8b17f13005b16 Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
repo/adapters/repos/db/shard_init.go:116
			entsentry.CaptureException(err)

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry production #a311f1ce08500e6c Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
repo/adapters/repos/db/shard_read.go:672
						entsentry.CaptureException(err)

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry production #12b747455597e9ec Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
repo/adapters/repos/db/shard_read.go:683
						entsentry.CaptureException(err)

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry production #431df07469ac8e64 Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
repo/adapters/repos/db/shard_read.go:699
						entsentry.CaptureException(fmt.Errorf("collection %q shard %q: %w",
							s.index.Config.ClassName, s.name, err))

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry production #c14b92c676e60094 Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
repo/adapters/repos/db/shard_read.go:711
						entsentry.CaptureException(fmt.Errorf("collection %q shard %q: %w",
							s.index.Config.ClassName, s.name, err))

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry production #84acc39673579bae Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
repo/entities/sentry/errors.go:31
	libsentry.CaptureException(err)

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

expand_more 552 low-confidence finding(s)
low env_fs production #390890f0d9302b44 Environment-variable access.
repo/adapters/handlers/graphql/local/aggregate/hybrid_search.go:116
	if os.Getenv("ENABLE_EXPERIMENTAL_HYBRID_OPERANDS") != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #94cbb8695ed57a22 Environment-variable access.
repo/adapters/handlers/graphql/local/get/hybrid_search.go:122
	if os.Getenv("ENABLE_EXPERIMENTAL_HYBRID_OPERANDS") != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #0d9a0fd589e45056 Filesystem access.
repo/adapters/handlers/mcp/internal/config.go:45
	data, err := os.ReadFile(configPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #f5f3ff7ab5871f14 Environment-variable access.
repo/adapters/handlers/rest/configure_api.go:994
	if entconfig.Enabled(os.Getenv("SHARD_NOOP_PROVIDER_ENABLED")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #a33e80a7259d60f4 Environment-variable access.
repo/adapters/handlers/rest/configure_api.go:1500
	if entconfig.Enabled(os.Getenv("ENABLE_CLEANUP_UNFINISHED_BACKUPS")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #f15acdcd3d229a4a Environment-variable access.
repo/adapters/handlers/rest/configure_api.go:1793
	if os.Getenv("LOG_FORMAT") != "text" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #050d1b179828d9e7 Environment-variable access.
repo/adapters/handlers/rest/configure_api.go:1796
	logLevelStr := os.Getenv("LOG_LEVEL")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #32d064b6217d789e Environment-variable access.
repo/adapters/handlers/rest/configure_api.go:2601
	if os.Getenv("LIMIT_RESOURCES") == "true" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #2a24edaae8ddd8cd Filesystem access.
repo/adapters/handlers/rest/handlers_debug.go:309
						file, err := os.ReadFile(shardPath + ".migrations/searchable_map_to_blockmax/" + filename)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #3e032217a0a1fe34 Filesystem access.
repo/adapters/handlers/rest/handlers_debug.go:391
						file, err := os.OpenFile(filePath, os.O_WRONLY|os.O_CREATE|os.O_APPEND, 0o644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #a1a63f49ba19552c Filesystem access.
repo/adapters/handlers/rest/handlers_debug_bmw_aux.go:98
							file, err := os.Create(filenameShard)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #d5fc5f2ab1bb72c1 Filesystem access.
repo/adapters/handlers/rest/handlers_debug_bmw_aux.go:108
							file, err := os.Create(filenameShard)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #1049d23272f8dc20 Filesystem access.
repo/adapters/handlers/rest/server.go:287
			caCert, caCertErr := os.ReadFile(string(s.TLSCACertificate))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #e8429b92bc4ea61a Filesystem access.
repo/adapters/repos/db/async_delete.go:130
	f, err := os.Open(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #aa349f4ad79cc53c Filesystem access.
repo/adapters/repos/db/backup.go:764
	data, err := os.ReadFile(counterPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #84f8ab3e91c9b3fb Filesystem access.
repo/adapters/repos/db/backup.go:774
	data, err = os.ReadFile(plPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #ec878234f1a4810f Filesystem access.
repo/adapters/repos/db/backup.go:784
	data, err = os.ReadFile(versionPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #b46ecaa4ac276566 Filesystem access.
repo/adapters/repos/db/indexcounter/counter.go:32
	f, err := os.OpenFile(fileName, os.O_RDWR|os.O_CREATE, 0o666)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #49b1c13496c5f03d Filesystem access.
repo/adapters/repos/db/indexcounter/counter.go:77
	f, err := os.Open(filepath.Join(shardPath, "indexcount"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #ec894836c27c41e1 Filesystem access.
repo/adapters/repos/db/init.go:345
		if _, err = os.Create(fsMigrationPath); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #6682c7d9d250d941 Environment-variable access.
repo/adapters/repos/db/inverted/bm25_searcher.go:131
	useWand := os.Getenv("USE_BLOCKMAX_WAND") == "false"

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #8aa5247602579e5d Environment-variable access.
repo/adapters/repos/db/inverted/bm25_searcher_block.go:51
		if !entcfg.Enabled(os.Getenv("DISABLE_RECOVERY_ON_PANIC")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #08fdbae6988fa21d Environment-variable access.
repo/adapters/repos/db/inverted/bm25_searcher_block.go:183
		internalLimitString := os.Getenv("BLOCKMAX_WAND_PER_SEGMENT_LIMIT")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #714387e0f3dd2995 Filesystem access.
repo/adapters/repos/db/inverted/new_prop_length_tracker.go:93
	bytes, err := os.ReadFile(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #ed5e3f1bb0b52384 Filesystem access.
repo/adapters/repos/db/inverted/new_prop_length_tracker.go:362
	err = os.WriteFile(tempfile, bytes, 0o666)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #49dc523ee5b8be5c Filesystem access.
repo/adapters/repos/db/inverted/prop_length_tracker.go:57
	f, err := os.OpenFile(path, os.O_RDWR|os.O_CREATE, 0o666)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #12f4db51a9ede994 Filesystem access.
repo/adapters/repos/db/inverted_migrator_filter_to_search.go:351
	f, err := os.OpenFile(mf.stateFileName, os.O_RDWR|os.O_CREATE, 0o666)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #a72c6dff64d1960d Filesystem access.
repo/adapters/repos/db/inverted_migrator_filter_to_search.go:383
	f, err := os.Create(fileNameTemp)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #778aa41ffb755c5e Filesystem access.
repo/adapters/repos/db/inverted_migrator_filter_to_search.go:407
	f, err := os.Create(mf.flagFileName)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #4e8570d701d9a6f1 Filesystem access.
repo/adapters/repos/db/inverted_reindex_finalize.go:373
		f, err := os.OpenFile(p, os.O_WRONLY|os.O_CREATE|os.O_EXCL, 0o644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #d463e59f1d0df54a Filesystem access.
repo/adapters/repos/db/inverted_reindex_finalize.go:522
	data, err := os.ReadFile(filepath.Join(migDir, "properties.mig"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #4bb785434a2301d7 Filesystem access.
repo/adapters/repos/db/inverted_reindex_task_generic.go:330
	if existing, err := os.ReadFile(target); err == nil && bytes.Equal(existing, payload) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #17b32d8f5b201339 Filesystem access.
repo/adapters/repos/db/inverted_reindex_task_generic.go:333
	return os.WriteFile(target, payload, 0o600)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #2699dca007922fbd Filesystem access.
repo/adapters/repos/db/inverted_reindex_tracker.go:151
	content, err := os.ReadFile(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #37240d1d03203d6f Filesystem access.
repo/adapters/repos/db/inverted_reindex_tracker.go:214
	content, err := os.ReadFile(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #9e5c9e36ac3670d0 Filesystem access.
repo/adapters/repos/db/inverted_reindex_tracker.go:241
	progressFile, err := os.ReadFile(progressFilePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #b6a63774fbfc25f7 Filesystem access.
repo/adapters/repos/db/inverted_reindex_tracker.go:449
	file, err := os.OpenFile(path, os.O_WRONLY|os.O_CREATE|os.O_EXCL, 0o777)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #dd05667f06bb4171 Filesystem access.
repo/adapters/repos/db/inverted_reindex_tracker.go:493
	content, err := os.ReadFile(t.filepath(t.config.filenameProperties))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #c6a81bce32aa7bb9 Filesystem access.
repo/adapters/repos/db/inverted_reindex_tracker.go:650
	content, err := os.ReadFile(t.filepath(t.config.filenameOverrides))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #5239009518fa0362 Environment-variable access.
repo/adapters/repos/db/lsmkv/bucket.go:2310
		if !entcfg.Enabled(os.Getenv("DISABLE_RECOVERY_ON_PANIC")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #d602c4ea0feb6adc Filesystem access.
repo/adapters/repos/db/lsmkv/bucket.go:2727
				file, err := os.Open(filepath.Join(bucketPath, entry.Name()))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #4c5fd8251121b7c1 Filesystem access.
repo/adapters/repos/db/lsmkv/bucket.go:2778
			file, err := os.Open(filepath.Join(bucketPath, entry.Name()))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #9e1839a95579131b Filesystem access.
repo/adapters/repos/db/lsmkv/bucket_snapshot.go:237
	in, err := os.Open(src)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #16699e84a3d70821 Filesystem access.
repo/adapters/repos/db/lsmkv/bucket_snapshot.go:244
	out, err := os.Create(tmp)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #f4b6c8f012864779 Filesystem access.
repo/adapters/repos/db/lsmkv/commitlogger.go:253
	f, err := os.OpenFile(out.path, os.O_APPEND|os.O_CREATE|os.O_RDWR, 0o666)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #2ebeb4f9ee51b140 Filesystem access.
repo/adapters/repos/db/lsmkv/lazy_segment.go:61
	file, err := os.Open(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #70fe21148a6ebe78 Filesystem access.
repo/adapters/repos/db/lsmkv/memtable_flush.go:96
	f, err := os.OpenFile(tmpSegmentPath, os.O_CREATE|os.O_WRONLY|os.O_TRUNC, 0o666)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #4bf52c6b2d3713e8 Filesystem access.
repo/adapters/repos/db/lsmkv/segment.go:205
	file, err := os.Open(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #4e9ee53b31c2fd1c Filesystem access.
repo/adapters/repos/db/lsmkv/segment_bloom_filters.go:263
	f, err := os.Create(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #a77a3489d6d82647 Filesystem access.
repo/adapters/repos/db/lsmkv/segment_bloom_filters.go:288
	f, err := os.Open(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #4be4292eacf65d8a Filesystem access.
repo/adapters/repos/db/lsmkv/segment_group_cleanup.go:542
		file, err := os.Create(tmpSegmentPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #020c5b74cde0f2a8 Filesystem access.
repo/adapters/repos/db/lsmkv/segment_group_cleanup.go:751
	file, err := os.Create(tmpPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #7c6349a9b9d96c8c Filesystem access.
repo/adapters/repos/db/lsmkv/segment_group_compaction.go:349
	f, err := os.Create(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #db7f7069116a0007 Filesystem access.
repo/adapters/repos/db/lsmkv/segment_group_prepend.go:337
	srcFile, err := os.Open(src)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #18b39e97355f57a3 Filesystem access.
repo/adapters/repos/db/lsmkv/segment_group_prepend.go:343
	dstFile, err := os.Create(dst)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #5ff9d849ae378a1c Filesystem access.
repo/adapters/repos/db/queue/queue.go:670
		f, err := os.Create(tombstonePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #a641d9f00e77ec8b Filesystem access.
repo/adapters/repos/db/queue/queue.go:901
	f, err := os.Open(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #c4446d0f8e41ecdb Filesystem access.
repo/adapters/repos/db/queue/queue.go:948
	c.f, err = os.Open(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #4155bf9cde659a64 Filesystem access.
repo/adapters/repos/db/queue/queue.go:1167
	w.f, err = os.OpenFile(path, os.O_CREATE|os.O_RDWR, 0o644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #f5fee656c3c30196 Filesystem access.
repo/adapters/repos/db/queue/queue.go:1216
	w.f, err = os.OpenFile(filepath.Join(w.dir, lastChunk), os.O_RDWR, 0o644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #0b9f02d08606a1fe Environment-variable access.
repo/adapters/repos/db/queue/scheduler.go:78
		v := os.Getenv("QUEUE_SCHEDULER_INTERVAL")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #3b35552c0780304a Environment-variable access.
repo/adapters/repos/db/queue/scheduler.go:95
		v := os.Getenv("QUEUE_RETRY_INTERVAL")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #83f123fd3cc8f5ac Filesystem access.
repo/adapters/repos/db/reindex_orphan_audit.go:598
	f, err := os.OpenFile(sentinelPath, os.O_WRONLY|os.O_CREATE|os.O_EXCL, 0o600)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #ee6a85fc2ada13d8 Filesystem access.
repo/adapters/repos/db/reindex_orphan_audit.go:842
	data, err := os.ReadFile(filepath.Join(trackerPath, reindexRecoveryPayloadFile))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #33f15fbb0dd6b3f3 Filesystem access.
repo/adapters/repos/db/reindex_recovery.go:189
	data, err := os.ReadFile(payloadPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #4eb39b2a31083348 Filesystem access.
repo/adapters/repos/db/replica_snapshot.go:124
	f, err := os.Open(abs)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #a179f4bc79b9f9ea Filesystem access.
repo/adapters/repos/db/replication.go:648
	f, err := os.Create(finalPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #03b724678113f9df Filesystem access.
repo/adapters/repos/db/shard_async_replication.go:663
		f, err := os.OpenFile(filename, os.O_RDONLY, os.ModePerm)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #125470a9062996a7 Filesystem access.
repo/adapters/repos/db/shard_async_replication.go:1191
	f, err := os.OpenFile(tmpFilename, os.O_CREATE|os.O_WRONLY|os.O_TRUNC, 0o600)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #fc00417c71a62b36 Filesystem access.
repo/adapters/repos/db/shard_backup.go:464
	if d.DocIDCounter, err = os.ReadFile(fpath); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #daf53d48ecd5cc4a Filesystem access.
repo/adapters/repos/db/shard_backup.go:472
	if d.PropLengthTracker, err = os.ReadFile(fpath); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #22a366584efe217a Filesystem access.
repo/adapters/repos/db/shard_backup.go:480
	if d.Version, err = os.ReadFile(fpath); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #08769a7f995ba133 Filesystem access.
repo/adapters/repos/db/shard_backup.go:524
	reader, err := os.Open(finalPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #429e1be8dcd8d8f9 Filesystem access.
repo/adapters/repos/db/shard_compressed_vectors_migrator.go:228
	srcFile, err := os.Open(src)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #a380a64d739676c4 Filesystem access.
repo/adapters/repos/db/shard_compressed_vectors_migrator.go:234
	dstFile, err := os.Create(dst)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #58cb17ba0d79abcb Filesystem access.
repo/adapters/repos/db/shard_compressed_vectors_migrator.go:258
	file, err := os.Create(m.migrationPerformedFlagFile(lsmDir))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #87ef0dfb2e9198dc Filesystem access.
repo/adapters/repos/db/shard_init.go:297
	data, err := os.ReadFile(filepath.Join(migDir, reindexRecoveryPayloadFile))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #79a29c27010386bc Filesystem access.
repo/adapters/repos/db/shard_replica_snapshot.go:127
		if err := os.WriteFile(dst, m.data, 0o644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #b3ed6351b187b904 Filesystem access.
repo/adapters/repos/db/shard_usage/usage.go:74
	if err := os.WriteFile(usageTmpFilePath(indexPath, shardName), data, os.FileMode(0o600)); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #1cb973539a7a0f93 Filesystem access.
repo/adapters/repos/db/shard_usage/usage.go:83
	usage, err := os.ReadFile(usageTmpFilePath(indexPath, shardName))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #b28b72350990efec Filesystem access.
repo/adapters/repos/db/shard_version.go:57
	f, err := os.OpenFile(fileName, os.O_RDWR|os.O_CREATE, 0o666)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #c948953cc3a44036 Environment-variable access.
repo/adapters/repos/db/ttl/config.go:40
	if envMinTtl := os.Getenv("OBJECTS_TTL_MINIMUM_DEFAULT_TTL"); envMinTtl != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #ee69241479422791 Filesystem access.
repo/adapters/repos/db/vector/common/fs.go:56
	return os.Create(name)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #1d68284ef6867900 Filesystem access.
repo/adapters/repos/db/vector/common/fs.go:60
	return os.Open(name)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #20870dc39c0f6fdd Filesystem access.
repo/adapters/repos/db/vector/common/fs.go:64
	return os.OpenFile(name, flag, perm)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #603794d09022a957 Filesystem access.
repo/adapters/repos/db/vector/common/fs.go:76
	return os.ReadFile(name)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #30c16aafe859ed6e Filesystem access.
repo/adapters/repos/db/vector/common/fs.go:80
	return os.WriteFile(name, data, perm)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #f1a34de249b33276 Filesystem access.
repo/adapters/repos/db/vector/common/fs.go:119
	f, err := os.Open(name)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #6a0a34152a14ae71 Filesystem access.
repo/adapters/repos/db/vector/common/fs.go:130
	f, err := os.Create(name)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #0baf14451df8342e Filesystem access.
repo/adapters/repos/db/vector/common/fs.go:141
	f, err := os.OpenFile(name, flag, perm)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #9f55b4f13c216f2d Filesystem access.
repo/adapters/repos/db/vector/common/fs.go:157
	return os.ReadFile(name)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #68016184a9d943b1 Filesystem access.
repo/adapters/repos/db/vector/common/fs.go:161
	return os.WriteFile(name, data, perm)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #8a79d4438f3125ab Filesystem access.
repo/adapters/repos/db/vector/datasets/datareader.go:59
	osFile, err := os.Open(localFile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #cb566053d2491360 Filesystem access.
repo/adapters/repos/db/vector/datasets/dataset.go:79
	infoBytes, err := os.ReadFile(filepath.Join(repoDir, "info", hfRevision))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #b78fa01fdc56f17c Environment-variable access.
repo/adapters/repos/db/vector/flat/index.go:290
	return !entcfg.Enabled(os.Getenv("FLAT_INDEX_DISABLE_FORCED_COMPACTION"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #c3851d45bbdb6975 Filesystem access.
repo/adapters/repos/db/vector/hnsw/cmd/commit_logger_repair.go:53
	fd, err := os.Open(*filePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #a3cd317941ea83fd Filesystem access.
repo/adapters/repos/db/vector/hnsw/compact/diagnostics/diagnose_single_log.go:34
	logFile, _ := os.Open(logPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #327a06e2654b54d6 Filesystem access.
repo/adapters/repos/db/vector/hnsw/compact/diagnostics/diagnose_single_log.go:72
	sortedFile2, _ := os.Open(testPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #68ecd64791089757 Filesystem access.
repo/adapters/repos/db/vector/hnsw/compact/diagnostics/diagnose_single_log.go:93
	logFile3, _ := os.Open(logPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #60048aa8f585fbec Filesystem access.
repo/adapters/repos/db/vector/hnsw/compact/diagnostics/diagnose_single_log.go:128
	sortedFile3, _ := os.Open(testPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #1b4d89b675ae0c50 Filesystem access.
repo/adapters/repos/db/vector/hnsw/compact/diagnostics/diagnose_tombstone_diff.go:44
		logFile, _ := os.Open(logPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #3da0586d32175758 Filesystem access.
repo/adapters/repos/db/vector/hnsw/compact/diagnostics/diagnose_tombstone_diff.go:66
		logFile, _ := os.Open(logPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #02b07a1be9bac7b0 Filesystem access.
repo/adapters/repos/db/vector/hnsw/compact/diagnostics/diagnose_tombstone_diff.go:117
		logFile, _ := os.Open(logPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #81f20df200cc9e58 Filesystem access.
repo/adapters/repos/db/vector/hnsw/compact/diagnostics/diagnose_tombstone_diff.go:174
		logFile, _ := os.Open(logPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #5a2e8c429ffc53e9 Filesystem access.
repo/adapters/repos/db/vector/hnsw/compact/diagnostics/e2e_compactor_validation.go:124
		logFile, _ := os.Open(logPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #8a84b92851525668 Filesystem access.
repo/adapters/repos/db/vector/hnsw/compact/diagnostics/e2e_compactor_validation.go:209
			logFile, _ := os.Open(f.Path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #b1febcb85e80dbd7 Filesystem access.
repo/adapters/repos/db/vector/hnsw/compact/diagnostics/e2e_compactor_validation.go:273
	srcFile, err := os.Open(src)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #667d30d37a383a67 Filesystem access.
repo/adapters/repos/db/vector/hnsw/compact/diagnostics/e2e_compactor_validation.go:279
	dstFile, err := os.Create(dst)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #09868506b1aa6569 Filesystem access.
repo/adapters/repos/db/vector/hnsw/compact/diagnostics/e2e_validation.go:80
		logFile, _ := os.Open(logPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #8e86f95cebc7294a Filesystem access.
repo/adapters/repos/db/vector/hnsw/compact/diagnostics/e2e_validation.go:109
		logFile, _ := os.Open(condensedPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #ca107381e9d67fab Filesystem access.
repo/adapters/repos/db/vector/hnsw/compact/diagnostics/e2e_validation.go:151
		logFile, _ := os.Open(logPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #62cdf58ea94e075d Filesystem access.
repo/adapters/repos/db/vector/hnsw/compact/diagnostics/e2e_validation.go:182
		logFile, _ := os.Open(sortedPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #43ad93ed4570d149 Filesystem access.
repo/adapters/repos/db/vector/hnsw/compact/diagnostics/e2e_validation.go:259
	mergedReadFile, _ := os.Open(mergedPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #1a8e96d4f01a160c Filesystem access.
repo/adapters/repos/db/vector/hnsw/compact/diagnostics/e2e_validation.go:288
		logFile, _ := os.Open(sortedPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #1042f7716a9f1065 Filesystem access.
repo/adapters/repos/db/vector/hnsw/compact/diagnostics/regenerate_sorted_files.go:48
		logFile, err := os.Open(condensedPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #bcbde72d006544d2 Environment-variable access.
repo/adapters/repos/db/vector/hnsw/delete.go:477
	if v := os.Getenv("TOMBSTONE_DELETION_MAX_PER_CYCLE"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #c5eaf34316dfd41c Environment-variable access.
repo/adapters/repos/db/vector/hnsw/delete.go:487
	if v := os.Getenv("TOMBSTONE_DELETION_MIN_PER_CYCLE"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #237978e82b581f4b Environment-variable access.
repo/adapters/repos/db/vector/hnsw/delete.go:497
	if v := os.Getenv("TOMBSTONE_DELETION_CONCURRENCY"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #0e6c0fdbe39ee2bd Filesystem access.
repo/adapters/repos/db/vector/hnsw/generate_recall_datasets.go:68
	ioutil.WriteFile("recall_vectors.json", vectorsJSON, 0o644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #56564b8f92a4184e Filesystem access.
repo/adapters/repos/db/vector/hnsw/generate_recall_datasets.go:69
	ioutil.WriteFile("recall_queries.json", queriesJSON, 0o644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #30cf1b8217f50b41 Filesystem access.
repo/adapters/repos/db/vector/hnsw/generate_recall_datasets.go:70
	ioutil.WriteFile("recall_truths.json", truthsJSON, 0o644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #fa249f40fdcb9073 Filesystem access.
repo/adapters/repos/db/vector/testinghelpers/helpers.go:62
	f, err := os.Open(file)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #48dc889b1ca9bf4a Filesystem access.
repo/adapters/repos/db/vector/testinghelpers/helpers.go:249
	f, err := os.Create(fileName)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #baaff7c8fa273938 Filesystem access.
repo/adapters/repos/db/vector/testinghelpers/helpers.go:264
	f, err := os.Open(fileName)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #2986cdde28bef1a0 Environment-variable access.
repo/adapters/repos/db/vector_index_queue.go:92
	staleTimeout, _ := time.ParseDuration(os.Getenv("ASYNC_INDEXING_STALE_TIMEOUT"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #1ca68d43e7806dc4 Environment-variable access.
repo/adapters/repos/db/vector_index_queue.go:93
	batchSize, _ := strconv.Atoi(os.Getenv("ASYNC_INDEXING_BATCH_SIZE"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #19ba591fb3f9abcc Filesystem access.
repo/adapters/repos/schema/store.go:463
	data, err := os.ReadFile(src)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #ddc035420c7f3464 Filesystem access.
repo/adapters/repos/schema/store.go:467
	return os.WriteFile(dst, data, 0o644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #b514e416c195ffc3 Filesystem access.
repo/cluster/distributedtask/shard_noop_provider.go:206
		if err := os.WriteFile(path, []byte(fmt.Sprintf("finalized by %s", p.nodeID)), 0o644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #dd09cdb16c0df2ad Filesystem access.
repo/cluster/distributedtask/shard_noop_provider.go:276
		if err := os.WriteFile(path, []byte(fmt.Sprintf("completed by %s, status=%s", p.nodeID, task.Status)), 0o644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #0f36791bf00df5d8 Filesystem access.
repo/cluster/distributedtask/shard_noop_provider.go:510
		if err := os.WriteFile(path, []byte(fmt.Sprintf("processed by %s", p.nodeID)), 0o644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #ddd8169c3bb05bc0 Filesystem access.
repo/cluster/replication/changelog/log.go:57
	f, err := os.OpenFile(path, os.O_CREATE|os.O_EXCL|os.O_WRONLY, 0o600)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #de655e8da5e6fb8b Filesystem access.
repo/cluster/replication/changelog/tailer.go:55
	f, err := os.Open(l.path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #e5a977804fa3639a Environment-variable access.
repo/cluster/replication/copier/copier.go:143
	if os.Getenv("WEAVIATE_TEST_COPY_REPLICA_SLEEP") != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #da9b0f60b36e7e44 Environment-variable access.
repo/cluster/replication/copier/copier.go:144
		sleepTime, err := time.ParseDuration(os.Getenv("WEAVIATE_TEST_COPY_REPLICA_SLEEP"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #c253903be32a335e Filesystem access.
repo/cluster/replication/copier/copier.go:334
			f, err := os.Create(tmpPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #184c8483c9305ee8 Environment-variable access.
repo/cluster/replication/copier/copier.go:360
						if sleep := os.Getenv("WEAVIATE_TEST_DOWNLOAD_WRITE_SLEEP"); sleep != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #61efe273f3c3a3d1 Filesystem access.
repo/deprecations/gen.go:36
	fd, err := os.Open("deprecations.yml")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #0d859de3deeaf6ce Filesystem access.
repo/deprecations/gen.go:51
	f, err := os.Create("data.go")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #f52697e150ce5317 Environment-variable access.
repo/entities/config/feature_flags.go:61
	return Enabled(os.Getenv(EnvNestedFilteringPreview))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #7e62b3d84db1c417 Filesystem access.
repo/entities/diskio/files.go:46
	f, err := os.Open(dir)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #9adf9dde6dca2016 Filesystem access.
repo/entities/diskio/files.go:61
	f, err := os.Open(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #f2fd5c79acfbae16 Filesystem access.
repo/entities/diskio/files.go:72
	dir, err := os.Open(dirPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #6f6a85d320384fa7 Environment-variable access.
repo/entities/errors/error_group_wrapper.go:55
	if entcfg.Enabled(os.Getenv("LOG_STACK_TRACE_ON_ERROR_GROUP")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #d2201ad9e0d5f7c4 Environment-variable access.
repo/entities/errors/error_group_wrapper.go:74
	if entcfg.Enabled(os.Getenv("LOG_STACK_TRACE_ON_ERROR_GROUP")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #664626c94b86c7ba Environment-variable access.
repo/entities/errors/error_group_wrapper.go:82
	disable := entcfg.Enabled(os.Getenv("DISABLE_RECOVERY_ON_PANIC"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #00dc6b2a5c8c0878 Environment-variable access.
repo/entities/errors/go_wrapper.go:27
			if !entcfg.Enabled(os.Getenv("DISABLE_RECOVERY_ON_PANIC")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #a836d48e197a4ba2 Environment-variable access.
repo/entities/errors/go_wrapper.go:43
			if !entcfg.Enabled(os.Getenv("DISABLE_RECOVERY_ON_PANIC")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #5dcd156f378d9961 Environment-variable access.
repo/entities/sentry/config.go:56
	Config.Enabled = config.Enabled(os.Getenv("SENTRY_ENABLED"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #e244ad72c2d571e8 Environment-variable access.
repo/entities/sentry/config.go:61
	Config.DSN = os.Getenv("SENTRY_DSN")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #548c73c819e28de5 Environment-variable access.
repo/entities/sentry/config.go:66
	Config.Environment = os.Getenv("SENTRY_ENVIRONMENT")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #9677da361436d656 Environment-variable access.
repo/entities/sentry/config.go:71
	Config.ClusterOwner = os.Getenv("SENTRY_CLUSTER_OWNER")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #af43cd7d1381bff0 Environment-variable access.
repo/entities/sentry/config.go:72
	Config.ClusterId = os.Getenv("SENTRY_CLUSTER_ID")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #9c4c2388f45f9ee6 Environment-variable access.
repo/entities/sentry/config.go:75
	Config.ErrorReportingDisabled = config.Enabled(os.Getenv("SENTRY_ERROR_REPORTING_DISABLED"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #98b5a8ce3151f751 Environment-variable access.
repo/entities/sentry/config.go:78
	} else if errorSampleRate, err := strconv.ParseFloat(os.Getenv("SENTRY_ERROR_SAMPLE_RATE"), 64); err == nil && errorSampleRate <= 1.0 && errorSampleRate >= 0.0 {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #37ebc076cd596687 Environment-variable access.
repo/entities/sentry/config.go:86
	Config.TracingDisabled = config.Enabled(os.Getenv("SENTRY_TRACING_DISABLED"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #58c1a399c75a4eae Environment-variable access.
repo/entities/sentry/config.go:89
	} else if tracesSampleRate, err := strconv.ParseFloat(os.Getenv("SENTRY_TRACES_SAMPLE_RATE"), 64); err == nil && tracesSampleRate <= 1.0 && tracesSampleRate >= 0.0 {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #d8b251b843a3cf65 Environment-variable access.
repo/entities/sentry/config.go:97
	Config.ProfilingDisabled = config.Enabled(os.Getenv("SENTRY_PROFILING_DISABLED"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #bea64aa1ad1636a4 Environment-variable access.
repo/entities/sentry/config.go:100
	} else if profileSampleRate, err := strconv.ParseFloat(os.Getenv("SENTRY_PROFILE_SAMPLE_RATE"), 64); err == nil && profileSampleRate <= 1.0 && profileSampleRate >= 0.0 {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #b4f1169c8534433d Environment-variable access.
repo/entities/sentry/config.go:107
	Config.Debug = config.Enabled(os.Getenv("SENTRY_DEBUG"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #c657957ffdd36fa7 Environment-variable access.
repo/entities/sentry/config.go:108
	Config.Release = os.Getenv("SENTRY_RELEASE")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #8f6d008a4be0c05f Environment-variable access.
repo/entities/sentry/config.go:126
	for _, env := range os.Environ() {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #d9671d6fc834a0f7 Environment-variable access.
repo/entities/tokenizer/tokenizer.go:68
	numParallelStr := os.Getenv("TOKENIZER_CONCURRENCY_COUNT")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #0f9af487af1629bf Environment-variable access.
repo/entities/tokenizer/tokenizer.go:82
	if entcfg.Enabled(os.Getenv("USE_GSE")) || entcfg.Enabled(os.Getenv("ENABLE_TOKENIZER_GSE")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #c578eff00c145d51 Environment-variable access.
repo/entities/tokenizer/tokenizer.go:87
	if entcfg.Enabled(os.Getenv("ENABLE_TOKENIZER_GSE_CH")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #a73c6768c2920376 Environment-variable access.
repo/entities/tokenizer/tokenizer.go:92
	if entcfg.Enabled(os.Getenv("ENABLE_TOKENIZER_KAGOME_KR")) && tokenizers.Korean == nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #d98ddd0357f5ad2f Environment-variable access.
repo/entities/tokenizer/tokenizer.go:107
	if entcfg.Enabled(os.Getenv("ENABLE_TOKENIZER_KAGOME_JA")) && tokenizers.Japanese == nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #394c88f523c0c141 Environment-variable access.
repo/entities/vectorindex/hnsw/config.go:121
	if strategy := os.Getenv("HNSW_DEFAULT_FILTER_STRATEGY"); strategy == FilterStrategySweeping {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #a3a186005c3620eb Environment-variable access.
repo/modules/backup-azure/client.go:60
	connectionString := os.Getenv("AZURE_STORAGE_CONNECTION_STRING")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #e0b958909565df96 Environment-variable access.
repo/modules/backup-azure/client.go:83
	accountName := os.Getenv("AZURE_STORAGE_ACCOUNT")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #24123fb5873b2f92 Environment-variable access.
repo/modules/backup-azure/client.go:84
	accountKey := os.Getenv("AZURE_STORAGE_KEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #5b4b5901a9ba9496 Filesystem access.
repo/modules/backup-azure/client.go:279
	file, err := os.Create(destPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #b579ee6d21de863f Environment-variable access.
repo/modules/backup-azure/client.go:302
		blockSizeStr = os.Getenv("AZURE_BLOCK_SIZE")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #eb74ef94ecb9bb3a Environment-variable access.
repo/modules/backup-azure/client.go:320
		concurrencyStr = os.Getenv("AZURE_CONCURRENCY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #f8948f51e6d292d1 Environment-variable access.
repo/modules/backup-azure/module.go:85
		Container:       os.Getenv(azureContainer),

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #d3f658db1e69e2ac Environment-variable access.
repo/modules/backup-azure/module.go:86
		BackupPath:      os.Getenv(azurePath),

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #c5c5be138483198f Filesystem access.
repo/modules/backup-filesystem/backup.go:48
	contents, err := os.ReadFile(metaPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #bbf9055e22f327c3 Filesystem access.
repo/modules/backup-filesystem/backup.go:78
	source, err := os.Open(sourcePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #ab74050f3873cfa9 Filesystem access.
repo/modules/backup-filesystem/backup.go:92
	destination, err := os.Create(destinationPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #07436ce7dc2a0136 Filesystem access.
repo/modules/backup-filesystem/backup.go:125
	if err := os.WriteFile(backupPath, byes, os.ModePerm); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #21e043fa24e54c68 Filesystem access.
repo/modules/backup-filesystem/backup.go:178
	f, err := os.OpenFile(backupPath, os.O_RDWR|os.O_CREATE, os.ModePerm)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #2575f5b89db2fb3f Filesystem access.
repo/modules/backup-filesystem/backup.go:209
	f, err := os.Open(sourcePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #654de21900ea2169 Environment-variable access.
repo/modules/backup-filesystem/module.go:67
	backupsPath := os.Getenv(backupsPathName)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #fd9544fe204f40ff Filesystem access.
repo/modules/backup-filesystem/module.go:113
		return os.ReadFile(key)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #46bcb10362eab2c7 Environment-variable access.
repo/modules/backup-gcs/client.go:53
	useAuth := strings.ToLower(os.Getenv("BACKUP_GCS_USE_AUTH")) != "false"

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #ddfd10f636facb30 Environment-variable access.
repo/modules/backup-gcs/client.go:54
	backupGCSAuthProxyEndpoint := os.Getenv("BACKUP_GCS_AUTH_PROXY_ENDPOINT")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #0ad6ee2f12801f37 Environment-variable access.
repo/modules/backup-gcs/client.go:80
	projectID := os.Getenv("GOOGLE_CLOUD_PROJECT")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #f1ef26cf5c106633 Environment-variable access.
repo/modules/backup-gcs/client.go:82
		projectID = os.Getenv("GCLOUD_PROJECT")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #cfeb69a9c00e2722 Environment-variable access.
repo/modules/backup-gcs/client.go:84
			projectID = os.Getenv("GCP_PROJECT")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #910e187b4a5a66b3 Filesystem access.
repo/modules/backup-gcs/client.go:344
	file, err := os.Create(destPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #8bd250826fe8bcdc Environment-variable access.
repo/modules/backup-gcs/module.go:85
		Bucket:          os.Getenv(gcsBucket),

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #3a7df5bd52f56cfb Environment-variable access.
repo/modules/backup-gcs/module.go:86
		BackupPath:      os.Getenv(gcsPath),

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #a416eb640edd6887 Environment-variable access.
repo/modules/backup-s3/client.go:50
	region := os.Getenv("AWS_REGION")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #29d563db050a83df Environment-variable access.
repo/modules/backup-s3/client.go:52
		region = os.Getenv("AWS_DEFAULT_REGION")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #90ed56c72438c264 Environment-variable access.
repo/modules/backup-s3/client.go:80
	if (os.Getenv("AWS_ACCESS_KEY_ID") != "" || os.Getenv("AWS_ACCESS_KEY") != "") &&

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #040b06a764fe6407 Environment-variable access.
repo/modules/backup-s3/client.go:81
		(os.Getenv("AWS_SECRET_ACCESS_KEY") != "" || os.Getenv("AWS_SECRET_KEY") != "") {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #8d1c7e9b46119ee3 Environment-variable access.
repo/modules/backup-s3/client.go:155
	if (os.Getenv("AWS_ACCESS_KEY_ID") != "" || os.Getenv("AWS_ACCESS_KEY") != "") &&

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #80bfeb4afb987c0d Environment-variable access.
repo/modules/backup-s3/client.go:156
		(os.Getenv("AWS_SECRET_ACCESS_KEY") != "" || os.Getenv("AWS_SECRET_KEY") != "") {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #408dba050aad53f8 Environment-variable access.
repo/modules/backup-s3/module.go:84
	bucket := os.Getenv(s3Bucket)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #c1c1fb954582aa72 Environment-variable access.
repo/modules/backup-s3/module.go:89
	useSSL := strings.ToLower(os.Getenv(s3UseSSL)) != "false"

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #66ba0e0ee2a54f2d Environment-variable access.
repo/modules/backup-s3/module.go:90
	config := newConfig(os.Getenv(s3Endpoint), bucket, os.Getenv(s3Path), useSSL)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #5602518564cc9142 Environment-variable access.
repo/modules/backup-s3/module.go:102
	exportCfg := newConfig(os.Getenv(s3Endpoint), "", "", useSSL)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #1e5b6bd35525ceff Environment-variable access.
repo/modules/backup-s3/module.go:103
	if exportRoleARN := os.Getenv(exportS3RoleARN); exportRoleARN != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #dc4efd695e2cf324 Environment-variable access.
repo/modules/backup-s3/module.go:105
		exportCfg.ExternalID = os.Getenv(exportS3ExternalID)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #2e453745ab08fe10 Environment-variable access.
repo/modules/backup-s3/module.go:106
		exportCfg.STSEndpoint = os.Getenv(exportS3STSEndpoint)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #8a3326d1e4734569 Environment-variable access.
repo/modules/backup-s3/module.go:107
		exportCfg.RoleSessionName = os.Getenv(exportS3RoleSessionName)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #ce8117a1d6166636 Environment-variable access.
repo/modules/generative-anthropic/module.go:64
	apiKey := os.Getenv("ANTHROPIC_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #777cc87344ce17cc Environment-variable access.
repo/modules/generative-anyscale/module.go:64
	apiKey := os.Getenv("ANYSCALE_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #fac98c3a9e9e02f8 Environment-variable access.
repo/modules/generative-aws/module.go:66
	awsSessionToken := os.Getenv("AWS_SESSION_TOKEN")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #7869509e8ff99801 Environment-variable access.
repo/modules/generative-aws/module.go:76
	if os.Getenv("AWS_ACCESS_KEY_ID") != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #65581879957f14d1 Environment-variable access.
repo/modules/generative-aws/module.go:77
		return os.Getenv("AWS_ACCESS_KEY_ID")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #2490467876ddb9e3 Environment-variable access.
repo/modules/generative-aws/module.go:79
	return os.Getenv("AWS_ACCESS_KEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #20e5aa2f71ba383a Environment-variable access.
repo/modules/generative-aws/module.go:83
	if os.Getenv("AWS_SECRET_ACCESS_KEY") != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #37702de107dcfd54 Environment-variable access.
repo/modules/generative-aws/module.go:84
		return os.Getenv("AWS_SECRET_ACCESS_KEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #d2c6e1b2b47fabc0 Environment-variable access.
repo/modules/generative-aws/module.go:86
	return os.Getenv("AWS_SECRET_KEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #d95453341914468f Environment-variable access.
repo/modules/generative-cohere/module.go:64
	apiKey := os.Getenv("COHERE_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #a799e3ed7119c8a1 Environment-variable access.
repo/modules/generative-contextualai/module.go:64
	apiKey := os.Getenv("CONTEXTUALAI_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #526a67f609c7fb9e Environment-variable access.
repo/modules/generative-databricks/module.go:63
	databricksToken := os.Getenv("DATABRICKS_TOKEN")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #454cea9d5451a320 Environment-variable access.
repo/modules/generative-deepseek/module.go:63
	apiKey := os.Getenv("DEEPSEEK_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #422b959d459df8d2 Environment-variable access.
repo/modules/generative-friendliai/module.go:64
	apiKey := os.Getenv("FRIENDLI_TOKEN")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #1ce6d71c92e6b26e Environment-variable access.
repo/modules/generative-google/module.go:71
	apiKey := os.Getenv("GOOGLE_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #a212c4af562c88ee Environment-variable access.
repo/modules/generative-google/module.go:73
		apiKey = os.Getenv("PALM_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #e5292e7168d8249c Environment-variable access.
repo/modules/generative-google/module.go:75
	useGoogleAuth := entcfg.Enabled(os.Getenv("USE_GOOGLE_AUTH"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #5085f7c9c0648305 Environment-variable access.
repo/modules/generative-mistral/module.go:64
	apiKey := os.Getenv("MISTRAL_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #b44b13a8e060de85 Environment-variable access.
repo/modules/generative-nvidia/module.go:64
	apiKey := os.Getenv("NVIDIA_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #0adb80ed4157c365 Environment-variable access.
repo/modules/generative-octoai/module.go:64
	apiKey := os.Getenv("OCTOAI_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #68d567ce6a6e8ffb Environment-variable access.
repo/modules/generative-openai/module.go:63
	openAIApiKey := os.Getenv("OPENAI_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #e47ee3343ad0210a Environment-variable access.
repo/modules/generative-openai/module.go:64
	openAIOrganization := os.Getenv("OPENAI_ORGANIZATION")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #e1c728ec01b22a83 Environment-variable access.
repo/modules/generative-openai/module.go:65
	azureApiKey := os.Getenv("AZURE_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #8010b38b447af54d Environment-variable access.
repo/modules/generative-xai/module.go:64
	apiKey := os.Getenv("XAI_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #34c58df106876204 Environment-variable access.
repo/modules/img2vec-neural/module.go:77
	uri := os.Getenv("IMAGE_INFERENCE_API")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #4b7ed0db403b867c Environment-variable access.
repo/modules/multi2multivec-jinaai/module.go:98
	apiKey := os.Getenv("JINAAI_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #d1f9167894e1ab13 Environment-variable access.
repo/modules/multi2vec-aws/module.go:100
	awsSessionToken := os.Getenv("AWS_SESSION_TOKEN")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #d22d5b5158848f8f Environment-variable access.
repo/modules/multi2vec-aws/module.go:111
	if os.Getenv("AWS_ACCESS_KEY_ID") != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #0cb58dd58bc5a5ae Environment-variable access.
repo/modules/multi2vec-aws/module.go:112
		return os.Getenv("AWS_ACCESS_KEY_ID")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #a9781540029ffe9e Environment-variable access.
repo/modules/multi2vec-aws/module.go:114
	return os.Getenv("AWS_ACCESS_KEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #b02c7ef0b0564b6b Environment-variable access.
repo/modules/multi2vec-aws/module.go:118
	if os.Getenv("AWS_SECRET_ACCESS_KEY") != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #9ff61404d0a386d0 Environment-variable access.
repo/modules/multi2vec-aws/module.go:119
		return os.Getenv("AWS_SECRET_ACCESS_KEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #9c8f42d2ddf419a6 Environment-variable access.
repo/modules/multi2vec-aws/module.go:121
	return os.Getenv("AWS_SECRET_KEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #bdaaa0a6a64e89a3 Environment-variable access.
repo/modules/multi2vec-bind/module.go:144
	uri := os.Getenv("BIND_INFERENCE_API")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #9dfe6447aac82141 Environment-variable access.
repo/modules/multi2vec-clip/module.go:109
	uri := os.Getenv("CLIP_INFERENCE_API")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #064aac9bc86188a0 Environment-variable access.
repo/modules/multi2vec-clip/module.go:115
	if envWaitForStartup := os.Getenv("CLIP_WAIT_FOR_STARTUP"); envWaitForStartup != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #8a93b813387e74cd Environment-variable access.
repo/modules/multi2vec-cohere/module.go:98
	apiKey := os.Getenv("COHERE_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #1e98cf86da4104bb Environment-variable access.
repo/modules/multi2vec-google/module.go:141
	apiKey := os.Getenv("GOOGLE_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #d14b1bbb361c9054 Environment-variable access.
repo/modules/multi2vec-google/module.go:143
		apiKey = os.Getenv("PALM_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #2a37f55175e95b24 Environment-variable access.
repo/modules/multi2vec-google/module.go:145
	useGoogleAuth := entcfg.Enabled(os.Getenv("USE_GOOGLE_AUTH"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #0e3d8187ae293d60 Environment-variable access.
repo/modules/multi2vec-jinaai/module.go:98
	apiKey := os.Getenv("JINAAI_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #14d23bb70d3b3a0f Environment-variable access.
repo/modules/multi2vec-nvidia/module.go:98
	apiKey := os.Getenv("NVIDIA_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #f9f3027f914916e9 Environment-variable access.
repo/modules/multi2vec-voyageai/module.go:104
	apiKey := os.Getenv("VOYAGEAI_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #9bc5ab7a6d68047e Environment-variable access.
repo/modules/ner-transformers/module.go:66
	uri := os.Getenv("NER_INFERENCE_API")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #da8a28916da82002 Environment-variable access.
repo/modules/ner-transformers/module.go:72
	if envWaitForStartup := os.Getenv("NER_WAIT_FOR_STARTUP"); envWaitForStartup != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #72a3e752d3e34766 Environment-variable access.
repo/modules/offload-s3/module.go:77
	if workers := os.Getenv(workers); workers != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #c44871777452254f Environment-variable access.
repo/modules/offload-s3/module.go:207
	if path := os.Getenv("PERSISTENCE_DATA_PATH"); path != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #da8ae3804e7e6244 Environment-variable access.
repo/modules/offload-s3/module.go:211
	if bucket := os.Getenv(s3Bucket); bucket != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #7d7b1004a6136d7d Environment-variable access.
repo/modules/offload-s3/module.go:215
	if endpoint := os.Getenv(s3Endpoint); endpoint != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #2bdeae67fc2b8bf6 Environment-variable access.
repo/modules/offload-s3/module.go:219
	if eTimeout := os.Getenv(timeout); eTimeout != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #66af0b26f409a3c7 Environment-variable access.
repo/modules/offload-s3/module.go:227
	if concc := os.Getenv(concurrency); concc != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #8a384362ab390c52 Environment-variable access.
repo/modules/offload-s3/module.go:235
	if entcfg.Enabled(os.Getenv(s3BucketAutoCreate)) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #daa48df0b48b2983 Environment-variable access.
repo/modules/qna-openai/module.go:135
	openAIApiKey := os.Getenv("OPENAI_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #de6d75ba171b9535 Environment-variable access.
repo/modules/qna-openai/module.go:136
	openAIOrganization := os.Getenv("OPENAI_ORGANIZATION")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #71b2c011c3507bcc Environment-variable access.
repo/modules/qna-openai/module.go:137
	azureApiKey := os.Getenv("AZURE_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #247e2dfb93862705 Environment-variable access.
repo/modules/qna-transformers/module.go:138
	uri := os.Getenv("QNA_INFERENCE_API")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #d856597884c7db2e Environment-variable access.
repo/modules/qna-transformers/module.go:144
	if envWaitForStartup := os.Getenv("QNA_WAIT_FOR_STARTUP"); envWaitForStartup != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #bd847a7b25110d18 Environment-variable access.
repo/modules/reranker-cohere/module.go:66
	apiKey := os.Getenv("COHERE_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #abfb2bcaac35ee74 Environment-variable access.
repo/modules/reranker-contextualai/module.go:66
	apiKey := os.Getenv("CONTEXTUALAI_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #3adddc4747c2641f Environment-variable access.
repo/modules/reranker-jinaai/module.go:66
	apiKey := os.Getenv("JINAAI_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #d4a8b760d6046646 Environment-variable access.
repo/modules/reranker-nvidia/module.go:66
	apiKey := os.Getenv("NVIDIA_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #2f01fa2bcacf8509 Environment-variable access.
repo/modules/reranker-transformers/module.go:66
	uri := os.Getenv("RERANKER_INFERENCE_API")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #acaebe8c76494bbc Environment-variable access.
repo/modules/reranker-transformers/module.go:74
	if envWaitForStartup := os.Getenv("RERANKER_WAIT_FOR_STARTUP"); envWaitForStartup != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #a3baae9d91ff4b47 Environment-variable access.
repo/modules/reranker-voyageai/module.go:66
	apiKey := os.Getenv("VOYAGEAI_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #1486b3399b31454e Environment-variable access.
repo/modules/sum-transformers/module.go:66
	uri := os.Getenv("SUM_INFERENCE_API")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #81c7fc9e43c1e24f Environment-variable access.
repo/modules/sum-transformers/module.go:72
	if envWaitForStartup := os.Getenv("SUM_WAIT_FOR_STARTUP"); envWaitForStartup != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #b7a978f6c45bb4e9 Environment-variable access.
repo/modules/text-spellcheck/module.go:58
	uri := os.Getenv("SPELLCHECK_INFERENCE_API")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #5d76aefe7da638dd Environment-variable access.
repo/modules/text2multivec-jinaai/module.go:114
	jinaAIApiKey := os.Getenv("JINAAI_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #fb9220907457cc9e Environment-variable access.
repo/modules/text2vec-aws/module.go:96
	awsSessionToken := os.Getenv("AWS_SESSION_TOKEN")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #d536a25b58dbc975 Environment-variable access.
repo/modules/text2vec-aws/module.go:107
	if os.Getenv("AWS_ACCESS_KEY_ID") != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #9c1dc5e7a2191c6b Environment-variable access.
repo/modules/text2vec-aws/module.go:108
		return os.Getenv("AWS_ACCESS_KEY_ID")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #2c3b36671f715355 Environment-variable access.
repo/modules/text2vec-aws/module.go:110
	return os.Getenv("AWS_ACCESS_KEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #8a948000d7046b56 Environment-variable access.
repo/modules/text2vec-aws/module.go:114
	if os.Getenv("AWS_SECRET_ACCESS_KEY") != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #906c8dbf0abe8bac Environment-variable access.
repo/modules/text2vec-aws/module.go:115
		return os.Getenv("AWS_SECRET_ACCESS_KEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #7779a8af427308c4 Environment-variable access.
repo/modules/text2vec-aws/module.go:117
	return os.Getenv("AWS_SECRET_KEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #a9ce623392f096a5 Environment-variable access.
repo/modules/text2vec-bigram/bigram.go:65
	switch strings.ToLower(os.Getenv("BIGRAM")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #9acb54c8a6ac8789 Environment-variable access.
repo/modules/text2vec-cohere/module.go:102
	apiKey := os.Getenv("COHERE_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #5d9a5dde3dbe5427 Environment-variable access.
repo/modules/text2vec-databricks/module.go:104
	databricksToken := os.Getenv("DATABRICKS_TOKEN")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #ebff9c6a40637275 Environment-variable access.
repo/modules/text2vec-digitalocean/ent/class_settings.go:83
	return os.Getenv("DIGITALOCEAN_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #54fc313817476b0b Environment-variable access.
repo/modules/text2vec-digitalocean/ent/class_settings.go:87
	return os.Getenv("VECTOR_DB_UUID")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #1ae4ac5f66544c79 Environment-variable access.
repo/modules/text2vec-digitalocean/module.go:103
	apiKey := os.Getenv("DIGITALOCEAN_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #3bc0142e25aecef2 Environment-variable access.
repo/modules/text2vec-google/module.go:123
	apiKey := os.Getenv("GOOGLE_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #912d0a443a24cb25 Environment-variable access.
repo/modules/text2vec-google/module.go:125
		apiKey = os.Getenv("PALM_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #55a12d4048ae0203 Environment-variable access.
repo/modules/text2vec-google/module.go:128
	useGoogleAuth := entcfg.Enabled(os.Getenv("USE_GOOGLE_AUTH"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #3207d9d57984ee05 Environment-variable access.
repo/modules/text2vec-google/module.go:129
	m.useBatchSimpleVectorizer = entcfg.Enabled(os.Getenv("USE_T2V_GOOGLE_BATCH_SIMPLE_LOGIC"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #6ce549838dccf61e Environment-variable access.
repo/modules/text2vec-google/module.go:130
	m.sendObjectsInBatch = entcfg.Enabled(os.Getenv("USE_T2V_GOOGLE_BATCH_SEND_OBJECTS_IN_BATCH"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #05e2241ad159cd92 Environment-variable access.
repo/modules/text2vec-google/module.go:208
	value := os.Getenv(name)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #7f7ca2467c417bb3 Environment-variable access.
repo/modules/text2vec-gpt4all/module.go:95
	uri := os.Getenv("GPT4ALL_INFERENCE_API")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #e85de3a02f3bfbc5 Environment-variable access.
repo/modules/text2vec-gpt4all/module.go:101
	if envWaitForStartup := os.Getenv("GPT4ALL_WAIT_FOR_STARTUP"); envWaitForStartup != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #929257872e064421 Environment-variable access.
repo/modules/text2vec-huggingface/module.go:102
	apiKey := os.Getenv("HUGGINGFACE_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #b297e63d366295b2 Environment-variable access.
repo/modules/text2vec-jinaai/module.go:105
	jinaAIApiKey := os.Getenv("JINAAI_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #73dfcb717c99d157 Environment-variable access.
repo/modules/text2vec-mistral/module.go:104
	apiKey := os.Getenv("MISTRAL_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #d1db9473d5bb071c Environment-variable access.
repo/modules/text2vec-model2vec/module.go:94
	if envWaitForStartup := os.Getenv("MODEL2VEC_WAIT_FOR_STARTUP"); envWaitForStartup != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #bd8e72ada6f8e4f7 Environment-variable access.
repo/modules/text2vec-model2vec/module.go:98
	url := os.Getenv("MODEL2VEC_INFERENCE_API")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #8ddb68093ab68f83 Environment-variable access.
repo/modules/text2vec-morph/module.go:105
	morphApiKey := os.Getenv("MORPH_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #01b073106d658343 Environment-variable access.
repo/modules/text2vec-nvidia/module.go:104
	apiKey := os.Getenv("NVIDIA_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #0486b9bdfb24b8d2 Environment-variable access.
repo/modules/text2vec-octoai/module.go:92
	octoAIApiKey := os.Getenv("OCTOAI_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #a868c5665b1691a8 Environment-variable access.
repo/modules/text2vec-openai/module.go:107
	openAIApiKey := os.Getenv("OPENAI_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #95921625be951893 Environment-variable access.
repo/modules/text2vec-openai/module.go:108
	openAIOrganization := os.Getenv("OPENAI_ORGANIZATION")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #795eeacb548512f3 Environment-variable access.
repo/modules/text2vec-openai/module.go:109
	azureApiKey := os.Getenv("AZURE_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #1f8ac3cbb84a5c8d Environment-variable access.
repo/modules/text2vec-transformers/module.go:94
	uriPassage := os.Getenv("TRANSFORMERS_PASSAGE_INFERENCE_API")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #53b0fc560bf7230f Environment-variable access.
repo/modules/text2vec-transformers/module.go:95
	uriQuery := os.Getenv("TRANSFORMERS_QUERY_INFERENCE_API")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #07d34e454b453265 Environment-variable access.
repo/modules/text2vec-transformers/module.go:96
	uriCommon := os.Getenv("TRANSFORMERS_INFERENCE_API")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #30e695c558efb600 Environment-variable access.
repo/modules/text2vec-transformers/module.go:117
	if envWaitForStartup := os.Getenv("TRANSFORMERS_WAIT_FOR_STARTUP"); envWaitForStartup != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #bece1e3a831a7613 Environment-variable access.
repo/modules/text2vec-voyageai/module.go:120
	apiKey := os.Getenv("VOYAGEAI_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #e3ebe8751773fd7d Environment-variable access.
repo/modules/usage-gcs/module.go:138
	if v := os.Getenv("USAGE_GCS_BUCKET"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #aafc46493e6b8421 Environment-variable access.
repo/modules/usage-gcs/module.go:146
	if v := os.Getenv("USAGE_GCS_PREFIX"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #d53a775befa6c77d Environment-variable access.
repo/modules/usage-gcs/storage.go:49
	usageGCSAuthProxyEndpoint := os.Getenv("USAGE_GCS_AUTH_PROXY_ENDPOINT")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #0bb31a2f21b3aabe Environment-variable access.
repo/modules/usage-s3/module.go:138
	if v := os.Getenv("USAGE_S3_BUCKET"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #f4f5a904deb4707c Environment-variable access.
repo/modules/usage-s3/module.go:146
	if v := os.Getenv("USAGE_S3_PREFIX"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #e5d228d2ecc16e1c Environment-variable access.
repo/modules/usage-s3/storage.go:45
		if endpoint := os.Getenv("AWS_ENDPOINT"); endpoint != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #380132bfc0b8710b Environment-variable access.
repo/tools/dev/generate_release_notes/main.go:36
	githubToken := os.Getenv("GITHUB_TOKEN")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #c7ac7e0258ffeb8b Environment-variable access.
repo/tools/dev/generate_release_notes/main.go:45
	currentVersion := os.Getenv("CURRENT_VERSION")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #6dc86f0127663b8f Environment-variable access.
repo/tools/dev/generate_release_notes/main.go:51
	previousVersion := os.Getenv("PREVIOUS_VERSION")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #70e3ef4b74e68df4 Filesystem access.
repo/tools/license_headers/main.go:37
	h, err := os.ReadFile("tools/license_headers/header.txt")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #0e7175a40979ae55 Filesystem access.
repo/tools/license_headers/main.go:58
	bytes, err := os.ReadFile(name)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #d375111e136bb30a Filesystem access.
repo/tools/license_headers/main.go:93
	return os.WriteFile(name, updated, 0)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #c52b5e89a2e66dc0 Filesystem access.
repo/tools/license_headers/main.go:107
	return os.WriteFile(name, replaced, 0)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #42afef91d1511fcc Environment-variable access.
repo/tools/release_template/main.go:29
	version := os.Getenv("VERSION")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #2b38e464953d57a1 Environment-variable access.
repo/tools/release_template/main.go:120
	codes := strings.Split(os.Getenv("LANGUAGES"), " ")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #52944a8c528b994e Filesystem access.
repo/tools/swagger_custom_code/main.go:25
	bytes, err := os.ReadFile(name)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #bb94615ead290c7a Filesystem access.
repo/tools/swagger_custom_code/main.go:71
	return os.WriteFile(name, []byte(fmt.Sprintf("%s%s", objectStr, unmarshalStr)), 0)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #c2fdb7c212d16e04 Filesystem access.
repo/usecases/auth/authentication/apikey/db_users.go:830
		file, err := os.Create(filePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #d3ff18d1ba8587d7 Filesystem access.
repo/usecases/auth/authentication/apikey/db_users.go:842
	file, err := os.Open(filename)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #0a84ab144b164fe0 Environment-variable access.
repo/usecases/auth/authentication/oidc/middleware.go:400
		region := os.Getenv("AWS_REGION")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #6ee8824b2e658d4a Environment-variable access.
repo/usecases/auth/authentication/oidc/middleware.go:402
			region = os.Getenv("AWS_DEFAULT_REGION")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #a2accf775c822e4b Filesystem access.
repo/usecases/auth/authorization/docs/generator.go:69
		content, err := os.ReadFile(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #5af99f6231e33b1a Filesystem access.
repo/usecases/auth/authorization/docs/generator.go:160
	f, err := os.Create("auth_calls.md")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #8918d5489e983284 Filesystem access.
repo/usecases/auth/authorization/rbac/model.go:76
		file, err := os.Create(filePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #f598d9bb22dba584 Filesystem access.
repo/usecases/auth/authorization/rbac/model.go:473
	b, err := os.ReadFile(filePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #560dc2827a86f3a4 Filesystem access.
repo/usecases/backup/backend.go:871
	if err := os.WriteFile(destPath, sd.DocIDCounter, os.ModePerm); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #983a3c6a8277e83a Filesystem access.
repo/usecases/backup/backend.go:875
	if err := os.WriteFile(destPath, sd.PropLengthTracker, os.ModePerm); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #5b726a11648aa6d7 Filesystem access.
repo/usecases/backup/backend.go:879
	if err := os.WriteFile(destPath, sd.Version, os.ModePerm); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #837513f7c157802b Filesystem access.
repo/usecases/backup/zip.go:400
	f, err := os.Open(splitFile.AbsPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #e7a1593be0ba28d0 Filesystem access.
repo/usecases/backup/zip.go:452
	f, err := os.Open(absPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #99b191f89c40e65c Filesystem access.
repo/usecases/backup/zip.go:455
			f, err = os.Open(filepath.Join(z.sourcePath, entBackup.DeleteMarkerAdd(relPath)))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #13431b6e696d9610 Filesystem access.
repo/usecases/backup/zip.go:606
		f, err := os.OpenFile(target, os.O_CREATE|os.O_WRONLY, os.FileMode(h.Mode))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #1e1195f2f9a74132 Filesystem access.
repo/usecases/backup/zip.go:622
		f, err := os.OpenFile(target, os.O_CREATE|os.O_WRONLY, os.FileMode(h.Mode))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #62c91071d3d87182 Environment-variable access.
repo/usecases/cluster/transactions_slowlog.go:28
	if age := os.Getenv("TX_SLOW_LOG_AGE_THRESHOLD_SECONDS"); age != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #e1191733d7a9748c Environment-variable access.
repo/usecases/cluster/transactions_slowlog.go:35
	if change := os.Getenv("TX_SLOW_LOG_CHANGE_THRESHOLD_SECONDS"); change != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #1e8e42a5c1a69b98 Environment-variable access.
repo/usecases/config/config_handler.go:61
var DefaultUsingBlockMaxWAND = os.Getenv("USE_INVERTED_SEARCHABLE") == "" || entcfg.Enabled(os.Getenv("USE_INVERTED_SEARCHABLE"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #e3ad060b213262d4 Filesystem access.
repo/usecases/config/config_handler.go:1226
	file, err := os.ReadFile(configFileName)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #6a18998ba05a6805 Environment-variable access.
repo/usecases/config/environment.go:73
	if entcfg.Enabled(os.Getenv("PROMETHEUS_MONITORING_ENABLED")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #bcdee62f22f4e171 Environment-variable access.
repo/usecases/config/environment.go:79
		if entcfg.Enabled(os.Getenv("PROMETHEUS_MONITORING_GROUP_CLASSES")) ||

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #aae3a1b690a14960 Environment-variable access.
repo/usecases/config/environment.go:80
			entcfg.Enabled(os.Getenv("PROMETHEUS_MONITORING_GROUP")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #a39b8bdb3d8a9556 Environment-variable access.
repo/usecases/config/environment.go:91
		if val := strings.TrimSpace(os.Getenv("PROMETHEUS_MONITORING_METRIC_NAMESPACE")); val != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #d3e1ee00cba2d9b5 Environment-variable access.
repo/usecases/config/environment.go:95
		if entcfg.Enabled(os.Getenv("PROMETHEUS_MONITOR_CRITICAL_BUCKETS_ONLY")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #8214906faaa4358c Environment-variable access.
repo/usecases/config/environment.go:100
	if entcfg.Enabled(os.Getenv("TRACK_VECTOR_DIMENSIONS")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #229bd02db9ba00aa Environment-variable access.
repo/usecases/config/environment.go:105
	opt := os.Getenv("MINIMUM_INTERNAL_TIMEOUT")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #fd28a5aa86184118 Environment-variable access.
repo/usecases/config/environment.go:116
	if v := os.Getenv("TRACK_VECTOR_DIMENSIONS_INTERVAL"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #e72011fea105f91e Environment-variable access.
repo/usecases/config/environment.go:126
	if entcfg.Enabled(os.Getenv("REINDEX_VECTOR_DIMENSIONS_AT_STARTUP")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #64fa79d5f4516ccf Environment-variable access.
repo/usecases/config/environment.go:130
	if entcfg.Enabled(os.Getenv("DISABLE_LAZY_LOAD_SHARDS")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #b90ac808fa824045 Environment-variable access.
repo/usecases/config/environment.go:138
	if v := os.Getenv("LAZY_LOAD_SHARD_COUNT_THRESHOLD"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #8ad01b924c7cac2a Environment-variable access.
repo/usecases/config/environment.go:157
	if v := os.Getenv("LAZY_LOAD_SHARD_SIZE_THRESHOLD_GB"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #cf34fc30f25a4e59 Environment-variable access.
repo/usecases/config/environment.go:170
	if entcfg.Enabled(os.Getenv("FORCE_FULL_REPLICAS_SEARCH")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #ee0077fe0e6f6099 Environment-variable access.
repo/usecases/config/environment.go:174
	if v := os.Getenv("TRANSFER_INACTIVITY_TIMEOUT"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #e26cc13b7c15d552 Environment-variable access.
repo/usecases/config/environment.go:194
	if entcfg.Enabled(os.Getenv("RECOUNT_PROPERTIES_AT_STARTUP")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #2a3f4122a7a2f230 Environment-variable access.
repo/usecases/config/environment.go:198
	if entcfg.Enabled(os.Getenv("REINDEX_SET_TO_ROARINGSET_AT_STARTUP")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #6f354c45763fb015 Environment-variable access.
repo/usecases/config/environment.go:202
	if entcfg.Enabled(os.Getenv("INDEX_MISSING_TEXT_FILTERABLE_AT_STARTUP")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #cebfd03def21631b Environment-variable access.
repo/usecases/config/environment.go:254
	if v := os.Getenv("REINDEX_INDEXES_AT_STARTUP"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #1ba4c3fcbc1edf1b Environment-variable access.
repo/usecases/config/environment.go:267
	if v := os.Getenv("PROMETHEUS_MONITORING_PORT"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #d21b3534de2ef93c Environment-variable access.
repo/usecases/config/environment.go:276
	if v := os.Getenv("GO_PROFILING_PORT"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #05b75c7b4ab081a5 Environment-variable access.
repo/usecases/config/environment.go:285
	if entcfg.Enabled(os.Getenv("AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #751bd3c336752704 Environment-variable access.
repo/usecases/config/environment.go:289
	if entcfg.Enabled(os.Getenv("AUTHENTICATION_OIDC_ENABLED")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #5d77d1cfa5bc0186 Environment-variable access.
repo/usecases/config/environment.go:304
		if entcfg.Enabled(os.Getenv("AUTHENTICATION_OIDC_SKIP_CLIENT_ID_CHECK")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #dcb465676ab65147 Environment-variable access.
repo/usecases/config/environment.go:309
		if entcfg.Enabled(os.Getenv("AUTHENTICATION_OIDC_INSECURE_SKIP_TLS_VERIFY")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #06d9badb6240098e Environment-variable access.
repo/usecases/config/environment.go:313
		if v := os.Getenv("AUTHENTICATION_OIDC_ISSUER"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #c82bf450cd578fcf Environment-variable access.
repo/usecases/config/environment.go:317
		if v := os.Getenv("AUTHENTICATION_OIDC_CLIENT_ID"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #5bf320be74bf4d3d Environment-variable access.
repo/usecases/config/environment.go:321
		if v := os.Getenv("AUTHENTICATION_OIDC_SCOPES"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #f46eda06a73d0920 Environment-variable access.
repo/usecases/config/environment.go:325
		if v := os.Getenv("AUTHENTICATION_OIDC_USERNAME_CLAIM"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #be3d8f1a071d5299 Environment-variable access.
repo/usecases/config/environment.go:329
		if v := os.Getenv("AUTHENTICATION_OIDC_GROUPS_CLAIM"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #b0ac1bfeef4c2c87 Environment-variable access.
repo/usecases/config/environment.go:333
		if v := os.Getenv("AUTHENTICATION_OIDC_NAMESPACE_CLAIM"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #93568bd17d4f9c03 Environment-variable access.
repo/usecases/config/environment.go:337
		if v := os.Getenv("AUTHENTICATION_OIDC_GLOBAL_PRINCIPAL_CLAIM"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #266f1dad05ee62b7 Environment-variable access.
repo/usecases/config/environment.go:341
		if v := os.Getenv("AUTHENTICATION_OIDC_CERTIFICATE"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #d784803ef740db78 Environment-variable access.
repo/usecases/config/environment.go:345
		if v := os.Getenv("AUTHENTICATION_OIDC_JWKS_URL"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #525ee14ef2057f5e Environment-variable access.
repo/usecases/config/environment.go:362
	if entcfg.Enabled(os.Getenv("AUTHENTICATION_DB_USERS_ENABLED")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #e62a2e1d4287d770 Environment-variable access.
repo/usecases/config/environment.go:366
	if entcfg.Enabled(os.Getenv("AUTHENTICATION_APIKEY_ENABLED")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #39582b49fc2c9fb4 Environment-variable access.
repo/usecases/config/environment.go:369
		if rawKeys, ok := os.LookupEnv("AUTHENTICATION_APIKEY_ALLOWED_KEYS"); ok {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #5ec48a4806faa838 Environment-variable access.
repo/usecases/config/environment.go:374
		if rawUsers, ok := os.LookupEnv("AUTHENTICATION_APIKEY_USERS"); ok {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #e9aa9088817684e8 Environment-variable access.
repo/usecases/config/environment.go:381
	if entcfg.Enabled(os.Getenv("AUTHORIZATION_ADMINLIST_ENABLED")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #29534f9dfcc1836c Environment-variable access.
repo/usecases/config/environment.go:384
		usersString, ok := os.LookupEnv("AUTHORIZATION_ADMINLIST_USERS")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #57306384589c5ea8 Environment-variable access.
repo/usecases/config/environment.go:389
		roUsersString, ok := os.LookupEnv("AUTHORIZATION_ADMINLIST_READONLY_USERS")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #7cfe29aa17e22747 Environment-variable access.
repo/usecases/config/environment.go:394
		groupsString, ok := os.LookupEnv("AUTHORIZATION_ADMINLIST_GROUPS")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #36d52a4f1860e8ad Environment-variable access.
repo/usecases/config/environment.go:399
		roGroupsString, ok := os.LookupEnv("AUTHORIZATION_ADMINLIST_READONLY_GROUPS")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #b50a2d9ac83f3f65 Environment-variable access.
repo/usecases/config/environment.go:405
	if entcfg.Enabled(os.Getenv("AUTHORIZATION_ENABLE_RBAC")) || entcfg.Enabled(os.Getenv("AUTHORIZATION_RBAC_ENABLED")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #f6206945267fd223 Environment-variable access.
repo/usecases/config/environment.go:408
		if entcfg.Enabled(os.Getenv("AUTHORIZATION_RBAC_IP_IN_AUDIT_LOG_DISABLED")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #c1f18907db8bfc78 Environment-variable access.
repo/usecases/config/environment.go:412
		adminsString, ok := os.LookupEnv("AUTHORIZATION_RBAC_ROOT_USERS")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #94e84e2a968bbf31 Environment-variable access.
repo/usecases/config/environment.go:416
			adminsString, ok := os.LookupEnv("AUTHORIZATION_ADMIN_USERS")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #daf44e03226c6c33 Environment-variable access.
repo/usecases/config/environment.go:422
		groupString, ok := os.LookupEnv("AUTHORIZATION_RBAC_ROOT_GROUPS")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #771acaeaea96c818 Environment-variable access.
repo/usecases/config/environment.go:427
		viewerGroupString, ok := os.LookupEnv("AUTHORIZATION_RBAC_READONLY_GROUPS")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #f57ca98565a4672b Environment-variable access.
repo/usecases/config/environment.go:432
			viewerGroupString, ok := os.LookupEnv("EXPERIMENTAL_AUTHORIZATION_RBAC_READONLY_ROOT_GROUPS")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #23cbe6483579b30e Environment-variable access.
repo/usecases/config/environment.go:438
		readOnlyUsersString, ok := os.LookupEnv("EXPERIMENTAL_AUTHORIZATION_RBAC_READONLY_USERS")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #010bbbf9a4c8321c Environment-variable access.
repo/usecases/config/environment.go:443
		adminUsersString, ok := os.LookupEnv("EXPERIMENTAL_AUTHORIZATION_RBAC_ADMIN_USERS")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #bd68c5f3545dc129 Environment-variable access.
repo/usecases/config/environment.go:449
	config.Profiling.Disabled = entcfg.Enabled(os.Getenv("GO_PROFILING_DISABLE"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #9827bb6f862472f7 Environment-variable access.
repo/usecases/config/environment.go:452
	if v, ok := os.LookupEnv("DEBUG_ENDPOINTS_ENABLED"); ok {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #9d807b7efc807d75 Environment-variable access.
repo/usecases/config/environment.go:462
	if os.Getenv("PERSISTENCE_LSM_ACCESS_STRATEGY") == "pread" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #c62944047a01ad7a Environment-variable access.
repo/usecases/config/environment.go:466
	if v := os.Getenv("PERSISTENCE_LSM_MAX_SEGMENT_SIZE"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #efff92b35c4bf0b4 Environment-variable access.
repo/usecases/config/environment.go:485
	if entcfg.Enabled(os.Getenv("PERSISTENCE_LSM_SEPARATE_OBJECTS_COMPACTIONS")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #14e0dc8a03079287 Environment-variable access.
repo/usecases/config/environment.go:489
	if entcfg.Enabled(os.Getenv("PERSISTENCE_LSM_ENABLE_SEGMENTS_CHECKSUM_VALIDATION")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #bbb17e89299ccf52 Environment-variable access.
repo/usecases/config/environment.go:493
	if entcfg.Enabled(os.Getenv("PERSISTENCE_LSM_SKIP_WRITE_CLASSNAME_ENABLED")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #e17101e4e09091a9 Environment-variable access.
repo/usecases/config/environment.go:497
	if v := os.Getenv("PERSISTENCE_MIN_MMAP_SIZE"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #4ce2cbc4b0434cf5 Environment-variable access.
repo/usecases/config/environment.go:508
	if entcfg.Enabled(os.Getenv("PERSISTENCE_LAZY_SEGMENTS_DISABLED")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #bc9eadcf0ca1969f Environment-variable access.
repo/usecases/config/environment.go:512
	if entcfg.Enabled(os.Getenv("PERSISTENCE_SEGMENT_INFO_FROM_FILE_DISABLED")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #a99945c72561eea9 Environment-variable access.
repo/usecases/config/environment.go:518
	if entcfg.Enabled(os.Getenv("PERSISTENCE_WRITE_METADATA_FILES_ENABLED")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #4027d84a95d22c3b Environment-variable access.
repo/usecases/config/environment.go:524
	if v := os.Getenv("PERSISTENCE_MAX_REUSE_WAL_SIZE"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #76d58490e63613c6 Environment-variable access.
repo/usecases/config/environment.go:543
	if v := os.Getenv("PERSISTENCE_HNSW_MAX_LOG_SIZE"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #bb196b1a5b44585c Environment-variable access.
repo/usecases/config/environment.go:574
		if _, set := os.LookupEnv(envVar); set {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #2341ae271bcbaee1 Environment-variable access.
repo/usecases/config/environment.go:581
	if v := os.Getenv("DEFAULT_QUANTIZATION"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #a8c82ca0c0a36c53 Environment-variable access.
repo/usecases/config/environment.go:588
	if v := os.Getenv("DEFAULT_VECTOR_INDEX"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #56be758807fa1280 Environment-variable access.
repo/usecases/config/environment.go:615
	if entcfg.Enabled(os.Getenv("INDEX_RANGEABLE_IN_MEMORY")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #837db23cb6c9bdf9 Environment-variable access.
repo/usecases/config/environment.go:681
	if v := os.Getenv("PERSISTENCE_DATA_PATH"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #7d04c5f0f342fcd0 Environment-variable access.
repo/usecases/config/environment.go:703
	if v := os.Getenv("ORIGIN"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #9d094888d913c0ea Environment-variable access.
repo/usecases/config/environment.go:707
	if v := os.Getenv("CONTEXTIONARY_URL"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #9dd32084522b6eff Environment-variable access.
repo/usecases/config/environment.go:711
	if v := os.Getenv("QUERY_DEFAULTS_LIMIT"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #622cd24afb7bac33 Environment-variable access.
repo/usecases/config/environment.go:724
	if v := os.Getenv("BACKUP_MIN_CHUNK_SIZE"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #26f3efe75bcefb8c Environment-variable access.
repo/usecases/config/environment.go:735
	if v := os.Getenv("BACKUP_CHUNK_TARGET_SIZE"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #e5110ab5c2a27f63 Environment-variable access.
repo/usecases/config/environment.go:746
	if v := os.Getenv("BACKUP_SPLIT_FILE_SIZE"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #d686e7c55edc6baa Environment-variable access.
repo/usecases/config/environment.go:757
	if entcfg.Enabled(os.Getenv("BACKUP_SKIP_ACCESS_CHECK")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #7b53e51407935a24 Environment-variable access.
repo/usecases/config/environment.go:761
	if v := os.Getenv("QUERY_DEFAULTS_LIMIT_GRAPHQL"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #43d383435bb79c1f Environment-variable access.
repo/usecases/config/environment.go:774
	if v := os.Getenv("QUERY_MAXIMUM_RESULTS"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #c0f6e1bc1f04394c Environment-variable access.
repo/usecases/config/environment.go:785
	if v := os.Getenv("QUERY_HYBRID_MAXIMUM_RESULTS"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #66f6b3bf3e5562d6 Environment-variable access.
repo/usecases/config/environment.go:795
	if v := os.Getenv("QUERY_BOOST_DEFAULT_DEPTH"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #369e39923739ecf1 Environment-variable access.
repo/usecases/config/environment.go:808
	if v := os.Getenv("QUERY_NESTED_CROSS_REFERENCE_LIMIT"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #1b3c53768418b066 Environment-variable access.
repo/usecases/config/environment.go:828
	if v := os.Getenv("MAX_IMPORT_GOROUTINES_FACTOR"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #59e55b3a040d4bb0 Environment-variable access.
repo/usecases/config/environment.go:841
	if v := os.Getenv("DEFAULT_VECTORIZER_MODULE"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #5ca75b3a5ffc6bdf Environment-variable access.
repo/usecases/config/environment.go:851
	if v := os.Getenv("MODULES_CLIENT_TIMEOUT"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #ec491fd8de950f8d Environment-variable access.
repo/usecases/config/environment.go:861
	if v := os.Getenv("DEFAULT_VECTOR_DISTANCE_METRIC"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #f5ac504217ddbdd1 Environment-variable access.
repo/usecases/config/environment.go:865
	if v := os.Getenv("ENABLE_MODULES"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #3f2baae06b3c7047 Environment-variable access.
repo/usecases/config/environment.go:869
	if entcfg.Enabled(os.Getenv("API_BASED_MODULES_DISABLED")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #91736ff975323137 Environment-variable access.
repo/usecases/config/environment.go:876
	if v := os.Getenv("AUTOSCHEMA_ENABLED"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #96f208ba8b95f818 Environment-variable access.
repo/usecases/config/environment.go:882
	if v := os.Getenv("AUTOSCHEMA_DEFAULT_STRING"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #b7af6387272e35f9 Environment-variable access.
repo/usecases/config/environment.go:886
	if v := os.Getenv("AUTOSCHEMA_DEFAULT_NUMBER"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #73b9085d448a82e0 Environment-variable access.
repo/usecases/config/environment.go:890
	if v := os.Getenv("AUTOSCHEMA_DEFAULT_DATE"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #e2e79ffe4f638ec1 Environment-variable access.
repo/usecases/config/environment.go:895
	if v := os.Getenv("TENANT_ACTIVITY_READ_LOG_LEVEL"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #5e403cbc0bebfc56 Environment-variable access.
repo/usecases/config/environment.go:901
	if v := os.Getenv("TENANT_ACTIVITY_WRITE_LOG_LEVEL"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #be8e768c30d2b8cd Environment-variable access.
repo/usecases/config/environment.go:912
	if v := os.Getenv("GO_BLOCK_PROFILE_RATE"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #d50278c2ddf7b8f0 Environment-variable access.
repo/usecases/config/environment.go:921
	if v := os.Getenv("GO_MUTEX_PROFILE_FRACTION"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #d63bd64da600c545 Environment-variable access.
repo/usecases/config/environment.go:930
	if v := os.Getenv("MAXIMUM_CONCURRENT_GET_REQUESTS"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #0495772f92dba151 Environment-variable access.
repo/usecases/config/environment.go:971
	if v := os.Getenv("GRPC_CERT_FILE"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #ed5b477b2bd9ce88 Environment-variable access.
repo/usecases/config/environment.go:975
	if v := os.Getenv("GRPC_KEY_FILE"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #7b119852aac96368 Environment-variable access.
repo/usecases/config/environment.go:999
	config.MCP.Enabled = configRuntime.NewDynamicValue(entcfg.Enabled(os.Getenv("MCP_SERVER_ENABLED")))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #acea6dc49d94ec56 Environment-variable access.
repo/usecases/config/environment.go:1002
	if v := os.Getenv("MCP_SERVER_WRITE_ACCESS_ENABLED"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #bbd1aef55925ea3d Environment-variable access.
repo/usecases/config/environment.go:1006
	if v := os.Getenv("MCP_SERVER_CONFIG_PATH"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #94d575777bb22211 Environment-variable access.
repo/usecases/config/environment.go:1010
	config.DisableGraphQL = configRuntime.NewDynamicValue(entcfg.Enabled(os.Getenv("DISABLE_GRAPHQL")))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #35656518c2da13f7 Environment-variable access.
repo/usecases/config/environment.go:1012
	config.Namespaces.Enabled = entcfg.Enabled(os.Getenv("NAMESPACES_ENABLED"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #d32971a1597276e9 Environment-variable access.
repo/usecases/config/environment.go:1044
	config.Replication.AsyncReplicationDisabled = configRuntime.NewDynamicValue(entcfg.Enabled(os.Getenv("ASYNC_REPLICATION_DISABLED")))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #ad0b0efdcead5717 Environment-variable access.
repo/usecases/config/environment.go:1201
	if v := os.Getenv("REPLICATION_FORCE_DELETION_STRATEGY"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #42ba2882e8128bc8 Environment-variable access.
repo/usecases/config/environment.go:1205
	config.Replication.ReplicationGRPCEnabled = configRuntime.NewDynamicValue(entcfg.Enabled(os.Getenv("REPLICATION_GRPC_ENABLED")))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #575dc8dbb7814748 Environment-variable access.
repo/usecases/config/environment.go:1208
	if entcfg.Enabled(os.Getenv("DISABLE_TELEMETRY")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #011ccca304648340 Environment-variable access.
repo/usecases/config/environment.go:1213
	if v := os.Getenv("TELEMETRY_URL"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #40fdf380ff57d58f Environment-variable access.
repo/usecases/config/environment.go:1218
	if v := os.Getenv("TELEMETRY_PUSH_INTERVAL"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #56c7acfcc8412e56 Environment-variable access.
repo/usecases/config/environment.go:1227
		waitEnv, waitEnvSet := os.LookupEnv("HNSW_STARTUP_WAIT_FOR_VECTOR_CACHE")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #f282bd9f957554e5 Environment-variable access.
repo/usecases/config/environment.go:1240
	if entcfg.Enabled(os.Getenv("ASYNC_INDEXING")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #b61d29c2f54aa376 Environment-variable access.
repo/usecases/config/environment.go:1298
	if v := os.Getenv("ALLOWED_VECTOR_INDEX_TYPES"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #653dfb2fb26f10fc Environment-variable access.
repo/usecases/config/environment.go:1307
	if v := os.Getenv("ALLOWED_COMPRESSION_TYPES"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #3b6ecbb3726334c7 Environment-variable access.
repo/usecases/config/environment.go:1327
	if entcfg.Enabled(os.Getenv("EXPERIMENTAL_METADATA_SERVER_ENABLED")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #9545656fa0a43913 Environment-variable access.
repo/usecases/config/environment.go:1331
	if v := os.Getenv("EXPERIMENTAL_METADATA_SERVER_GRPC_LISTEN_ADDRESS"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #6bd9dcad9f71c488 Environment-variable access.
repo/usecases/config/environment.go:1342
	config.RuntimeOverrides.Enabled = entcfg.Enabled(os.Getenv("RUNTIME_OVERRIDES_ENABLED"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #8cb3bc38c78b96ef Environment-variable access.
repo/usecases/config/environment.go:1344
	if v := os.Getenv("RUNTIME_OVERRIDES_PATH"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #8dc2ea25e2888714 Environment-variable access.
repo/usecases/config/environment.go:1349
	if v := os.Getenv("RUNTIME_OVERRIDES_LOAD_INTERVAL"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #be10fc8002031a1f Environment-variable access.
repo/usecases/config/environment.go:1386
	if v := os.Getenv("REPLICA_MOVEMENT_ENABLED"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #f5ddd8776ea3d1bf Environment-variable access.
repo/usecases/config/environment.go:1391
	if v := os.Getenv("REVECTORIZE_CHECK_DISABLED"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #711ed7e91849fa41 Environment-variable access.
repo/usecases/config/environment.go:1396
	querySlowLogEnabled := entcfg.Enabled(os.Getenv("QUERY_SLOW_LOG_ENABLED"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #8a33e1724aef4ff0 Environment-variable access.
repo/usecases/config/environment.go:1400
	if v := os.Getenv("QUERY_SLOW_LOG_THRESHOLD"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #373dfe4a8a1ca635 Environment-variable access.
repo/usecases/config/environment.go:1411
	if v := os.Getenv(envName); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #2fb4a816037d6308 Environment-variable access.
repo/usecases/config/environment.go:1421
	if v := os.Getenv(envName); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #85f0b4bd5b211e04 Environment-variable access.
repo/usecases/config/environment.go:1430
	if v := os.Getenv("INVERTED_SORTER_DISABLED"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #e8efe25a5c72fb35 Environment-variable access.
repo/usecases/config/environment.go:1436
		entcfg.Enabled(os.Getenv("PERSISTENCE_LSM_LAZY_PROPLENGTHS")))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #4bc83e854fa90fbe Environment-variable access.
repo/usecases/config/environment.go:1439
	if v := os.Getenv("OPERATIONAL_MODE"); v != "" && (v == READ_WRITE || v == READ_ONLY || v == WRITE_ONLY || v == SCALE_OUT) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #f54afadb0eb86702 Environment-variable access.
repo/usecases/config/environment.go:1445
	if v := os.Getenv("DIMENSION_METRICS_DISABLED"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #9cce1c6d75ee5689 Environment-variable access.
repo/usecases/config/environment.go:1456
		MetadataOnlyVoters: entcfg.Enabled(os.Getenv("RAFT_METADATA_ONLY_VOTERS")),

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #44fe53b2bf6c134a Environment-variable access.
repo/usecases/config/environment.go:1591
	cfg.EnableOneNodeRecovery = entcfg.Enabled(os.Getenv("RAFT_ENABLE_ONE_NODE_RECOVERY"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #e7ddd4fdf6062d1a Environment-variable access.
repo/usecases/config/environment.go:1592
	cfg.ForceOneNodeRecovery = entcfg.Enabled(os.Getenv("RAFT_FORCE_ONE_NODE_RECOVERY"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #331b34198137af16 Environment-variable access.
repo/usecases/config/environment.go:1598
	if v := os.Getenv("CORS_ALLOW_ORIGIN"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #d198b4610391703d Environment-variable access.
repo/usecases/config/environment.go:1604
	if v := os.Getenv("CORS_ALLOW_METHODS"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #ac4f42ed5deb68d4 Environment-variable access.
repo/usecases/config/environment.go:1610
	if v := os.Getenv("CORS_ALLOW_HEADERS"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #7fa78629763af402 Environment-variable access.
repo/usecases/config/environment.go:1709
	if v := os.Getenv(envName); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #703b6c66082bc0a6 Environment-variable access.
repo/usecases/config/environment.go:1763
	if v := os.Getenv(envName); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #22a10183720a5e0e Environment-variable access.
repo/usecases/config/environment.go:1784
	if v := os.Getenv(envName); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #88b66c2c8aaf7152 Environment-variable access.
repo/usecases/config/environment.go:1827
	if v := os.Getenv(envName); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #40f760c4c71482dd Environment-variable access.
repo/usecases/config/environment.go:1904
	if v := os.Getenv(envName); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #5b08596a6795f08d Environment-variable access.
repo/usecases/config/environment.go:1912
	if v := os.Getenv(varName); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #a0cf0c3638f64e27 Environment-variable access.
repo/usecases/config/environment.go:1922
	if v := os.Getenv("DISK_USE_WARNING_PERCENTAGE"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #fd15522030f719d6 Environment-variable access.
repo/usecases/config/environment.go:1932
	if v := os.Getenv("DISK_USE_READONLY_PERCENTAGE"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #f8e578c69b0c6802 Environment-variable access.
repo/usecases/config/environment.go:1942
	if v := os.Getenv("MEMORY_WARNING_PERCENTAGE"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #305f798a4e55756e Environment-variable access.
repo/usecases/config/environment.go:1952
	if v := os.Getenv("MEMORY_READONLY_PERCENTAGE"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #0dc0aec8804dd97f Environment-variable access.
repo/usecases/config/environment.go:1972
	cfg.Hostname = os.Getenv("CLUSTER_HOSTNAME")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #8e67a51765b56151 Environment-variable access.
repo/usecases/config/environment.go:1976
	cfg.Join = os.Getenv("CLUSTER_JOIN")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #3195263c110c0a29 Environment-variable access.
repo/usecases/config/environment.go:1978
	advertiseAddr, advertiseAddrSet := os.LookupEnv("CLUSTER_ADVERTISE_ADDR")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #13f12f0ca30f1b31 Environment-variable access.
repo/usecases/config/environment.go:1983
	bindAddr, bindAddrSet := os.LookupEnv("CLUSTER_BIND_ADDR")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #df528dde9ce6afa8 Environment-variable access.
repo/usecases/config/environment.go:1988
	advertisePort, advertisePortSet := os.LookupEnv("CLUSTER_ADVERTISE_PORT")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #0cdee93526185b41 Environment-variable access.
repo/usecases/config/environment.go:1997
	cfg.Localhost = entcfg.Enabled(os.Getenv("CLUSTER_IN_LOCALHOST"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #2177efe0620b6365 Environment-variable access.
repo/usecases/config/environment.go:1998
	gossipBind, gossipBindSet := os.LookupEnv("CLUSTER_GOSSIP_BIND_PORT")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #2c1c95beb8c3b441 Environment-variable access.
repo/usecases/config/environment.go:1999
	dataBind, dataBindSet := os.LookupEnv("CLUSTER_DATA_BIND_PORT")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #884ff832828fc11c Environment-variable access.
repo/usecases/config/environment.go:2024
		os.Getenv("CLUSTER_IGNORE_SCHEMA_SYNC"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #069b3d56521ffae3 Environment-variable access.
repo/usecases/config/environment.go:2026
		os.Getenv("CLUSTER_SKIP_SCHEMA_REPAIR"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #447cbe62d839a373 Environment-variable access.
repo/usecases/config/environment.go:2028
	basicAuthUsername := os.Getenv("CLUSTER_BASIC_AUTH_USERNAME")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #5b9b91d52406e6ca Environment-variable access.
repo/usecases/config/environment.go:2029
	basicAuthPassword := os.Getenv("CLUSTER_BASIC_AUTH_PASSWORD")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #468c4b6f70be7bed Environment-variable access.
repo/usecases/config/environment.go:2038
	cfg.MemberlistFastFailureDetection = entcfg.Enabled(os.Getenv("MEMBERLIST_FAST_FAILURE_DETECTION")) || entcfg.Enabled(os.Getenv("FAST_FAILURE_DETECTION")) // backward compatibility

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #55f3006a1a3fe909 Environment-variable access.
repo/usecases/config/environment.go:2052
	if m := os.Getenv("MAINTENANCE_NODES"); m != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #f738e9fc1b32650c Environment-variable access.
repo/usecases/config/environment.go:2064
	if v := os.Getenv(envName); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #e5ef70c9bc8dffb3 Environment-variable access.
repo/usecases/config/environment.go:2254
	if v, ok := os.LookupEnv("EXPORT_ENABLED"); ok {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #81ee273a68a6900d Environment-variable access.
repo/usecases/config/environment.go:2260
	if v, ok := os.LookupEnv("EXPORT_DEFAULT_BUCKET"); ok {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #17bb35caaf882181 Environment-variable access.
repo/usecases/config/environment.go:2266
	if v, ok := os.LookupEnv("EXPORT_DEFAULT_PATH"); ok {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #59862afd1674982d Environment-variable access.
repo/usecases/config/environment.go:2272
	if entcfg.Enabled(os.Getenv("EXPORT_SKIP_ACCESS_CHECK")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #7ced62e0d8c388b3 Environment-variable access.
repo/usecases/config/parser/envparser.go:27
	if env := os.Getenv(envName); env != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #0f85b7ce09444ea5 Environment-variable access.
repo/usecases/config/parser/envparser.go:43
	if v := os.Getenv(envName); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #46723dc6fa29bc9e Environment-variable access.
repo/usecases/config/runtime/feature_flag.go:219
	val, ok := os.LookupEnv(envVariable)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #33aad0b37c6d35c0 Environment-variable access.
repo/usecases/config/runtime/launch_darkly.go:57
	ldApiKey, ok := os.LookupEnv(WeaviateLDApiKey)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #bc838e7571f80e13 Environment-variable access.
repo/usecases/config/runtime/launch_darkly.go:61
	orgKey, ok := os.LookupEnv(WeaviateLDOrgKey)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #d4296359641d82ad Environment-variable access.
repo/usecases/config/runtime/launch_darkly.go:65
	clusterKey, ok := os.LookupEnv(WeaviateLDClusterKey)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #02c30ad10933c80b Environment-variable access.
repo/usecases/config/runtime/launch_darkly.go:70
	nodeKey, ok := os.LookupEnv("CLUSTER_HOSTNAME")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #8ce7742c87d6e9a3 Filesystem access.
repo/usecases/config/runtime/manager.go:143
	f, err := os.Open(cm.path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #eac42ed54bea3d1e Environment-variable access.
repo/usecases/file/hardlink.go:50
	if os.Getenv("WEAVIATE_TEST_FORCE_NO_HARDLINK") == "true" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #15a1d671c9733329 Filesystem access.
repo/usecases/file/hardlink.go:97
	in, err := os.Open(src)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #27bc44ae74add41f Filesystem access.
repo/usecases/file/hardlink.go:103
	out, err := os.Create(dst)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #35d8c0b2795a41a7 Filesystem access.
repo/usecases/integrity/file_crc32.go:21
	file, err := os.Open(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #085cfd6528d0fa74 Filesystem access.
repo/usecases/memwatch/monitor.go:202
	file, err := os.Open(filePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #b44cc9668981d8dd Environment-variable access.
repo/usecases/memwatch/monitor.go:229
	if v := os.Getenv("MAX_MEMORY_MAPPINGS"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #9e2956820ad3eeab Filesystem access.
repo/usecases/memwatch/monitor.go:246
	file, err := os.Open("/proc/sys/vm/max_map_count")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #3c0a5be8637d350d Environment-variable access.
repo/usecases/memwatch/monitor.go:359
	if v := os.Getenv("MEMORY_ESTIMATE_DELETE_BYTES"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #f959e4d45b210b0c Filesystem access.
repo/usecases/modulecomponents/usage/base_module.go:387
		lastPushPathData, err := os.ReadFile(b.lastPushDateFilePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #2a1a28c1fae2fac7 Filesystem access.
repo/usecases/modulecomponents/usage/base_module.go:417
	return os.WriteFile(b.lastPushDateFilePath, []byte(timeStr), os.FileMode(0o644))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #4a813a8b25dba9d2 Environment-variable access.
repo/usecases/modulecomponents/usage/base_storage.go:116
	return os.Getenv("CLUSTER_IN_LOCALHOST") != ""

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #2800eba1dcc31089 Environment-variable access.
repo/usecases/modulecomponents/usage/base_storage.go:156
	if v := os.Getenv("USAGE_SCRAPE_INTERVAL"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #fb2cd3a152ece03e Environment-variable access.
repo/usecases/modulecomponents/usage/base_storage.go:168
	if v := os.Getenv("USAGE_POLICY_VERSION"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #0b84660f0cad764b Environment-variable access.
repo/usecases/modulecomponents/usage/base_storage.go:177
	if v := os.Getenv("USAGE_SHARD_CONCURRENCY"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #9dd2cd03f216bbbc Environment-variable access.
repo/usecases/modulecomponents/usage/base_storage.go:190
	if v := os.Getenv("USAGE_VERIFY_PERMISSIONS"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #750fd296af5d7187 Environment-variable access.
repo/usecases/modulecomponents/validate_baseurl.go:36
	return entcfg.Enabled(os.Getenv("MODULES_VALIDATE_BASE_URL"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #b0294131630902a2 Environment-variable access.
repo/usecases/modulecomponents/vectorizer/object_texts.go:79
	if entcfg.Enabled(os.Getenv("LOWERCASE_VECTORIZATION_INPUT")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #0336a19b95cb0d11 Environment-variable access.
repo/usecases/schema/class.go:783
				if os.Getenv("DEFAULT_TOKENIZATION") != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #36b19aafebdd0ce0 Environment-variable access.
repo/usecases/schema/class.go:784
					prop.Tokenization = os.Getenv("DEFAULT_TOKENIZATION")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #ce99efad7d720970 Environment-variable access.
repo/usecases/schema/class.go:1159
				if !entcfg.Enabled(os.Getenv("USE_GSE")) && !entcfg.Enabled(os.Getenv("ENABLE_TOKENIZER_GSE")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #8cf2d214c415c683 Environment-variable access.
repo/usecases/schema/class.go:1164
				if !entcfg.Enabled(os.Getenv("ENABLE_TOKENIZER_GSE_CH")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #c4d77d058dcc0f69 Environment-variable access.
repo/usecases/schema/class.go:1169
				if !entcfg.Enabled(os.Getenv("ENABLE_TOKENIZER_KAGOME_KR")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #04c8dfb3d4e5d7ba Environment-variable access.
repo/usecases/schema/class.go:1174
				if !entcfg.Enabled(os.Getenv("ENABLE_TOKENIZER_KAGOME_JA")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #ec3cf3fb7b65bce0 Filesystem access.
repo/usecases/schema/migrate/fs/file_structure_migration.go:130
			if f, err := os.Open(filepath.Dir(newClassRoot)); err == nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #13c15040bda08fe1 Environment-variable access.
repo/usecases/schema/property.go:244
	if !entcfg.Enabled(os.Getenv("ENABLE_EXPERIMENTAL_ALTER_SCHEMA_DROP_VECTOR_INDEX_ENDPOINT")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #2e4c8e8a4c0862b1 Environment-variable access.
repo/usecases/telemetry/opentelemetry/config.go:54
	cfg.Enabled = config.Enabled(os.Getenv("EXPERIMENTAL_OTEL_ENABLED"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #18f7001b1656b05d Environment-variable access.
repo/usecases/telemetry/opentelemetry/config.go:60
	if serviceName := os.Getenv("EXPERIMENTAL_OTEL_SERVICE_NAME"); serviceName != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #e4667bf89204c702 Environment-variable access.
repo/usecases/telemetry/opentelemetry/config.go:64
	if environment := os.Getenv("EXPERIMENTAL_OTEL_ENVIRONMENT"); environment != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #8dcfc10d96f3b796 Environment-variable access.
repo/usecases/telemetry/opentelemetry/config.go:69
	if endpoint := os.Getenv("EXPERIMENTAL_OTEL_EXPORTER_OTLP_ENDPOINT"); endpoint != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #89b38018e9f5fec6 Environment-variable access.
repo/usecases/telemetry/opentelemetry/config.go:73
	if protocol := os.Getenv("EXPERIMENTAL_OTEL_EXPORTER_OTLP_PROTOCOL"); protocol != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #c209cd1f8c82ef34 Environment-variable access.
repo/usecases/telemetry/opentelemetry/config.go:91
	if samplerArg := os.Getenv("EXPERIMENTAL_OTEL_TRACES_SAMPLER_ARG"); samplerArg != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #4146234724561cf3 Environment-variable access.
repo/usecases/telemetry/opentelemetry/config.go:98
	if batchTimeout := os.Getenv("EXPERIMENTAL_OTEL_BSP_EXPORT_TIMEOUT"); batchTimeout != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs production #8bcb145e59501879 Environment-variable access.
repo/usecases/telemetry/opentelemetry/config.go:104
	if batchSize := os.Getenv("EXPERIMENTAL_OTEL_BSP_MAX_EXPORT_BATCH_SIZE"); batchSize != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

</> Dependencies

cloud.google.com/go/compute/metadata

go dependency
high pii_flow dependency Excluded from app score #a5894ecabf15b43c User/PII-bearing data read from the environment or filesystem flows to an external network call. This is potential data exfiltration.
pkgs/go/[email protected]/metadata.go:530 · flow /tmp/closeopen-mj1c2fb7/pkgs/go/[email protected]/metadata.go:519 → /tmp/closeopen-mj1c2fb7/pkgs/go/[email protected]/metadata.go:530
	req, err := http.NewRequestWithContext(ctx, "GET", u, nil)

User/PII-bearing data flows to an external sink — the classic data-exfiltration shape.

Fix: Confirm no user identifiers reach this sink; redact/hash before sending, or remove the flow.

expand_more 3 low-confidence finding(s)
low env_fs dependency Excluded from app score #751853711e8686f9 Environment-variable access.
pkgs/go/[email protected]/metadata.go:458
	if os.Getenv(metadataHostEnv) != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #413346479c36a744 Environment-variable access.
pkgs/go/[email protected]/metadata.go:519
	host := os.Getenv(metadataHostEnv)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #0aafac4ea3c12533 Filesystem access.
pkgs/go/[email protected]/syscheck_linux.go:26
	b, _ := os.ReadFile("/sys/class/dmi/id/product_name")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/minio/minio-go/v7

go dependency
high pii_flow dependency Excluded from app score #e7276a70e331410f User/PII-bearing data read from the environment or filesystem flows to an external network call. This is potential data exfiltration.
pkgs/go/[email protected]/functional_tests.go:14422 · flow /tmp/closeopen-mj1c2fb7/pkgs/go/[email protected]/functional_tests.go:13775 → /tmp/closeopen-mj1c2fb7/pkgs/go/[email protected]/functional_tests.go:14422
			req, err := http.NewRequestWithContext(ctx, test.method, test.url, nil)

User/PII-bearing data flows to an external sink — the classic data-exfiltration shape.

Fix: Confirm no user identifiers reach this sink; redact/hash before sending, or remove the flow.

expand_more 72 low-confidence finding(s)
low env_fs dependency Excluded from app score #f73b774bde2ed588 Filesystem access.
pkgs/go/[email protected]/api-get-object-file.go:75
	filePart, err := os.OpenFile(filePartPath, os.O_CREATE|os.O_APPEND|os.O_WRONLY, 0o600)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #0517bc63f90bf880 Filesystem access.
pkgs/go/[email protected]/api-put-object-file-context.go:40
	fileReader, err := os.Open(filePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #7b58b9aa7758865a Filesystem access.
pkgs/go/[email protected]/api-putobject-snowball.go:138
			f, err := os.Open(name)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #4bdb7bfa44f4c8e7 Environment-variable access.
pkgs/go/[email protected]/cmd/rdma-test/main.go:32
	if v := os.Getenv(k); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #7d27010dd7238a69 Environment-variable access.
pkgs/go/[email protected]/functional_tests.go:97
	transport, err = minio.DefaultTransport(mustParseBool(os.Getenv(enableHTTPS)))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #2362c93f3c354a66 Environment-variable access.
pkgs/go/[email protected]/functional_tests.go:103
	if mustParseBool(os.Getenv(enableHTTPS)) && mustParseBool(os.Getenv(skipCERTValidation)) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f195135add4d954c Environment-variable access.
pkgs/go/[email protected]/functional_tests.go:283
	return os.Getenv("RUN_ON_FAIL") == "1"

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #432846770cbf6a59 Environment-variable access.
pkgs/go/[email protected]/functional_tests.go:289
	if os.Getenv(serverEndpoint) == "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #08323fed4e72d33d Environment-variable access.
pkgs/go/[email protected]/functional_tests.go:297
var mintDataDir = os.Getenv("MINT_DATA_DIR")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #5fcb8e3be705c246 Filesystem access.
pkgs/go/[email protected]/functional_tests.go:355
	reader, _ := os.Open(getMintDataDirFilePath(fileName))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b15febc861a1c451 Filesystem access.
pkgs/go/[email protected]/functional_tests.go:359
		reader, _ = os.Open(getMintDataDirFilePath(fileName))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #2064c16eb043e392 Environment-variable access.
pkgs/go/[email protected]/functional_tests.go:401
	return os.Getenv("MINT_MODE") == "full"

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #8da8efc86dd27aa6 Environment-variable access.
pkgs/go/[email protected]/functional_tests.go:424
		creds = credentials.NewStaticV2(os.Getenv(accessKey), os.Getenv(secretKey), "")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #40aaab26c0b3f522 Environment-variable access.
pkgs/go/[email protected]/functional_tests.go:426
		creds = credentials.NewStaticV4(os.Getenv(accessKey), os.Getenv(secretKey), "")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a78a5324374a030c Environment-variable access.
pkgs/go/[email protected]/functional_tests.go:431
		Secure:          mustParseBool(os.Getenv(enableHTTPS)),

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #caea65f01dfbcf05 Environment-variable access.
pkgs/go/[email protected]/functional_tests.go:434
	client, err := minio.New(os.Getenv(serverEndpoint), opts)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #7948cccecc03c8a1 Environment-variable access.
pkgs/go/[email protected]/functional_tests.go:2233
		if os.Getenv("MINT_NO_FULL_OBJECT") != "" && test.cs.FullObjectRequested() {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #87acc626412c488a Environment-variable access.
pkgs/go/[email protected]/functional_tests.go:2443
		if os.Getenv("MINT_NO_FULL_OBJECT") != "" && test.cs.FullObjectRequested() {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #779e3f383674c6ac Environment-variable access.
pkgs/go/[email protected]/functional_tests.go:2692
		if os.Getenv("MINT_NO_FULL_OBJECT") != "" && test.cs.FullObjectRequested() {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #5d97fbd5287b4495 Environment-variable access.
pkgs/go/[email protected]/functional_tests.go:3274
		if mustParseBool(os.Getenv(enableHTTPS)) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6fbeea2fd7d8ad47 Filesystem access.
pkgs/go/[email protected]/functional_tests.go:4836
	srcFile, err := os.Open(fName)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #4cdfeed2f22bc622 Filesystem access.
pkgs/go/[email protected]/functional_tests.go:4843
	tmpFile, err := os.Create(fName + ".gtar")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #bba6a81ce48727e4 Filesystem access.
pkgs/go/[email protected]/functional_tests.go:5866
	f, err := os.Open(filePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #9a212089faeb15c8 Environment-variable access.
pkgs/go/[email protected]/functional_tests.go:5916
	if mustParseBool(os.Getenv(enableHTTPS)) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #aa41ba282e6ff07d Environment-variable access.
pkgs/go/[email protected]/functional_tests.go:5922
	expectedLocation := scheme + os.Getenv(serverEndpoint) + "/" + bucketName + "/" + objectName

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c2e96590770bae72 Environment-variable access.
pkgs/go/[email protected]/functional_tests.go:5923
	expectedLocationBucketDNS := scheme + bucketName + "." + os.Getenv(serverEndpoint) + "/" + objectName

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #193f6d6291bac83e Filesystem access.
pkgs/go/[email protected]/functional_tests.go:6059
	f, err := os.Open(filePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #bd798d382e1d2802 Filesystem access.
pkgs/go/[email protected]/functional_tests.go:6216
	f, err := os.Open(filePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a4ecebe1fe6b3022 Filesystem access.
pkgs/go/[email protected]/functional_tests.go:7285
		file, err := os.Create(fileName)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #93f9ec0d133353fe Filesystem access.
pkgs/go/[email protected]/functional_tests.go:7487
		file, err := os.Create(fileName)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6a6d5e8da808539f Environment-variable access.
pkgs/go/[email protected]/functional_tests.go:7542
	if os.Getenv("NOTIFY_BUCKET") == "" ||

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #47d495e391201bda Environment-variable access.
pkgs/go/[email protected]/functional_tests.go:7543
		os.Getenv("NOTIFY_SERVICE") == "" ||

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d45c3fd6db4a3940 Environment-variable access.
pkgs/go/[email protected]/functional_tests.go:7544
		os.Getenv("NOTIFY_REGION") == "" ||

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3880995d95d9cb98 Environment-variable access.
pkgs/go/[email protected]/functional_tests.go:7545
		os.Getenv("NOTIFY_ACCOUNTID") == "" ||

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f8a5ae5c0981c99f Environment-variable access.
pkgs/go/[email protected]/functional_tests.go:7546
		os.Getenv("NOTIFY_RESOURCE") == "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a4c0f84bc153a0eb Environment-variable access.
pkgs/go/[email protected]/functional_tests.go:7557
	bucketName := os.Getenv("NOTIFY_BUCKET")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #387d2af9720819d4 Environment-variable access.
pkgs/go/[email protected]/functional_tests.go:7560
	topicArn := notification.NewArn("aws", os.Getenv("NOTIFY_SERVICE"), os.Getenv("NOTIFY_REGION"), os.Getenv("NOTIFY_ACCOUNTID"), os.Getenv("NOTIFY_RESOURCE"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #06f03e520680bd67 Filesystem access.
pkgs/go/[email protected]/functional_tests.go:7655
	file, err := os.Create(fileName)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ad1ddeb13ce10744 Filesystem access.
pkgs/go/[email protected]/functional_tests.go:8401
		tempfile, err = os.Open(fileName)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #572673ac5849ed18 Filesystem access.
pkgs/go/[email protected]/functional_tests.go:12617
	file, err := os.Create(fileName)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #4075522d13fd03b0 Environment-variable access.
pkgs/go/[email protected]/functional_tests.go:13358
	if os.Getenv(serverEndpoint) != "s3.amazonaws.com" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #2cd64f78d31c85fb Environment-variable access.
pkgs/go/[email protected]/functional_tests.go:13775
	bucketName := os.Getenv("MINIO_GO_TEST_BUCKET_CORS")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #1c12e7072a01735d Environment-variable access.
pkgs/go/[email protected]/functional_tests.go:15043
	tls := mustParseBool(os.Getenv(enableHTTPS))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a5ad4c544035ae2c Environment-variable access.
pkgs/go/[email protected]/functional_tests.go:15044
	kms := mustParseBool(os.Getenv(enableKMS))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #71e56560ffec4b01 Environment-variable access.
pkgs/go/[email protected]/functional_tests.go:15045
	if os.Getenv(enableKMS) == "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c556b529882e981a Environment-variable access.
pkgs/go/[email protected]/pkg/credentials/env_aws.go:43
	id := os.Getenv("AWS_ACCESS_KEY_ID")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ede490eec4a85239 Environment-variable access.
pkgs/go/[email protected]/pkg/credentials/env_aws.go:45
		id = os.Getenv("AWS_ACCESS_KEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #1c311ffdc2f19861 Environment-variable access.
pkgs/go/[email protected]/pkg/credentials/env_aws.go:48
	secret := os.Getenv("AWS_SECRET_ACCESS_KEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #803c3e86e5e2bfe7 Environment-variable access.
pkgs/go/[email protected]/pkg/credentials/env_aws.go:50
		secret = os.Getenv("AWS_SECRET_KEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #069061b22c44b271 Environment-variable access.
pkgs/go/[email protected]/pkg/credentials/env_aws.go:62
		SessionToken:    os.Getenv("AWS_SESSION_TOKEN"),

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #518e91c9609515e1 Environment-variable access.
pkgs/go/[email protected]/pkg/credentials/env_minio.go:44
	id := os.Getenv("MINIO_ROOT_USER")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e7e90bfddd7c45ab Environment-variable access.
pkgs/go/[email protected]/pkg/credentials/env_minio.go:45
	secret := os.Getenv("MINIO_ROOT_PASSWORD")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #97612ca1bc58994b Environment-variable access.
pkgs/go/[email protected]/pkg/credentials/env_minio.go:49
		id = os.Getenv("MINIO_ACCESS_KEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3d0b5e73f0f77981 Environment-variable access.
pkgs/go/[email protected]/pkg/credentials/env_minio.go:50
		secret = os.Getenv("MINIO_SECRET_KEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c24f1b0f1c1523b8 Environment-variable access.
pkgs/go/[email protected]/pkg/credentials/file_aws_credentials.go:76
		p.Filename = os.Getenv("AWS_SHARED_CREDENTIALS_FILE")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #9d1aff2cacd41add Environment-variable access.
pkgs/go/[email protected]/pkg/credentials/file_aws_credentials.go:86
		p.Profile = os.Getenv("AWS_PROFILE")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #42fd99b9cdbd0276 Environment-variable access.
pkgs/go/[email protected]/pkg/credentials/file_minio_client.go:60
		if value, ok := os.LookupEnv("MINIO_SHARED_CREDENTIALS_FILE"); ok {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b96aac98203c1776 Environment-variable access.
pkgs/go/[email protected]/pkg/credentials/file_minio_client.go:75
		p.Alias = os.Getenv("MINIO_ALIAS")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #1f1c18b1d958d666 Filesystem access.
pkgs/go/[email protected]/pkg/credentials/file_minio_client.go:132
	configBytes, err := os.ReadFile(filename)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #1d6a5dc7382832fa Environment-variable access.
pkgs/go/[email protected]/pkg/credentials/iam_aws.go:103
	token := os.Getenv("AWS_CONTAINER_AUTHORIZATION_TOKEN")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e1577a356a2baa0a Environment-variable access.
pkgs/go/[email protected]/pkg/credentials/iam_aws.go:108
	tokenFile := os.Getenv("AWS_CONTAINER_AUTHORIZATION_TOKEN_FILE")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b90c04ad839c9715 Environment-variable access.
pkgs/go/[email protected]/pkg/credentials/iam_aws.go:113
	relativeURI := os.Getenv("AWS_CONTAINER_CREDENTIALS_RELATIVE_URI")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #117edd63961639f2 Environment-variable access.
pkgs/go/[email protected]/pkg/credentials/iam_aws.go:118
	fullURI := os.Getenv("AWS_CONTAINER_CREDENTIALS_FULL_URI")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b0f11868cb77e77b Environment-variable access.
pkgs/go/[email protected]/pkg/credentials/iam_aws.go:123
	identityFile := os.Getenv("AWS_WEB_IDENTITY_TOKEN_FILE")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3b151c888029b200 Environment-variable access.
pkgs/go/[email protected]/pkg/credentials/iam_aws.go:128
	roleArn := os.Getenv("AWS_ROLE_ARN")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #8c0dbfac5dbe5c7f Environment-variable access.
pkgs/go/[email protected]/pkg/credentials/iam_aws.go:133
	roleSessionName := os.Getenv("AWS_ROLE_SESSION_NAME")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #71ceddcc9641abc6 Environment-variable access.
pkgs/go/[email protected]/pkg/credentials/iam_aws.go:138
	region := os.Getenv("AWS_REGION")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #7f4e0559b3c3ad38 Filesystem access.
pkgs/go/[email protected]/pkg/credentials/iam_aws.go:174
				token, err := os.ReadFile(identityFile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #5584e9129d07752e Filesystem access.
pkgs/go/[email protected]/pkg/credentials/iam_aws.go:335
		bytes, err := os.ReadFile(tokenFile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d9ba4e35ca5f5458 Filesystem access.
pkgs/go/[email protected]/pkg/credentials/sts_web_identity.go:121
		token, err := os.ReadFile("/var/run/secrets/kubernetes.io/serviceaccount/token")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d0352c3044cbfa78 Environment-variable access.
pkgs/go/[email protected]/transport.go:72
		if f := os.Getenv("SSL_CERT_FILE"); f != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #530f4f6b7edc46ec Filesystem access.
pkgs/go/[email protected]/transport.go:74
			data, err := os.ReadFile(f)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/getsentry/sentry-go

go dependency
medium telemetry dependency Excluded from app score #dbc881fc81ced2ed Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/_examples/basic/main.go:37
	err := sentry.Init(sentry.ClientOptions{
		// Either set your DSN here or set the SENTRY_DSN environment variable.
		Dsn: "",
		// Enable printing of SDK debug messages.
		// Useful when getting started or trying to figure something out.
		Debug:   true,
		Release: release,
	})

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #9b3c65e6b3658752 Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/_examples/basic/main.go:54
		sentry.CaptureException(err)

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #ba60540f8499eddc Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/_examples/crons/main.go:46
	_ = sentry.Init(sentry.ClientOptions{
		Dsn:   "",
		Debug: true,
	})

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #ff22a784818ffba3 Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/_examples/echo/main.go:15
	_ = sentry.Init(sentry.ClientOptions{
		Dsn: "",
		BeforeSend: func(event *sentry.Event, hint *sentry.EventHint) *sentry.Event {
			if hint.Context != nil {
				if req, ok := hint.Context.Value(sentry.RequestContextKey).(*http.Request); ok {
					// You have access to the original Request
					fmt.Println(req)
				}
			}
			fmt.Println(event)
			return event
		},
		Debug:            true,
		AttachStacktrace: true,
	})

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #90b36128c94f265a Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/_examples/fasthttp/main.go:32
			sentry.CaptureException(err)

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #7ce2dc1c430a64e1 Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/_examples/fasthttp/main.go:40
	_ = sentry.Init(sentry.ClientOptions{
		Dsn: "",
		BeforeSend: func(event *sentry.Event, hint *sentry.EventHint) *sentry.Event {
			if hint.Context != nil {
				if ctx, ok := hint.Context.Value(sentry.RequestContextKey).(*fasthttp.RequestCtx); ok {
					// You have access to the original Context if it panicked
					fmt.Println(string(ctx.Request.Host()))
				}
			}
			fmt.Println(event)
			return event
		},
		Debug:            true,
		AttachStacktrace: true,
	})

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #0d6428d55cff6174 Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/_examples/feature-showcase/main.go:41
	sentry.CaptureMessage("Drop me!")

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #36d547da6a4f6dac Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/_examples/feature-showcase/main.go:45
	sentry.CaptureMessage("say what again. SAY WHAT again")

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #effd856dcb11b2da Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/_examples/feature-showcase/main.go:62
		sentry.CaptureException(errors.New("say what again. SAY WHAT again"))

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #66c7a96b93941e59 Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/_examples/feature-showcase/main.go:95
		sentry.CaptureEvent(event)

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #abf182dfb68514a6 Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/_examples/feature-showcase/main.go:113
	sentry.CaptureException(CustomComplexError{Message: "Captured", AnswerToLife: 42})

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #2dee2cfce6fa1cb4 Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/_examples/feature-showcase/main.go:117
	if err := sentry.Init(sentry.ClientOptions{
		Debug:        true,
		Dsn:          "https://[email protected]/1337",
		IgnoreErrors: []string{"^(?i)drop me"},
		BeforeSend: func(event *sentry.Event, hint *sentry.EventHint) *sentry.Event {
			if ex, ok := hint.OriginalException.(CustomComplexError); ok {
				event.Message = event.Message + " - " + ex.GimmeMoreData()
			}

			fmt.Printf("%s\n\n", prettyPrint(event))

			return event
		},
		BeforeBreadcrumb: func(breadcrumb *sentry.Breadcrumb, _ *sentry.BreadcrumbHint) *sentry.Breadcrumb {
			if breadcrumb.Message == "Random breadcrumb 3" {
				breadcrumb.Message = "Not so random breadcrumb 3"
			}

			fmt.Printf("%s\n\n", prettyPrint(breadcrumb))

			return breadcrumb
		},
		SampleRate: 1,
		Transport:  &devNullTransport{},
		Integrations: func(integrations []sentry.Integration) []sentry.Integration {
			return append(integrations, integrations[1])
		},
	}); err != nil {

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #281e5384bd3b5890 Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/_examples/fiber/main.go:13
	_ = sentry.Init(sentry.ClientOptions{
		Dsn: "",
		BeforeSend: func(event *sentry.Event, hint *sentry.EventHint) *sentry.Event {
			if hint.Context != nil {
				if ctx, ok := hint.Context.Value(sentry.RequestContextKey).(*fiber.Ctx); ok {
					// You have access to the original Context if it panicked
					fmt.Println(utils.CopyString(ctx.Hostname()))
				}
			}
			fmt.Println(event)
			return event
		},
		Debug:            true,
		AttachStacktrace: true,
	})

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #6dcdd4478fb4d872 Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/_examples/flush/main.go:11
	_ = sentry.Init(sentry.ClientOptions{
		Dsn:   "https://[email protected]/1337",
		Debug: true,
	})

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #48347314e7d2a1da Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/_examples/flush/main.go:16
	sentry.CaptureMessage("Event #1")

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #dc1ed11a36be29d4 Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/_examples/flush/main.go:17
	sentry.CaptureMessage("Event #2")

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #8c63909aec0ac28b Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/_examples/flush/main.go:18
	sentry.CaptureMessage("Event #3")

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #e95c9be20a11f018 Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/_examples/flush/main.go:21
		sentry.CaptureMessage("Event #4")

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #2b1fac275dd24ff0 Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/_examples/flush/main.go:22
		sentry.CaptureMessage("Event #5")

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #a8039e6e57f18577 Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/_examples/gin/main.go:13
	_ = sentry.Init(sentry.ClientOptions{
		Dsn: "",
		BeforeSend: func(event *sentry.Event, hint *sentry.EventHint) *sentry.Event {
			if hint.Context != nil {
				if req, ok := hint.Context.Value(sentry.RequestContextKey).(*http.Request); ok {
					// You have access to the original Request
					fmt.Println(req)
				}
			}
			fmt.Println(event)
			return event
		},
		Debug:            true,
		AttachStacktrace: true,
	})

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #26f6abc6c4a7b07f Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/_examples/http/main.go:44
	err := sentry.Init(sentry.ClientOptions{
		// Either set your DSN here or set the SENTRY_DSN environment variable.
		Dsn: "",
		// Enable printing of SDK debug messages.
		// Useful when getting started or trying to figure something out.
		Debug: true,
		BeforeSend: func(event *sentry.Event, hint *sentry.EventHint) *sentry.Event {
			// Here you can inspect/modify non-transaction events (for example, errors) before they are sent.
			// Returning nil drops the event.
			log.Printf("BeforeSend event [%s]", event.EventID)
			return event
		},
		BeforeSendTransaction: func(event *sentry.Event, hint *sentry.EventHint) *sentry.Event {
			// Here you can inspect/modify transaction events before they are sent.
			// Returning nil drops the event.
			if strings.Contains(event.Message, "test-transaction") {
				// Drop the transaction
				return nil
			}
			event.Message += " [example]"
			log.Printf("BeforeSendTransaction event [%s]", event.EventID)
			return event
		},
		// Enable tracing
		EnableTracing: true,
		// Specify either a TracesSampleRate...
		TracesSampleRate: 1.0,
		// ... or a TracesSampler
		TracesSampler: sentry.TracesSampler(func(ctx sentry.SamplingContext) float64 {
			// Don't sample health checks.
			if ctx.Span.Name == "GET /health" {
				return 0.0
			}

			return 1.0
		}),
	})

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #b20154255b0dcc28 Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/_examples/iris/main.go:17
	_ = sentry.Init(sentry.ClientOptions{
		Dsn: "",
		BeforeSend: func(event *sentry.Event, hint *sentry.EventHint) *sentry.Event {
			if hint.Context != nil {
				if req, ok := hint.Context.Value(sentry.RequestContextKey).(*http.Request); ok {
					// You have access to the original Request
					fmt.Println(req)
				}
			}
			fmt.Println(event)
			return event
		},
		Debug:            true,
		AttachStacktrace: true,
	})

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #ec79c90aed3898da Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/_examples/negroni/main.go:14
	_ = sentry.Init(sentry.ClientOptions{
		Dsn: "",
		BeforeSend: func(event *sentry.Event, hint *sentry.EventHint) *sentry.Event {
			if hint.Context != nil {
				if req, ok := hint.Context.Value(sentry.RequestContextKey).(*http.Request); ok {
					// You have access to the original Request
					fmt.Println(req)
				}
			}
			fmt.Println(event)
			return event
		},
		Debug:            true,
		AttachStacktrace: true,
	})

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #fb4db2ee671a57f4 Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/_examples/profiling/main.go:20
	err := sentry.Init(sentry.ClientOptions{
		// Either set your DSN here or set the SENTRY_DSN environment variable.
		Dsn: "",
		// Enable printing of SDK debug messages.
		// Useful when getting started or trying to figure something out.
		Debug:              true,
		EnableTracing:      true,
		TracesSampleRate:   1.0,
		ProfilesSampleRate: 1.0,
	})

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #613fe7e5e51eed6d Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/_examples/recover-repanic/main.go:27
	err := sentry.Init(sentry.ClientOptions{
		// Either set your DSN here or set the SENTRY_DSN environment variable.
		Dsn: "",
		// Enable printing of SDK debug messages.
		// Useful when getting started or trying to figure something out.
		Debug: true,
		// This is an optional function with access to the event before it is
		// sent to Sentry. The event can be mutated, or sending can be aborted
		// by returning nil.
		BeforeSend: func(event *sentry.Event, hint *sentry.EventHint) *sentry.Event { return event },
	})

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #839c5d23f39385bf Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/_examples/recover/main.go:42
	_ = sentry.Init(sentry.ClientOptions{
		Debug:            true,
		Dsn:              "https://[email protected]/1337",
		AttachStacktrace: true,
		BeforeSend: func(e *sentry.Event, h *sentry.EventHint) *sentry.Event {
			fmt.Println(prettyPrint(e))
			return e
		},
	})

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #a2de2cfca63f52c8 Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/_examples/slog/main.go:15
	err := sentry.Init(sentry.ClientOptions{
		Dsn:           "",
		EnableTracing: false,
	})

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #1b6ad5b515b10588 Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/_examples/synctransport/main.go:14
	_ = sentry.Init(sentry.ClientOptions{
		Dsn:       "https://[email protected]/1337",
		Debug:     true,
		Transport: sentrySyncTransport,
	})

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #f4aded53c1ceb974 Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/_examples/synctransport/main.go:21
		sentry.CaptureMessage("Event #1")

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #c9be99490a880d67 Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/_examples/synctransport/main.go:23
		sentry.CaptureMessage("Event #2")

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #dc1087dfd79756fe Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/_examples/synctransport/main.go:27
	sentry.CaptureMessage("Event #3")

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #f414b336cf3c3bbd Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/_examples/synctransport/main.go:29
	sentry.CaptureMessage("Event #4")

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #bf5837bb3b5bc986 Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/_examples/synctransport/main.go:31
	sentry.CaptureMessage("Event #5")

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #a69ef4a4c5efd172 Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/_examples/synctransport/main.go:35
		sentry.CaptureMessage("Event #6")

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #ee144f05d43e4de3 Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/_examples/synctransport/main.go:37
		sentry.CaptureMessage("Event #7")

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #fb22b43126c0cdac Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/_examples/with_extra/main.go:65
	if err := sentry.Init(sentry.ClientOptions{
		Debug: true,
		Dsn:   "https://[email protected]/1337",
		BeforeSend: func(event *sentry.Event, hint *sentry.EventHint) *sentry.Event {
			// Solution 1 (use beforeSend, which will be applied to
			// error events and is usually application specific):
			if ex, ok := hint.OriginalException.(CustomComplexError); ok {
				for key, val := range ex.GimmeMoreData() {
					event.Extra[key] = val
				}
			}

			fmt.Printf("%s\n\n", prettyPrint(event.Extra))

			return event
		},
		Transport: &devNullTransport{},

		// Solution 2 (use custom integration, which will be
		// applied to all events, can be extracted as a
		// separate utility, and reused across projects):
		Integrations: func(integrations []sentry.Integration) []sentry.Integration {
			return append(integrations, new(ExtractExtra))
		},
	}); err != nil {

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #9c705e3019a13937 Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/_examples/with_extra/main.go:115
	sentry.CaptureException(errWithExtra)

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

expand_more 7 low-confidence finding(s)
low env_fs dependency Excluded from app score #985779aab1e995d2 Environment-variable access.
pkgs/go/[email protected]/client.go:285
		options.Dsn = os.Getenv("SENTRY_DSN")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #1edce417cf92b017 Environment-variable access.
pkgs/go/[email protected]/client.go:293
		options.Environment = os.Getenv("SENTRY_ENVIRONMENT")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #0deeb0efc16c94a7 Environment-variable access.
pkgs/go/[email protected]/client.go:310
	dbg := strings.Split(os.Getenv("SENTRYGODEBUG"), ",")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6863698bb9b98a6b Environment-variable access.
pkgs/go/[email protected]/integrations.go:382
	for _, pair := range os.Environ() {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f9be1c7c4e87e61b Environment-variable access.
pkgs/go/[email protected]/internal/testutils/consts.go:9
	return os.Getenv("CI") != ""

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #69ebc2d289e1f2c1 Filesystem access.
pkgs/go/[email protected]/sourcereader.go:27
		data, err := os.ReadFile(filename)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e88717918909b034 Environment-variable access.
pkgs/go/[email protected]/util.go:64
		if release = os.Getenv(e); release != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/weaviate/weaviate

go dependency
medium telemetry dependency Excluded from app score #bfab8414afeb9b7f Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/adapters/handlers/rest/configure_api.go:296
		err := sentry.Init(sentry.ClientOptions{
			// Setup related config
			Dsn:         appState.ServerConfig.Config.Sentry.DSN,
			Debug:       appState.ServerConfig.Config.Sentry.Debug,
			Release:     "weaviate-core@" + build.Version,
			Environment: appState.ServerConfig.Config.Sentry.Environment,
			// Enable tracing if requested
			EnableTracing:    !appState.ServerConfig.Config.Sentry.TracingDisabled,
			AttachStacktrace: true,
			// Sample rates based on the config
			SampleRate:         appState.ServerConfig.Config.Sentry.ErrorSampleRate,
			ProfilesSampleRate: appState.ServerConfig.Config.Sentry.ProfileSampleRate,
			TracesSampler: sentry.TracesSampler(func(ctx sentry.SamplingContext) float64 {
				// Inherit decision from parent transaction (if any) if it is sampled or not
				if ctx.Parent != nil && ctx.Parent.Sampled != sentry.SampledUndefined {
					return 1.0
				}

				// Filter out uneeded traces
				switch ctx.Span.Name {
				// We are not interested in traces related to metrics endpoint
				case "GET /metrics":
				// These are some usual internet bot that will spam the server. Won't catch them all but we can reduce
				// the number a bit
				case "GET /favicon.ico":
				case "GET /t4":
				case "GET /ab2g":
				case "PRI *":
				case "GET /api/sonicos/tfa":
				case "GET /RDWeb/Pages/en-US/login.aspx":
				case "GET /_profiler/phpinfo":
				case "POST /wsman":
				case "POST /dns-query":
				case "GET /dns-query":
					return 0.0
				}

				// Filter out graphql queries, currently we have no context intrumentation around it and it's therefore
				// just a blank line with 0 info except graphql resolve -> do -> return.
				if ctx.Span.Name == "POST /v1/graphql" {
					return 0.0
				}

				// Return the configured sample rate otherwise
				return appState.ServerConfig.Config.Sentry.TracesSampleRate
			}),
		})

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #eca97c6297d3dfc6 Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/adapters/repos/db/shard_init.go:109
			entsentry.CaptureException(err)

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #59a5ab503351ad0f Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/adapters/repos/db/shard_read.go:483
						entsentry.CaptureException(err)

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #9c7d702e34703e26 Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/adapters/repos/db/shard_read.go:494
						entsentry.CaptureException(err)

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #d5ef6842fe65427c Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/adapters/repos/db/shard_read.go:510
						entsentry.CaptureException(fmt.Errorf("collection %q shard %q: %w",
							s.index.Config.ClassName, s.name, err))

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #ebc80f886cef54c0 Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/adapters/repos/db/shard_read.go:522
						entsentry.CaptureException(fmt.Errorf("collection %q shard %q: %w",
							s.index.Config.ClassName, s.name, err))

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

medium telemetry dependency Excluded from app score #b9da6f78de56e03b Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/entities/sentry/errors.go:31
	libsentry.CaptureException(err)

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

expand_more 476 low-confidence finding(s)
low env_fs dependency Excluded from app score #49f609a1f99689f8 Environment-variable access.
pkgs/go/[email protected]/adapters/handlers/graphql/local/aggregate/hybrid_search.go:116
	if os.Getenv("ENABLE_EXPERIMENTAL_HYBRID_OPERANDS") != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #8a599b6d58800034 Environment-variable access.
pkgs/go/[email protected]/adapters/handlers/graphql/local/get/hybrid_search.go:122
	if os.Getenv("ENABLE_EXPERIMENTAL_HYBRID_OPERANDS") != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #642b043f5807d67d Filesystem access.
pkgs/go/[email protected]/adapters/handlers/rest/configure_api.go:185
	cpuset, err := os.ReadFile("/sys/fs/cgroup/cpuset/cpuset.cpus")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f0b73994ba66a61b Environment-variable access.
pkgs/go/[email protected]/adapters/handlers/rest/configure_api.go:1001
	if entconfig.Enabled(os.Getenv("ENABLE_CLEANUP_UNFINISHED_BACKUPS")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #bcd1ec47aea8a5ec Environment-variable access.
pkgs/go/[email protected]/adapters/handlers/rest/configure_api.go:1238
	if os.Getenv("LOG_FORMAT") != "text" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f0afaef11f977f1c Environment-variable access.
pkgs/go/[email protected]/adapters/handlers/rest/configure_api.go:1241
	logLevelStr := os.Getenv("LOG_LEVEL")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ccc6ecd9ffb94745 Environment-variable access.
pkgs/go/[email protected]/adapters/handlers/rest/configure_api.go:2006
	if os.Getenv("LIMIT_RESOURCES") == "true" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #64e7f8531e929684 Environment-variable access.
pkgs/go/[email protected]/adapters/handlers/rest/configure_api.go:2008
		if os.Getenv("GOMAXPROCS") == "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #40c1b293d21fe8f8 Filesystem access.
pkgs/go/[email protected]/adapters/handlers/rest/handlers_debug.go:397
						file, err := os.ReadFile(shardPath + ".migrations/searchable_map_to_blockmax/" + filename)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b8fc9aeab949d93c Filesystem access.
pkgs/go/[email protected]/adapters/handlers/rest/handlers_debug.go:479
						file, err := os.OpenFile(filePath, os.O_WRONLY|os.O_CREATE|os.O_APPEND, 0o644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #30fb2c7ba991d937 Filesystem access.
pkgs/go/[email protected]/adapters/handlers/rest/handlers_debug_bmw_aux.go:88
							file, err := os.Create(filenameShard)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #37c833248346fae2 Filesystem access.
pkgs/go/[email protected]/adapters/handlers/rest/handlers_debug_bmw_aux.go:98
							file, err := os.Create(filenameShard)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3f5594473acde9a9 Filesystem access.
pkgs/go/[email protected]/adapters/handlers/rest/server.go:287
			caCert, caCertErr := os.ReadFile(string(s.TLSCACertificate))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #15647117cec0c541 Environment-variable access.
pkgs/go/[email protected]/adapters/repos/db/index_async_replication.go:42
		os.Getenv("ASYNC_REPLICATION_MAX_WORKERS"),

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #05c55e0f52fc7369 Environment-variable access.
pkgs/go/[email protected]/adapters/repos/db/index_async_replication.go:64
		os.Getenv("ASYNC_REPLICATION_HASHTREE_HEIGHT"), hashtreeHeight, minHashtreeHeight, maxHashtreeHeight)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #8f2c7ceeee41967c Environment-variable access.
pkgs/go/[email protected]/adapters/repos/db/index_async_replication.go:74
	config.frequency, err = optParseDuration(os.Getenv("ASYNC_REPLICATION_FREQUENCY"), frequency)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c0bc9301eb7c10e2 Environment-variable access.
pkgs/go/[email protected]/adapters/repos/db/index_async_replication.go:84
	config.frequencyWhilePropagating, err = optParseDuration(os.Getenv("ASYNC_REPLICATION_FREQUENCY_WHILE_PROPAGATING"), frequencyWhilePropagating)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #4cf2c0474a5a96e1 Environment-variable access.
pkgs/go/[email protected]/adapters/repos/db/index_async_replication.go:95
		os.Getenv("ASYNC_REPLICATION_ALIVE_NODES_CHECKING_FREQUENCY"), aliveNodesCheckingFrequency)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #aae8d39fb6d7df06 Environment-variable access.
pkgs/go/[email protected]/adapters/repos/db/index_async_replication.go:106
		os.Getenv("ASYNC_REPLICATION_LOGGING_FREQUENCY"), loggingFrequency)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #503c9fad61cf4574 Environment-variable access.
pkgs/go/[email protected]/adapters/repos/db/index_async_replication.go:117
		os.Getenv("ASYNC_REPLICATION_DIFF_BATCH_SIZE"), diffBatchSize, minDiffBatchSize, maxDiffBatchSize)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #58bf04a3891467b2 Environment-variable access.
pkgs/go/[email protected]/adapters/repos/db/index_async_replication.go:128
		os.Getenv("ASYNC_REPLICATION_DIFF_PER_NODE_TIMEOUT"), diffPerNodeTimeout)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #961c3edc4c8ce08f Environment-variable access.
pkgs/go/[email protected]/adapters/repos/db/index_async_replication.go:139
		os.Getenv("ASYNC_REPLICATION_PRE_PROPAGATION_TIMEOUT"), prePropagationTimeout)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3e3cc82aa590de15 Environment-variable access.
pkgs/go/[email protected]/adapters/repos/db/index_async_replication.go:150
		os.Getenv("ASYNC_REPLICATION_PROPAGATION_TIMEOUT"), propagationTimeout)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #8a45e6368aba57f3 Environment-variable access.
pkgs/go/[email protected]/adapters/repos/db/index_async_replication.go:161
		os.Getenv("ASYNC_REPLICATION_PROPAGATION_LIMIT"), propagationLimit, minPropagationLimit, maxPropagationLimit)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c590f720202788d0 Environment-variable access.
pkgs/go/[email protected]/adapters/repos/db/index_async_replication.go:172
		os.Getenv("ASYNC_REPLICATION_PROPAGATION_DELAY"), propagationDelay)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #7b124214293676b3 Environment-variable access.
pkgs/go/[email protected]/adapters/repos/db/index_async_replication.go:183
		os.Getenv("ASYNC_REPLICATION_PROPAGATION_CONCURRENCY"), propagationConcurrency, minPropagationConcurrency, maxPropagationConcurrency)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3e1845c67178ddc8 Environment-variable access.
pkgs/go/[email protected]/adapters/repos/db/index_async_replication.go:194
		os.Getenv("ASYNC_REPLICATION_PROPAGATION_BATCH_SIZE"), propagationBatchSize, minPropagationBatchSize, maxPropagationBatchSize)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3eea5608b87b54dd Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/indexcounter/counter.go:31
	f, err := os.OpenFile(fileName, os.O_RDWR|os.O_CREATE, 0o666)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6c079d70ef32084a Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/init.go:208
		if _, err = os.Create(fsMigrationPath); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #46f35e0f1f521e33 Environment-variable access.
pkgs/go/[email protected]/adapters/repos/db/inverted/bm25_searcher.go:108
	useWand := os.Getenv("USE_BLOCKMAX_WAND") == "false"

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a8b1f29def28867c Environment-variable access.
pkgs/go/[email protected]/adapters/repos/db/inverted/bm25_searcher_block.go:52
		if !entcfg.Enabled(os.Getenv("DISABLE_RECOVERY_ON_PANIC")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #56fe5632a7be2c2c Environment-variable access.
pkgs/go/[email protected]/adapters/repos/db/inverted/bm25_searcher_block.go:185
		internalLimitString := os.Getenv("BLOCKMAX_WAND_PER_SEGMENT_LIMIT")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #78f6485144e84b20 Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/inverted/new_prop_length_tracker.go:93
	bytes, err := os.ReadFile(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6599555b65a99721 Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/inverted/new_prop_length_tracker.go:362
	err = os.WriteFile(tempfile, bytes, 0o666)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #5ab1aa495aaaa87b Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/inverted/prop_length_tracker.go:57
	f, err := os.OpenFile(path, os.O_RDWR|os.O_CREATE, 0o666)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ff26dd7afeb582eb Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/inverted_migrator_filter_to_search.go:351
	f, err := os.OpenFile(mf.stateFileName, os.O_RDWR|os.O_CREATE, 0o666)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #40ec3139ab05b43b Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/inverted_migrator_filter_to_search.go:383
	f, err := os.Create(fileNameTemp)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #5f362cf6963c8e26 Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/inverted_migrator_filter_to_search.go:407
	f, err := os.Create(mf.flagFileName)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #42c68219b31ea6f2 Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/inverted_reindexer_map_to_blockmax.go:1387
	content, err := os.ReadFile(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ce110990b5aef5f0 Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/inverted_reindexer_map_to_blockmax.go:1450
	content, err := os.ReadFile(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #971e3976731bd9c2 Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/inverted_reindexer_map_to_blockmax.go:1477
	progressFile, err := os.ReadFile(progressFilePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #24afd118bbd9adb7 Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/inverted_reindexer_map_to_blockmax.go:1633
	file, err := os.OpenFile(path, os.O_WRONLY|os.O_CREATE|os.O_EXCL, 0o777)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #443a118d7bbdf375 Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/inverted_reindexer_map_to_blockmax.go:1677
	content, err := os.ReadFile(t.filepath(t.config.filenameProperties))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c8892b313afb725d Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/inverted_reindexer_map_to_blockmax.go:1828
	content, err := os.ReadFile(t.filepath(t.config.filenameOverrides))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #bb529319da29f984 Environment-variable access.
pkgs/go/[email protected]/adapters/repos/db/lsmkv/bucket.go:1949
		if !entcfg.Enabled(os.Getenv("DISABLE_RECOVERY_ON_PANIC")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #61f3411cdfdfb910 Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/lsmkv/bucket.go:2225
				file, err := os.Open(filepath.Join(bucketPath, entry.Name()))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #cd7dd776a1bfb1fe Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/lsmkv/bucket.go:2276
			file, err := os.Open(filepath.Join(bucketPath, entry.Name()))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #9088aff54591eaeb Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/lsmkv/commitlogger.go:253
	f, err := os.OpenFile(out.path, os.O_APPEND|os.O_CREATE|os.O_RDWR, 0o666)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e95c0ef0c3ea53e9 Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/lsmkv/lazy_segment.go:61
	file, err := os.Open(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #1e3e3c4d0e3e999f Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/lsmkv/memtable_flush.go:99
	f, err := os.OpenFile(tmpSegmentPath, os.O_CREATE|os.O_WRONLY|os.O_TRUNC, 0o666)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #1465713b96c956fb Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/lsmkv/segment.go:196
	file, err := os.Open(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a6dc78f0a2bd6468 Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/lsmkv/segment_bloom_filters.go:263
	f, err := os.Create(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #5f14a0e30e6bb8f0 Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/lsmkv/segment_bloom_filters.go:288
	f, err := os.Open(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3622cfd36fde7c27 Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/lsmkv/segment_group_cleanup.go:503
		file, err := os.Create(tmpSegmentPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #af5cdbcbf07a2a94 Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/lsmkv/segment_group_compaction.go:345
	f, err := os.Create(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #644fda4ba2ef3a48 Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/lsmkv/segmentindex/indexes.go:185
	primaryFD, err := os.Create(primaryFileName)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #dba264f2f1528d2d Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/lsmkv/segmentindex/indexes.go:214
	secondaryFD, err := os.Create(secondaryFileName)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ab8964dd5c61316a Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/queue/queue.go:640
	f, err := os.Open(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #2671429613b3ab75 Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/queue/queue.go:687
	c.f, err = os.Open(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #0af3683d115d2f99 Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/queue/queue.go:906
	w.f, err = os.OpenFile(path, os.O_CREATE|os.O_RDWR, 0o644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #8bee9c1743fd4f88 Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/queue/queue.go:946
	w.f, err = os.OpenFile(filepath.Join(w.dir, lastChunk), os.O_RDWR, 0o644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #79dcf1e26e310c7d Environment-variable access.
pkgs/go/[email protected]/adapters/repos/db/queue/scheduler.go:74
		v := os.Getenv("QUEUE_SCHEDULER_INTERVAL")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c19aa9b50d769713 Environment-variable access.
pkgs/go/[email protected]/adapters/repos/db/queue/scheduler.go:91
		v := os.Getenv("QUEUE_RETRY_INTERVAL")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #79cf0f74db087126 Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/replication.go:507
	tmpFile, err := os.OpenFile(path+tmpCopyExtension, os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0o666)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #7272cc23f0464b94 Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/replication.go:629
	f, err := os.Create(finalPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c98dc18f9720e5b1 Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/shard_async_replication.go:137
		f, err := os.OpenFile(hashtreeFilename, os.O_RDONLY, os.ModePerm)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f05ef8ad080a5d2d Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/shard_async_replication.go:476
	f, err := os.OpenFile(hashtreeFilename, os.O_CREATE|os.O_WRONLY|os.O_APPEND, os.ModePerm)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ce54a67012add913 Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/shard_backup.go:282
	if d.DocIDCounter, err = os.ReadFile(fpath); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b41a073ece6a20f6 Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/shard_backup.go:290
	if d.PropLengthTracker, err = os.ReadFile(fpath); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e15249b7efb7199e Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/shard_backup.go:298
	if d.Version, err = os.ReadFile(fpath); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f3389beb9b0afbb8 Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/shard_backup.go:342
	reader, err := os.Open(finalPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #11f79804e6226b20 Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/shard_compressed_vectors_migrator.go:228
	srcFile, err := os.Open(src)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #70130fabfef814e2 Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/shard_compressed_vectors_migrator.go:234
	dstFile, err := os.Create(dst)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #05850c64f2e85bda Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/shard_compressed_vectors_migrator.go:258
	file, err := os.Create(m.migrationPerformedFlagFile(lsmDir))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #5061129f1df84739 Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/shard_usage/usage.go:73
	if err := os.WriteFile(usageTmpFilePath(indexPath, shardName), data, os.FileMode(0o600)); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c124c58257add64c Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/shard_usage/usage.go:82
	usage, err := os.ReadFile(usageTmpFilePath(indexPath, shardName))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #67e71cb6af443dc7 Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/shard_version.go:57
	f, err := os.OpenFile(fileName, os.O_RDWR|os.O_CREATE, 0o666)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #fb0e5b7fa7af6168 Environment-variable access.
pkgs/go/[email protected]/adapters/repos/db/ttl/config.go:40
	if envMinTtl := os.Getenv("OBJECTS_TTL_MINIMUM_DEFAULT_TTL"); envMinTtl != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3165d870ac1ae5d4 Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/vector/common/fs.go:54
	return os.Create(name)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #06e75cc80fdd4823 Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/vector/common/fs.go:58
	return os.Open(name)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #1c707786463aea3d Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/vector/common/fs.go:62
	return os.OpenFile(name, flag, perm)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #5d63af1e6c901fa2 Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/vector/common/fs.go:109
	f, err := os.Open(name)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #0bbcc31647c6ca2f Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/vector/common/fs.go:120
	f, err := os.Create(name)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3b4f350d1d755ac6 Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/vector/common/fs.go:131
	f, err := os.OpenFile(name, flag, perm)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #428f73c2e1f4bc1f Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/vector/datasets/datareader.go:60
	osFile, err := os.Open(localFile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #dd3320356b6f7923 Environment-variable access.
pkgs/go/[email protected]/adapters/repos/db/vector/flat/index.go:286
	return !entcfg.Enabled(os.Getenv("FLAT_INDEX_DISABLE_FORCED_COMPACTION"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a56f1208cf648da7 Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/vector/hnsw/cmd/commit_logger_repair.go:53
	fd, err := os.Open(*filePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #49e1d30a952f6567 Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/vector/hnsw/condensor_mmap.go:30
	fd, err := os.Open(fileName)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #59770786fae59fd7 Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/vector/hnsw/condensor_mmap_reader.go:34
	scratchFile, err := os.Create(targetName)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f112f8a36e521182 Environment-variable access.
pkgs/go/[email protected]/adapters/repos/db/vector/hnsw/delete.go:421
	if v := os.Getenv("TOMBSTONE_DELETION_MAX_PER_CYCLE"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #10a8a829325eae00 Environment-variable access.
pkgs/go/[email protected]/adapters/repos/db/vector/hnsw/delete.go:431
	if v := os.Getenv("TOMBSTONE_DELETION_MIN_PER_CYCLE"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #52900b46f8adfcee Environment-variable access.
pkgs/go/[email protected]/adapters/repos/db/vector/hnsw/delete.go:441
	if v := os.Getenv("TOMBSTONE_DELETION_CONCURRENCY"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #2bba3411d0d3692e Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/vector/hnsw/generate_recall_datasets.go:68
	ioutil.WriteFile("recall_vectors.json", vectorsJSON, 0o644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d324c97c3bedc188 Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/vector/hnsw/generate_recall_datasets.go:69
	ioutil.WriteFile("recall_queries.json", queriesJSON, 0o644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e52325baaabbc2ab Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/vector/hnsw/generate_recall_datasets.go:70
	ioutil.WriteFile("recall_truths.json", truthsJSON, 0o644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #810920647d70a6a6 Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/vector/testinghelpers/helpers.go:62
	f, err := os.Open(file)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #be328e753addabf5 Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/vector/testinghelpers/helpers.go:249
	f, err := os.Create(fileName)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #58567e00805ad84e Filesystem access.
pkgs/go/[email protected]/adapters/repos/db/vector/testinghelpers/helpers.go:264
	f, err := os.Open(fileName)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #641b862d95226db0 Environment-variable access.
pkgs/go/[email protected]/adapters/repos/db/vector_index_queue.go:73
	staleTimeout, _ := time.ParseDuration(os.Getenv("ASYNC_INDEXING_STALE_TIMEOUT"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #7a05d0775684a3f1 Environment-variable access.
pkgs/go/[email protected]/adapters/repos/db/vector_index_queue.go:74
	batchSize, _ := strconv.Atoi(os.Getenv("ASYNC_INDEXING_BATCH_SIZE"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b3facef2a2e5186f Filesystem access.
pkgs/go/[email protected]/adapters/repos/schema/store.go:463
	data, err := os.ReadFile(src)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b4ca3cbedd831fbe Filesystem access.
pkgs/go/[email protected]/adapters/repos/schema/store.go:467
	return os.WriteFile(dst, data, 0o644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6b580afef0ba2eb3 Environment-variable access.
pkgs/go/[email protected]/cluster/replication/copier/copier.go:132
	if os.Getenv("WEAVIATE_TEST_COPY_REPLICA_SLEEP") != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f9f7dcbd307fc35e Environment-variable access.
pkgs/go/[email protected]/cluster/replication/copier/copier.go:133
		sleepTime, err := time.ParseDuration(os.Getenv("WEAVIATE_TEST_COPY_REPLICA_SLEEP"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #edd298701c0de550 Filesystem access.
pkgs/go/[email protected]/cluster/replication/copier/copier.go:306
			f, err := os.Create(tmpPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #838b78a89af68f9e Filesystem access.
pkgs/go/[email protected]/deprecations/gen.go:36
	fd, err := os.Open("deprecations.yml")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #545dd5b08132dca9 Filesystem access.
pkgs/go/[email protected]/deprecations/gen.go:51
	f, err := os.Create("data.go")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #23202e852f810be5 Filesystem access.
pkgs/go/[email protected]/entities/diskio/files.go:46
	f, err := os.Open(dir)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #81e689ad3a1c99fa Filesystem access.
pkgs/go/[email protected]/entities/diskio/files.go:61
	f, err := os.Open(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #5c4d4f898ca274f1 Filesystem access.
pkgs/go/[email protected]/entities/diskio/files.go:72
	dir, err := os.Open(dirPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ef8440f1e6ff9908 Environment-variable access.
pkgs/go/[email protected]/entities/errors/error_group_wrapper.go:54
	if entcfg.Enabled(os.Getenv("LOG_STACK_TRACE_ON_ERROR_GROUP")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #0e48f0925fbead17 Environment-variable access.
pkgs/go/[email protected]/entities/errors/error_group_wrapper.go:73
	if entcfg.Enabled(os.Getenv("LOG_STACK_TRACE_ON_ERROR_GROUP")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #49bdac8da785804c Environment-variable access.
pkgs/go/[email protected]/entities/errors/error_group_wrapper.go:81
	disable := entcfg.Enabled(os.Getenv("DISABLE_RECOVERY_ON_PANIC"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #302c9ba163675254 Environment-variable access.
pkgs/go/[email protected]/entities/errors/go_wrapper.go:27
			if !entcfg.Enabled(os.Getenv("DISABLE_RECOVERY_ON_PANIC")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #55692b8f66bf3f9a Environment-variable access.
pkgs/go/[email protected]/entities/errors/go_wrapper.go:43
			if !entcfg.Enabled(os.Getenv("DISABLE_RECOVERY_ON_PANIC")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #2c22e24ff25ba11a Environment-variable access.
pkgs/go/[email protected]/entities/sentry/config.go:56
	Config.Enabled = config.Enabled(os.Getenv("SENTRY_ENABLED"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #da1fac93ac964fe3 Environment-variable access.
pkgs/go/[email protected]/entities/sentry/config.go:61
	Config.DSN = os.Getenv("SENTRY_DSN")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3fc782783de4154e Environment-variable access.
pkgs/go/[email protected]/entities/sentry/config.go:66
	Config.Environment = os.Getenv("SENTRY_ENVIRONMENT")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e89ddfc36ea10b07 Environment-variable access.
pkgs/go/[email protected]/entities/sentry/config.go:71
	Config.ClusterOwner = os.Getenv("SENTRY_CLUSTER_OWNER")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d46ba7c661fdf9d7 Environment-variable access.
pkgs/go/[email protected]/entities/sentry/config.go:72
	Config.ClusterId = os.Getenv("SENTRY_CLUSTER_ID")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #43227c40e7886f0e Environment-variable access.
pkgs/go/[email protected]/entities/sentry/config.go:75
	Config.ErrorReportingDisabled = config.Enabled(os.Getenv("SENTRY_ERROR_REPORTING_DISABLED"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #8d48532cab850f65 Environment-variable access.
pkgs/go/[email protected]/entities/sentry/config.go:78
	} else if errorSampleRate, err := strconv.ParseFloat(os.Getenv("SENTRY_ERROR_SAMPLE_RATE"), 64); err == nil && errorSampleRate <= 1.0 && errorSampleRate >= 0.0 {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a73a2c99478c4d05 Environment-variable access.
pkgs/go/[email protected]/entities/sentry/config.go:86
	Config.TracingDisabled = config.Enabled(os.Getenv("SENTRY_TRACING_DISABLED"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #448a8bdfabe877a2 Environment-variable access.
pkgs/go/[email protected]/entities/sentry/config.go:89
	} else if tracesSampleRate, err := strconv.ParseFloat(os.Getenv("SENTRY_TRACES_SAMPLE_RATE"), 64); err == nil && tracesSampleRate <= 1.0 && tracesSampleRate >= 0.0 {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d67d96c1c03d3427 Environment-variable access.
pkgs/go/[email protected]/entities/sentry/config.go:97
	Config.ProfilingDisabled = config.Enabled(os.Getenv("SENTRY_PROFILING_DISABLED"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3eb7485b29153a9b Environment-variable access.
pkgs/go/[email protected]/entities/sentry/config.go:100
	} else if profileSampleRate, err := strconv.ParseFloat(os.Getenv("SENTRY_PROFILE_SAMPLE_RATE"), 64); err == nil && profileSampleRate <= 1.0 && profileSampleRate >= 0.0 {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #68cdb3b6b1325b69 Environment-variable access.
pkgs/go/[email protected]/entities/sentry/config.go:107
	Config.Debug = config.Enabled(os.Getenv("SENTRY_DEBUG"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #371e7241d748aacc Environment-variable access.
pkgs/go/[email protected]/entities/sentry/config.go:108
	Config.Release = os.Getenv("SENTRY_RELEASE")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #16d425ef42f0667e Environment-variable access.
pkgs/go/[email protected]/entities/sentry/config.go:126
	for _, env := range os.Environ() {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d61605604e4c772e Environment-variable access.
pkgs/go/[email protected]/entities/tokenizer/tokenizer.go:65
	numParallelStr := os.Getenv("TOKENIZER_CONCURRENCY_COUNT")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #0be1f2ec0f29a7ad Environment-variable access.
pkgs/go/[email protected]/entities/tokenizer/tokenizer.go:78
	if entcfg.Enabled(os.Getenv("USE_GSE")) || entcfg.Enabled(os.Getenv("ENABLE_TOKENIZER_GSE")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #87925a9567697bd1 Environment-variable access.
pkgs/go/[email protected]/entities/tokenizer/tokenizer.go:83
	if entcfg.Enabled(os.Getenv("ENABLE_TOKENIZER_GSE_CH")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f9691aea69ef6ad0 Environment-variable access.
pkgs/go/[email protected]/entities/tokenizer/tokenizer.go:88
	if entcfg.Enabled(os.Getenv("ENABLE_TOKENIZER_KAGOME_KR")) && tokenizers.Korean == nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #94c14877406bb2dd Environment-variable access.
pkgs/go/[email protected]/entities/tokenizer/tokenizer.go:96
	if entcfg.Enabled(os.Getenv("ENABLE_TOKENIZER_KAGOME_JA")) && tokenizers.Japanese == nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #10db9b9eb21d0c22 Environment-variable access.
pkgs/go/[email protected]/entities/vectorindex/hnsw/config.go:121
	if strategy := os.Getenv("HNSW_DEFAULT_FILTER_STRATEGY"); strategy == FilterStrategySweeping {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b1839171d7414af4 Environment-variable access.
pkgs/go/[email protected]/modules/backup-azure/client.go:50
	connectionString := os.Getenv("AZURE_STORAGE_CONNECTION_STRING")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #68ff4edf88190f9d Environment-variable access.
pkgs/go/[email protected]/modules/backup-azure/client.go:73
	accountName := os.Getenv("AZURE_STORAGE_ACCOUNT")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #9a1e1859567faf7e Environment-variable access.
pkgs/go/[email protected]/modules/backup-azure/client.go:74
	accountKey := os.Getenv("AZURE_STORAGE_KEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #bc1cea1f9daebb06 Filesystem access.
pkgs/go/[email protected]/modules/backup-azure/client.go:252
	file, err := os.Create(destPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #71a9865192ed1c05 Environment-variable access.
pkgs/go/[email protected]/modules/backup-azure/client.go:280
		blockSizeStr = os.Getenv("AZURE_BLOCK_SIZE")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #19f4d98e130d729f Environment-variable access.
pkgs/go/[email protected]/modules/backup-azure/client.go:298
		concurrencyStr = os.Getenv("AZURE_CONCURRENCY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #aa352f6ea6765c0e Environment-variable access.
pkgs/go/[email protected]/modules/backup-azure/module.go:81
		Container:  os.Getenv(azureContainer),

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #8a98781e8ef056b6 Environment-variable access.
pkgs/go/[email protected]/modules/backup-azure/module.go:82
		BackupPath: os.Getenv(azurePath),

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e5eaf87c0d9b622b Filesystem access.
pkgs/go/[email protected]/modules/backup-filesystem/backup.go:40
	contents, err := os.ReadFile(metaPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b2d0c92a464af15c Filesystem access.
pkgs/go/[email protected]/modules/backup-filesystem/backup.go:70
	source, err := os.Open(sourcePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #2ae9d84e7bc0f97c Filesystem access.
pkgs/go/[email protected]/modules/backup-filesystem/backup.go:84
	destination, err := os.Create(destinationPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #11edacdd23509f4f Filesystem access.
pkgs/go/[email protected]/modules/backup-filesystem/backup.go:116
	if err := os.WriteFile(backupPath, byes, os.ModePerm); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ac0e4a431e7a6aab Filesystem access.
pkgs/go/[email protected]/modules/backup-filesystem/backup.go:172
	f, err := os.OpenFile(backupPath, os.O_RDWR|os.O_CREATE, os.ModePerm)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #4296faa5ee3b4a9f Filesystem access.
pkgs/go/[email protected]/modules/backup-filesystem/backup.go:205
	f, err := os.Open(sourcePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e47dddce6905ac92 Environment-variable access.
pkgs/go/[email protected]/modules/backup-filesystem/module.go:67
	backupsPath := os.Getenv(backupsPathName)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b7cbaa5e0b5b9065 Filesystem access.
pkgs/go/[email protected]/modules/backup-filesystem/module.go:101
				bytes, err := os.ReadFile(fileName)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #9d384c7ffdecebc9 Environment-variable access.
pkgs/go/[email protected]/modules/backup-gcs/client.go:47
	useAuth := strings.ToLower(os.Getenv("BACKUP_GCS_USE_AUTH")) != "false"

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #71c259adaaf382aa Environment-variable access.
pkgs/go/[email protected]/modules/backup-gcs/client.go:60
	projectID := os.Getenv("GOOGLE_CLOUD_PROJECT")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #82020c3898cdfe1c Environment-variable access.
pkgs/go/[email protected]/modules/backup-gcs/client.go:62
		projectID = os.Getenv("GCLOUD_PROJECT")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #742f0e660b5cd8cb Environment-variable access.
pkgs/go/[email protected]/modules/backup-gcs/client.go:64
			projectID = os.Getenv("GCP_PROJECT")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d15364c0899a8ae9 Filesystem access.
pkgs/go/[email protected]/modules/backup-gcs/client.go:305
	file, err := os.Create(destPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b9450eb853dec0f9 Environment-variable access.
pkgs/go/[email protected]/modules/backup-gcs/module.go:81
		Bucket:     os.Getenv(gcsBucket),

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #440936fef73fe645 Environment-variable access.
pkgs/go/[email protected]/modules/backup-gcs/module.go:82
		BackupPath: os.Getenv(gcsPath),

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #73c8ea6c7d94572a Environment-variable access.
pkgs/go/[email protected]/modules/backup-s3/client.go:52
	region := os.Getenv("AWS_REGION")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #bf7815f4d770c41b Environment-variable access.
pkgs/go/[email protected]/modules/backup-s3/client.go:54
		region = os.Getenv("AWS_DEFAULT_REGION")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #9f08cf02ea66942b Environment-variable access.
pkgs/go/[email protected]/modules/backup-s3/client.go:58
	if (os.Getenv("AWS_ACCESS_KEY_ID") != "" || os.Getenv("AWS_ACCESS_KEY") != "") &&

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a772ea913aa38525 Environment-variable access.
pkgs/go/[email protected]/modules/backup-s3/client.go:59
		(os.Getenv("AWS_SECRET_ACCESS_KEY") != "" || os.Getenv("AWS_SECRET_KEY") != "") {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ded71d4a19e61a52 Environment-variable access.
pkgs/go/[email protected]/modules/backup-s3/module.go:76
	bucket := os.Getenv(s3Bucket)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ee821c03f38169bd Environment-variable access.
pkgs/go/[email protected]/modules/backup-s3/module.go:81
	useSSL := strings.ToLower(os.Getenv(s3UseSSL)) != "false"

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c3bb83a792b2b215 Environment-variable access.
pkgs/go/[email protected]/modules/backup-s3/module.go:82
	config := newConfig(os.Getenv(s3Endpoint), bucket, os.Getenv(s3Path), useSSL)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b40c13466c5bc469 Environment-variable access.
pkgs/go/[email protected]/modules/generative-anthropic/module.go:64
	apiKey := os.Getenv("ANTHROPIC_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f12f9624edda0ad7 Environment-variable access.
pkgs/go/[email protected]/modules/generative-anyscale/module.go:64
	apiKey := os.Getenv("ANYSCALE_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #cb275c90e5cac9c2 Environment-variable access.
pkgs/go/[email protected]/modules/generative-aws/module.go:66
	awsSessionToken := os.Getenv("AWS_SESSION_TOKEN")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d9c9f280f84c4b3c Environment-variable access.
pkgs/go/[email protected]/modules/generative-aws/module.go:76
	if os.Getenv("AWS_ACCESS_KEY_ID") != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #61b3eed0ed135f6f Environment-variable access.
pkgs/go/[email protected]/modules/generative-aws/module.go:77
		return os.Getenv("AWS_ACCESS_KEY_ID")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #452d9805487c80b5 Environment-variable access.
pkgs/go/[email protected]/modules/generative-aws/module.go:79
	return os.Getenv("AWS_ACCESS_KEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3e442d0cd1cc67d5 Environment-variable access.
pkgs/go/[email protected]/modules/generative-aws/module.go:83
	if os.Getenv("AWS_SECRET_ACCESS_KEY") != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #dd5a9ae53d40a900 Environment-variable access.
pkgs/go/[email protected]/modules/generative-aws/module.go:84
		return os.Getenv("AWS_SECRET_ACCESS_KEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #35e4f3b32006d0e8 Environment-variable access.
pkgs/go/[email protected]/modules/generative-aws/module.go:86
	return os.Getenv("AWS_SECRET_KEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #40444e1d3514b097 Environment-variable access.
pkgs/go/[email protected]/modules/generative-cohere/module.go:64
	apiKey := os.Getenv("COHERE_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #002f6b7d1925c935 Environment-variable access.
pkgs/go/[email protected]/modules/generative-contextualai/module.go:64
	apiKey := os.Getenv("CONTEXTUALAI_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #249c6144aadd7553 Environment-variable access.
pkgs/go/[email protected]/modules/generative-databricks/module.go:63
	databricksToken := os.Getenv("DATABRICKS_TOKEN")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b47706023db68a95 Environment-variable access.
pkgs/go/[email protected]/modules/generative-friendliai/module.go:64
	apiKey := os.Getenv("FRIENDLI_TOKEN")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a81af5681e4bae5d Environment-variable access.
pkgs/go/[email protected]/modules/generative-google/module.go:71
	apiKey := os.Getenv("GOOGLE_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #cd6a26d3d12531ef Environment-variable access.
pkgs/go/[email protected]/modules/generative-google/module.go:73
		apiKey = os.Getenv("PALM_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #08f1ee82a1c83e1c Environment-variable access.
pkgs/go/[email protected]/modules/generative-google/module.go:75
	useGoogleAuth := entcfg.Enabled(os.Getenv("USE_GOOGLE_AUTH"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e6c8e142b0f50854 Environment-variable access.
pkgs/go/[email protected]/modules/generative-mistral/module.go:64
	apiKey := os.Getenv("MISTRAL_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c93fabb58d30dcca Environment-variable access.
pkgs/go/[email protected]/modules/generative-nvidia/module.go:64
	apiKey := os.Getenv("NVIDIA_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #61f1843d43b93b17 Environment-variable access.
pkgs/go/[email protected]/modules/generative-octoai/module.go:64
	apiKey := os.Getenv("OCTOAI_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #0e5612b3f58f6d29 Environment-variable access.
pkgs/go/[email protected]/modules/generative-openai/module.go:63
	openAIApiKey := os.Getenv("OPENAI_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #9dc331997c3aab2a Environment-variable access.
pkgs/go/[email protected]/modules/generative-openai/module.go:64
	openAIOrganization := os.Getenv("OPENAI_ORGANIZATION")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #7550bcc8c5fd7977 Environment-variable access.
pkgs/go/[email protected]/modules/generative-openai/module.go:65
	azureApiKey := os.Getenv("AZURE_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c05f9fc034fc6aa7 Environment-variable access.
pkgs/go/[email protected]/modules/generative-xai/module.go:64
	apiKey := os.Getenv("XAI_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f9100ebf9304226a Environment-variable access.
pkgs/go/[email protected]/modules/img2vec-neural/module.go:76
	uri := os.Getenv("IMAGE_INFERENCE_API")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ff0c370b5db6c36d Environment-variable access.
pkgs/go/[email protected]/modules/multi2multivec-jinaai/module.go:97
	apiKey := os.Getenv("JINAAI_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #2fd8c6e3b667e80c Environment-variable access.
pkgs/go/[email protected]/modules/multi2vec-aws/module.go:99
	awsSessionToken := os.Getenv("AWS_SESSION_TOKEN")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #dfaefa4354b09d30 Environment-variable access.
pkgs/go/[email protected]/modules/multi2vec-aws/module.go:109
	if os.Getenv("AWS_ACCESS_KEY_ID") != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #287166b3ea362ad6 Environment-variable access.
pkgs/go/[email protected]/modules/multi2vec-aws/module.go:110
		return os.Getenv("AWS_ACCESS_KEY_ID")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #cf05690eb85072f2 Environment-variable access.
pkgs/go/[email protected]/modules/multi2vec-aws/module.go:112
	return os.Getenv("AWS_ACCESS_KEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b0369f00b0243fc9 Environment-variable access.
pkgs/go/[email protected]/modules/multi2vec-aws/module.go:116
	if os.Getenv("AWS_SECRET_ACCESS_KEY") != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #7d531afda6540afd Environment-variable access.
pkgs/go/[email protected]/modules/multi2vec-aws/module.go:117
		return os.Getenv("AWS_SECRET_ACCESS_KEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6d447b6f722f5052 Environment-variable access.
pkgs/go/[email protected]/modules/multi2vec-aws/module.go:119
	return os.Getenv("AWS_SECRET_KEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d51a2dd93ac62a57 Environment-variable access.
pkgs/go/[email protected]/modules/multi2vec-bind/module.go:143
	uri := os.Getenv("BIND_INFERENCE_API")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #bdd21d8fdb1fd771 Environment-variable access.
pkgs/go/[email protected]/modules/multi2vec-clip/module.go:108
	uri := os.Getenv("CLIP_INFERENCE_API")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6d0a30ceff628aff Environment-variable access.
pkgs/go/[email protected]/modules/multi2vec-clip/module.go:114
	if envWaitForStartup := os.Getenv("CLIP_WAIT_FOR_STARTUP"); envWaitForStartup != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #45a531f6d394d9d9 Environment-variable access.
pkgs/go/[email protected]/modules/multi2vec-cohere/module.go:97
	apiKey := os.Getenv("COHERE_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #dfd75204546197fa Environment-variable access.
pkgs/go/[email protected]/modules/multi2vec-google/module.go:128
	apiKey := os.Getenv("GOOGLE_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #29aa86c6b3268c57 Environment-variable access.
pkgs/go/[email protected]/modules/multi2vec-google/module.go:130
		apiKey = os.Getenv("PALM_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #5c8a08bbdbcb4030 Environment-variable access.
pkgs/go/[email protected]/modules/multi2vec-google/module.go:132
	useGoogleAuth := entcfg.Enabled(os.Getenv("USE_GOOGLE_AUTH"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #4f23cc209c370a13 Environment-variable access.
pkgs/go/[email protected]/modules/multi2vec-jinaai/module.go:97
	apiKey := os.Getenv("JINAAI_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #fc2cf7724742ba67 Environment-variable access.
pkgs/go/[email protected]/modules/multi2vec-nvidia/module.go:97
	apiKey := os.Getenv("NVIDIA_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #fbb4e5213673d294 Environment-variable access.
pkgs/go/[email protected]/modules/multi2vec-voyageai/module.go:103
	apiKey := os.Getenv("VOYAGEAI_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #5bfd8c5a9396d5dd Environment-variable access.
pkgs/go/[email protected]/modules/ner-transformers/module.go:66
	uri := os.Getenv("NER_INFERENCE_API")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #63f3d7a7d69d6360 Environment-variable access.
pkgs/go/[email protected]/modules/ner-transformers/module.go:72
	if envWaitForStartup := os.Getenv("NER_WAIT_FOR_STARTUP"); envWaitForStartup != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d81104f22e308623 Environment-variable access.
pkgs/go/[email protected]/modules/offload-s3/module.go:174
	if path := os.Getenv("PERSISTENCE_DATA_PATH"); path != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #7ac0b88bb30b54f2 Environment-variable access.
pkgs/go/[email protected]/modules/offload-s3/module.go:178
	if bucket := os.Getenv(s3Bucket); bucket != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c79dc29fc7b1c58e Environment-variable access.
pkgs/go/[email protected]/modules/offload-s3/module.go:182
	if endpoint := os.Getenv(s3Endpoint); endpoint != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #00b1f3938e6e5ccf Environment-variable access.
pkgs/go/[email protected]/modules/offload-s3/module.go:186
	if eTimeout := os.Getenv(timeout); eTimeout != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #cdffb97a504f58bd Environment-variable access.
pkgs/go/[email protected]/modules/offload-s3/module.go:194
	if concc := os.Getenv(concurrency); concc != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #47a432263491289c Environment-variable access.
pkgs/go/[email protected]/modules/offload-s3/module.go:202
	if entcfg.Enabled(os.Getenv(s3BucketAutoCreate)) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b1f3ba50d48e8235 Environment-variable access.
pkgs/go/[email protected]/modules/qna-openai/module.go:135
	openAIApiKey := os.Getenv("OPENAI_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b0f4b299157153b3 Environment-variable access.
pkgs/go/[email protected]/modules/qna-openai/module.go:136
	openAIOrganization := os.Getenv("OPENAI_ORGANIZATION")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f5578e4137e19032 Environment-variable access.
pkgs/go/[email protected]/modules/qna-openai/module.go:137
	azureApiKey := os.Getenv("AZURE_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e9f2ccd66a290668 Environment-variable access.
pkgs/go/[email protected]/modules/qna-transformers/module.go:138
	uri := os.Getenv("QNA_INFERENCE_API")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #269d1413865dd474 Environment-variable access.
pkgs/go/[email protected]/modules/qna-transformers/module.go:144
	if envWaitForStartup := os.Getenv("QNA_WAIT_FOR_STARTUP"); envWaitForStartup != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a8b46ee8c81a04ce Environment-variable access.
pkgs/go/[email protected]/modules/reranker-cohere/module.go:66
	apiKey := os.Getenv("COHERE_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b6d4937b02395450 Environment-variable access.
pkgs/go/[email protected]/modules/reranker-contextualai/module.go:66
	apiKey := os.Getenv("CONTEXTUALAI_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a03ea8c7f7f3630a Environment-variable access.
pkgs/go/[email protected]/modules/reranker-jinaai/module.go:66
	apiKey := os.Getenv("JINAAI_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e639f71b7c135e89 Environment-variable access.
pkgs/go/[email protected]/modules/reranker-nvidia/module.go:66
	apiKey := os.Getenv("NVIDIA_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #9707f93da3895f02 Environment-variable access.
pkgs/go/[email protected]/modules/reranker-transformers/module.go:66
	uri := os.Getenv("RERANKER_INFERENCE_API")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #31bf746d64a24779 Environment-variable access.
pkgs/go/[email protected]/modules/reranker-transformers/module.go:74
	if envWaitForStartup := os.Getenv("RERANKER_WAIT_FOR_STARTUP"); envWaitForStartup != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d9778462126ece7b Environment-variable access.
pkgs/go/[email protected]/modules/reranker-voyageai/module.go:66
	apiKey := os.Getenv("VOYAGEAI_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #44a5c07b7844a4f8 Environment-variable access.
pkgs/go/[email protected]/modules/sum-transformers/module.go:66
	uri := os.Getenv("SUM_INFERENCE_API")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6fad12b671f0982b Environment-variable access.
pkgs/go/[email protected]/modules/sum-transformers/module.go:72
	if envWaitForStartup := os.Getenv("SUM_WAIT_FOR_STARTUP"); envWaitForStartup != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #1ba551d671153dae Environment-variable access.
pkgs/go/[email protected]/modules/text-spellcheck/module.go:58
	uri := os.Getenv("SPELLCHECK_INFERENCE_API")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #80f75224a3e0b80d Environment-variable access.
pkgs/go/[email protected]/modules/text2multivec-jinaai/module.go:114
	jinaAIApiKey := os.Getenv("JINAAI_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #8ddb9b86ff5c75d4 Environment-variable access.
pkgs/go/[email protected]/modules/text2vec-aws/module.go:95
	awsSessionToken := os.Getenv("AWS_SESSION_TOKEN")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #1979b25d760bd91e Environment-variable access.
pkgs/go/[email protected]/modules/text2vec-aws/module.go:105
	if os.Getenv("AWS_ACCESS_KEY_ID") != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #efe53e895db25a81 Environment-variable access.
pkgs/go/[email protected]/modules/text2vec-aws/module.go:106
		return os.Getenv("AWS_ACCESS_KEY_ID")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b9f0f53d9e4c6a0d Environment-variable access.
pkgs/go/[email protected]/modules/text2vec-aws/module.go:108
	return os.Getenv("AWS_ACCESS_KEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6ca3db009a7c6eac Environment-variable access.
pkgs/go/[email protected]/modules/text2vec-aws/module.go:112
	if os.Getenv("AWS_SECRET_ACCESS_KEY") != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #afcabcf89ce34564 Environment-variable access.
pkgs/go/[email protected]/modules/text2vec-aws/module.go:113
		return os.Getenv("AWS_SECRET_ACCESS_KEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #be5f894b534e6574 Environment-variable access.
pkgs/go/[email protected]/modules/text2vec-aws/module.go:115
	return os.Getenv("AWS_SECRET_KEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a04263c7a8b59368 Environment-variable access.
pkgs/go/[email protected]/modules/text2vec-bigram/bigram.go:65
	switch strings.ToLower(os.Getenv("BIGRAM")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #17b9c4eddb4292ed Environment-variable access.
pkgs/go/[email protected]/modules/text2vec-cohere/module.go:102
	apiKey := os.Getenv("COHERE_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #0a1eb30a58410b27 Environment-variable access.
pkgs/go/[email protected]/modules/text2vec-databricks/module.go:104
	databricksToken := os.Getenv("DATABRICKS_TOKEN")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e77bd6361206ffde Environment-variable access.
pkgs/go/[email protected]/modules/text2vec-google/module.go:117
	apiKey := os.Getenv("GOOGLE_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #1fa949e499e94c1c Environment-variable access.
pkgs/go/[email protected]/modules/text2vec-google/module.go:119
		apiKey = os.Getenv("PALM_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #26d480713bf73664 Environment-variable access.
pkgs/go/[email protected]/modules/text2vec-google/module.go:122
	useGoogleAuth := entcfg.Enabled(os.Getenv("USE_GOOGLE_AUTH"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #7a2bcff8ebff2e23 Environment-variable access.
pkgs/go/[email protected]/modules/text2vec-google/module.go:125
	m.useBatchSimpleVectorizer = entcfg.Enabled(os.Getenv("USE_T2V_GOOGLE_BATCH_SIMPLE_LOGIC"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #694143b47532a30a Environment-variable access.
pkgs/go/[email protected]/modules/text2vec-google/module.go:128
	if batchSizeStr := os.Getenv("T2V_GOOGLE_BATCH_SIMPLE_BATCH_SIZE"); batchSizeStr != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3105d416ec88b43e Environment-variable access.
pkgs/go/[email protected]/modules/text2vec-gpt4all/module.go:94
	uri := os.Getenv("GPT4ALL_INFERENCE_API")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #72ab8383da5845f5 Environment-variable access.
pkgs/go/[email protected]/modules/text2vec-gpt4all/module.go:100
	if envWaitForStartup := os.Getenv("GPT4ALL_WAIT_FOR_STARTUP"); envWaitForStartup != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #71490d92bc73b7ae Environment-variable access.
pkgs/go/[email protected]/modules/text2vec-huggingface/module.go:102
	apiKey := os.Getenv("HUGGINGFACE_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e973cd9cf73269e8 Environment-variable access.
pkgs/go/[email protected]/modules/text2vec-jinaai/module.go:105
	jinaAIApiKey := os.Getenv("JINAAI_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d24c1ffa7c9edaa3 Environment-variable access.
pkgs/go/[email protected]/modules/text2vec-mistral/module.go:104
	apiKey := os.Getenv("MISTRAL_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #47295056870e13c4 Environment-variable access.
pkgs/go/[email protected]/modules/text2vec-model2vec/module.go:94
	if envWaitForStartup := os.Getenv("MODEL2VEC_WAIT_FOR_STARTUP"); envWaitForStartup != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #cc113360d7770b9f Environment-variable access.
pkgs/go/[email protected]/modules/text2vec-model2vec/module.go:98
	url := os.Getenv("MODEL2VEC_INFERENCE_API")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #03afb46b66aaf0b8 Environment-variable access.
pkgs/go/[email protected]/modules/text2vec-morph/module.go:105
	morphApiKey := os.Getenv("MORPH_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #164315a62b8f6b0d Environment-variable access.
pkgs/go/[email protected]/modules/text2vec-nvidia/module.go:104
	apiKey := os.Getenv("NVIDIA_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a4bea383ebd34f1b Environment-variable access.
pkgs/go/[email protected]/modules/text2vec-octoai/module.go:92
	octoAIApiKey := os.Getenv("OCTOAI_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c6842e256440218d Environment-variable access.
pkgs/go/[email protected]/modules/text2vec-openai/module.go:107
	openAIApiKey := os.Getenv("OPENAI_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #beb6adf69b23d1fc Environment-variable access.
pkgs/go/[email protected]/modules/text2vec-openai/module.go:108
	openAIOrganization := os.Getenv("OPENAI_ORGANIZATION")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #61b764bc3c157432 Environment-variable access.
pkgs/go/[email protected]/modules/text2vec-openai/module.go:109
	azureApiKey := os.Getenv("AZURE_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #26a38a71c781c210 Environment-variable access.
pkgs/go/[email protected]/modules/text2vec-transformers/module.go:94
	uriPassage := os.Getenv("TRANSFORMERS_PASSAGE_INFERENCE_API")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #7b8ffe540b25385f Environment-variable access.
pkgs/go/[email protected]/modules/text2vec-transformers/module.go:95
	uriQuery := os.Getenv("TRANSFORMERS_QUERY_INFERENCE_API")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c300109325d17688 Environment-variable access.
pkgs/go/[email protected]/modules/text2vec-transformers/module.go:96
	uriCommon := os.Getenv("TRANSFORMERS_INFERENCE_API")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #80d2371cac26e384 Environment-variable access.
pkgs/go/[email protected]/modules/text2vec-transformers/module.go:117
	if envWaitForStartup := os.Getenv("TRANSFORMERS_WAIT_FOR_STARTUP"); envWaitForStartup != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #7946315698ba2bdd Environment-variable access.
pkgs/go/[email protected]/modules/text2vec-voyageai/module.go:120
	apiKey := os.Getenv("VOYAGEAI_APIKEY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #68a7d3053156a22c Environment-variable access.
pkgs/go/[email protected]/modules/usage-gcs/module.go:138
	if v := os.Getenv("USAGE_GCS_BUCKET"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #1a605d20b2a08b64 Environment-variable access.
pkgs/go/[email protected]/modules/usage-gcs/module.go:146
	if v := os.Getenv("USAGE_GCS_PREFIX"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #663d145000a5281e Environment-variable access.
pkgs/go/[email protected]/modules/usage-s3/module.go:138
	if v := os.Getenv("USAGE_S3_BUCKET"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e54d9f90268cc448 Environment-variable access.
pkgs/go/[email protected]/modules/usage-s3/module.go:146
	if v := os.Getenv("USAGE_S3_PREFIX"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #60324a0be143150b Environment-variable access.
pkgs/go/[email protected]/modules/usage-s3/storage.go:45
		if endpoint := os.Getenv("AWS_ENDPOINT"); endpoint != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs tooling Excluded from app score unreachable #e0bf7035388c1083 Environment-variable access.
pkgs/go/[email protected]/tools/dev/generate_release_notes/main.go:36
	githubToken := os.Getenv("GITHUB_TOKEN")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs tooling Excluded from app score unreachable #5ad116633b43e17d Environment-variable access.
pkgs/go/[email protected]/tools/dev/generate_release_notes/main.go:45
	currentVersion := os.Getenv("CURRENT_VERSION")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs tooling Excluded from app score unreachable #bc3cc7a4477af0c1 Environment-variable access.
pkgs/go/[email protected]/tools/dev/generate_release_notes/main.go:51
	previousVersion := os.Getenv("PREVIOUS_VERSION")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs tooling Excluded from app score unreachable #65ef10b644b235e7 Filesystem access.
pkgs/go/[email protected]/tools/license_headers/main.go:37
	h, err := os.ReadFile("tools/license_headers/header.txt")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs tooling Excluded from app score unreachable #48aa9117cc92ff74 Filesystem access.
pkgs/go/[email protected]/tools/license_headers/main.go:58
	bytes, err := os.ReadFile(name)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs tooling Excluded from app score unreachable #566e54cc4d47593c Filesystem access.
pkgs/go/[email protected]/tools/license_headers/main.go:93
	return os.WriteFile(name, updated, 0)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs tooling Excluded from app score unreachable #ceb1f09920c04d90 Filesystem access.
pkgs/go/[email protected]/tools/license_headers/main.go:107
	return os.WriteFile(name, replaced, 0)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs tooling Excluded from app score unreachable #7d24eba7cde53760 Environment-variable access.
pkgs/go/[email protected]/tools/release_template/main.go:29
	version := os.Getenv("VERSION")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs tooling Excluded from app score unreachable #17b455c7d65b6aa9 Environment-variable access.
pkgs/go/[email protected]/tools/release_template/main.go:120
	codes := strings.Split(os.Getenv("LANGUAGES"), " ")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs tooling Excluded from app score unreachable #ae4a5ecab986e96b Filesystem access.
pkgs/go/[email protected]/tools/swagger_custom_code/main.go:25
	bytes, err := os.ReadFile(name)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs tooling Excluded from app score unreachable #d659c57d3b9a2d14 Filesystem access.
pkgs/go/[email protected]/tools/swagger_custom_code/main.go:71
	return os.WriteFile(name, []byte(fmt.Sprintf("%s%s", objectStr, unmarshalStr)), 0)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d16bfcbc83a5bb03 Filesystem access.
pkgs/go/[email protected]/usecases/auth/authentication/apikey/db_users.go:522
		file, err := os.Create(filePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #67133f3933619d92 Filesystem access.
pkgs/go/[email protected]/usecases/auth/authentication/apikey/db_users.go:534
	file, err := os.Open(filename)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e1c966bc7d4a5a59 Environment-variable access.
pkgs/go/[email protected]/usecases/auth/authentication/oidc/middleware.go:238
		region := os.Getenv("AWS_REGION")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ec0cb92930794dfc Environment-variable access.
pkgs/go/[email protected]/usecases/auth/authentication/oidc/middleware.go:240
			region = os.Getenv("AWS_DEFAULT_REGION")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs tooling Excluded from app score unreachable #e669a7a59af12d84 Filesystem access.
pkgs/go/[email protected]/usecases/auth/authorization/docs/generator.go:69
		content, err := os.ReadFile(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs tooling Excluded from app score unreachable #d7a2071849ccc67e Filesystem access.
pkgs/go/[email protected]/usecases/auth/authorization/docs/generator.go:160
	f, err := os.Create("auth_calls.md")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #666cc0287b112000 Filesystem access.
pkgs/go/[email protected]/usecases/auth/authorization/rbac/model.go:73
		file, err := os.Create(filePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #afd52dff902433a4 Filesystem access.
pkgs/go/[email protected]/usecases/auth/authorization/rbac/model.go:284
	b, err := os.ReadFile(filePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #417a9d95dd7ba543 Filesystem access.
pkgs/go/[email protected]/usecases/backup/backend.go:666
	if err := os.WriteFile(destPath, sd.DocIDCounter, os.ModePerm); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a05c70e11e3a5619 Filesystem access.
pkgs/go/[email protected]/usecases/backup/backend.go:670
	if err := os.WriteFile(destPath, sd.PropLengthTracker, os.ModePerm); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #9ab1ef1d977c4990 Filesystem access.
pkgs/go/[email protected]/usecases/backup/backend.go:674
	if err := os.WriteFile(destPath, sd.Version, os.ModePerm); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #0664228ebcaab6b4 Filesystem access.
pkgs/go/[email protected]/usecases/backup/zip.go:219
	f, err := os.Open(absPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #aff4814db81fd13f Filesystem access.
pkgs/go/[email protected]/usecases/backup/zip.go:377
	f, err := os.OpenFile(target, os.O_CREATE|os.O_RDWR, os.FileMode(h.Mode))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #aa4dc15dd49b26d7 Environment-variable access.
pkgs/go/[email protected]/usecases/cluster/transactions_slowlog.go:28
	if age := os.Getenv("TX_SLOW_LOG_AGE_THRESHOLD_SECONDS"); age != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #dd2890bbc5781830 Environment-variable access.
pkgs/go/[email protected]/usecases/cluster/transactions_slowlog.go:35
	if change := os.Getenv("TX_SLOW_LOG_CHANGE_THRESHOLD_SECONDS"); change != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #137ae78dfaf72d6a Environment-variable access.
pkgs/go/[email protected]/usecases/config/config_handler.go:60
var DefaultUsingBlockMaxWAND = os.Getenv("USE_INVERTED_SEARCHABLE") == "" || entcfg.Enabled(os.Getenv("USE_INVERTED_SEARCHABLE"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #bf5ff0380e8f83e6 Filesystem access.
pkgs/go/[email protected]/usecases/config/config_handler.go:691
	file, err := os.ReadFile(configFileName)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #591fcfe885c61a25 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:66
	if entcfg.Enabled(os.Getenv("PROMETHEUS_MONITORING_ENABLED")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #1765caffe0e4ea4e Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:72
		if entcfg.Enabled(os.Getenv("PROMETHEUS_MONITORING_GROUP_CLASSES")) ||

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #5fc5ccb2674202b6 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:73
			entcfg.Enabled(os.Getenv("PROMETHEUS_MONITORING_GROUP")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #8a693197423beb0f Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:84
		if val := strings.TrimSpace(os.Getenv("PROMETHEUS_MONITORING_METRIC_NAMESPACE")); val != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e0852c2065cbba1e Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:88
		if entcfg.Enabled(os.Getenv("PROMETHEUS_MONITOR_CRITICAL_BUCKETS_ONLY")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #0a434f65fb6933b2 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:93
	if entcfg.Enabled(os.Getenv("TRACK_VECTOR_DIMENSIONS")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a6cc1c33ebbb12ee Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:98
	opt := os.Getenv("MINIMUM_INTERNAL_TIMEOUT")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a4ecb4e792455eb8 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:109
	if v := os.Getenv("TRACK_VECTOR_DIMENSIONS_INTERVAL"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #88a096bba50249ac Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:119
	if entcfg.Enabled(os.Getenv("REINDEX_VECTOR_DIMENSIONS_AT_STARTUP")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6302295254966680 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:124
	if entcfg.Enabled(os.Getenv("DISABLE_LAZY_LOAD_SHARDS")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #de9f8e691e826389 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:128
	if entcfg.Enabled(os.Getenv("FORCE_FULL_REPLICAS_SEARCH")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #4681a14a76d7bf82 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:132
	if v := os.Getenv("TRANSFER_INACTIVITY_TIMEOUT"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #cc3f817c4589c9cb Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:143
	if entcfg.Enabled(os.Getenv("RECOUNT_PROPERTIES_AT_STARTUP")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #5ed3536893e3bd54 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:147
	if entcfg.Enabled(os.Getenv("REINDEX_SET_TO_ROARINGSET_AT_STARTUP")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #952a1a6c1723f311 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:151
	if entcfg.Enabled(os.Getenv("INDEX_MISSING_TEXT_FILTERABLE_AT_STARTUP")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #2730470acf4dd3be Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:196
	if v := os.Getenv("REINDEX_INDEXES_AT_STARTUP"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ea7b150a8f11362a Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:209
	if v := os.Getenv("PROMETHEUS_MONITORING_PORT"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #592c582824a6b50f Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:218
	if v := os.Getenv("GO_PROFILING_PORT"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #69a2185d95788d4c Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:227
	if entcfg.Enabled(os.Getenv("AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #7a3304208efdd2b4 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:231
	if entcfg.Enabled(os.Getenv("AUTHENTICATION_OIDC_ENABLED")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #fd6c7a7b7e7d9543 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:244
		if entcfg.Enabled(os.Getenv("AUTHENTICATION_OIDC_SKIP_CLIENT_ID_CHECK")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #772824e20d49eac1 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:248
		if v := os.Getenv("AUTHENTICATION_OIDC_ISSUER"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a9a3118decb1562f Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:252
		if v := os.Getenv("AUTHENTICATION_OIDC_CLIENT_ID"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #62742aca418f6430 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:256
		if v := os.Getenv("AUTHENTICATION_OIDC_SCOPES"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f90dccb716b6c1c3 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:260
		if v := os.Getenv("AUTHENTICATION_OIDC_USERNAME_CLAIM"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #87440642c813dd41 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:264
		if v := os.Getenv("AUTHENTICATION_OIDC_GROUPS_CLAIM"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #2881c312c369e69a Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:268
		if v := os.Getenv("AUTHENTICATION_OIDC_CERTIFICATE"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #460de1494e8d0b58 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:272
		if v := os.Getenv("AUTHENTICATION_OIDC_JWKS_URL"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #60ffcf31639c1af4 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:286
	if entcfg.Enabled(os.Getenv("AUTHENTICATION_DB_USERS_ENABLED")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c35909cfaba483ba Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:290
	if entcfg.Enabled(os.Getenv("AUTHENTICATION_APIKEY_ENABLED")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #dd74c260d269f182 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:293
		if rawKeys, ok := os.LookupEnv("AUTHENTICATION_APIKEY_ALLOWED_KEYS"); ok {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #cf63f6ae1fe5b806 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:298
		if rawUsers, ok := os.LookupEnv("AUTHENTICATION_APIKEY_USERS"); ok {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a27d1726345c1422 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:305
	if entcfg.Enabled(os.Getenv("AUTHORIZATION_ADMINLIST_ENABLED")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #15a91b159a94c5ac Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:308
		usersString, ok := os.LookupEnv("AUTHORIZATION_ADMINLIST_USERS")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3e8e1cd59b516fcf Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:313
		roUsersString, ok := os.LookupEnv("AUTHORIZATION_ADMINLIST_READONLY_USERS")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #57bae6ffa3fd2790 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:318
		groupsString, ok := os.LookupEnv("AUTHORIZATION_ADMINLIST_GROUPS")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f0982ee0f390d256 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:323
		roGroupsString, ok := os.LookupEnv("AUTHORIZATION_ADMINLIST_READONLY_GROUPS")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #33d1227b28d44966 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:329
	if entcfg.Enabled(os.Getenv("AUTHORIZATION_ENABLE_RBAC")) || entcfg.Enabled(os.Getenv("AUTHORIZATION_RBAC_ENABLED")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #4d3c365890904f70 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:332
		if entcfg.Enabled(os.Getenv("AUTHORIZATION_RBAC_IP_IN_AUDIT_LOG_DISABLED")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #099a30df47ea3d06 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:336
		adminsString, ok := os.LookupEnv("AUTHORIZATION_RBAC_ROOT_USERS")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #21979c109305e834 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:340
			adminsString, ok := os.LookupEnv("AUTHORIZATION_ADMIN_USERS")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e19620a31d7d2215 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:346
		groupString, ok := os.LookupEnv("AUTHORIZATION_RBAC_ROOT_GROUPS")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c44a4ee67e7f34b5 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:351
		viewerGroupString, ok := os.LookupEnv("AUTHORIZATION_RBAC_READONLY_GROUPS")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #cb72f9b47eac598b Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:356
			viewerGroupString, ok := os.LookupEnv("EXPERIMENTAL_AUTHORIZATION_RBAC_READONLY_ROOT_GROUPS")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f9dc2817e55a67dd Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:362
		readOnlyUsersString, ok := os.LookupEnv("EXPERIMENTAL_AUTHORIZATION_RBAC_READONLY_USERS")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #4ff10f9502dadd49 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:367
		adminUsersString, ok := os.LookupEnv("EXPERIMENTAL_AUTHORIZATION_RBAC_ADMIN_USERS")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d7500ca3a7a232cc Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:373
	config.Profiling.Disabled = entcfg.Enabled(os.Getenv("GO_PROFILING_DISABLE"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #df68457b80be1689 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:379
	if os.Getenv("PERSISTENCE_LSM_ACCESS_STRATEGY") == "pread" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ce6c3b7ad816e94a Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:383
	if v := os.Getenv("PERSISTENCE_LSM_MAX_SEGMENT_SIZE"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #12163b59e8bb5b49 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:402
	if entcfg.Enabled(os.Getenv("PERSISTENCE_LSM_SEPARATE_OBJECTS_COMPACTIONS")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #327a9f8f4cf23974 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:406
	if entcfg.Enabled(os.Getenv("PERSISTENCE_LSM_ENABLE_SEGMENTS_CHECKSUM_VALIDATION")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #5fe2b14806e67c57 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:410
	if v := os.Getenv("PERSISTENCE_MIN_MMAP_SIZE"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #2ca9c0cf466c1e21 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:421
	if entcfg.Enabled(os.Getenv("PERSISTENCE_LAZY_SEGMENTS_DISABLED")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3f9cc43995d27032 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:425
	if entcfg.Enabled(os.Getenv("PERSISTENCE_SEGMENT_INFO_FROM_FILE_DISABLED")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #5fcc1a487f907e80 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:431
	if entcfg.Enabled(os.Getenv("PERSISTENCE_WRITE_METADATA_FILES_ENABLED")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d238c93376c3b201 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:437
	if v := os.Getenv("PERSISTENCE_MAX_REUSE_WAL_SIZE"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #5a9d9d488682877e Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:456
	if v := os.Getenv("PERSISTENCE_HNSW_MAX_LOG_SIZE"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b1a84193cb6f0129 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:469
	if v := os.Getenv("PERSISTENCE_HNSW_DISABLE_SNAPSHOTS"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #31d8b39a14def692 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:482
	if v := os.Getenv("PERSISTENCE_HNSW_SNAPSHOT_ON_STARTUP"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #8d36fdc0f7ef3910 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:504
	if v := os.Getenv("DEFAULT_QUANTIZATION"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ae6da7c8b95c095f Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:511
	if entcfg.Enabled(os.Getenv("INDEX_RANGEABLE_IN_MEMORY")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d7de2b6a5ee177f9 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:553
	if v := os.Getenv("PERSISTENCE_DATA_PATH"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #7f927aaf312c142c Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:595
		cptSelected, err := cptParser.parse(os.Getenv("REINDEX_MAP_TO_BLOCKMAX_SELECT"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3d65753c6a03f072 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:610
	if v := os.Getenv("ORIGIN"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #1e40c0d2d7a84a36 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:614
	if v := os.Getenv("CONTEXTIONARY_URL"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #bab985239f6aab53 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:618
	if v := os.Getenv("QUERY_DEFAULTS_LIMIT"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3d4526ea845b2a9a Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:631
	if v := os.Getenv("BACKUP_CHUNK_TARGET_SIZE"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #0024c94b2080333d Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:642
	if v := os.Getenv("QUERY_DEFAULTS_LIMIT_GRAPHQL"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #8a5d46d678cc0403 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:655
	if v := os.Getenv("QUERY_MAXIMUM_RESULTS"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ebe1043e39492ba8 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:666
	if v := os.Getenv("QUERY_HYBRID_MAXIMUM_RESULTS"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #be11c7973c9141af Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:676
	if v := os.Getenv("QUERY_NESTED_CROSS_REFERENCE_LIMIT"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #4c54cd474a3cdb05 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:696
	if v := os.Getenv("MAX_IMPORT_GOROUTINES_FACTOR"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #59a4559ffab5ea31 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:709
	if v := os.Getenv("DEFAULT_VECTORIZER_MODULE"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #27f81e368dabb7d5 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:719
	if v := os.Getenv("MODULES_CLIENT_TIMEOUT"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #18006612b2981434 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:729
	if v := os.Getenv("DEFAULT_VECTOR_DISTANCE_METRIC"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #93256dd11c7d88e8 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:733
	if v := os.Getenv("ENABLE_MODULES"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f0350d7fca92bae9 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:737
	if entcfg.Enabled(os.Getenv("API_BASED_MODULES_DISABLED")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #0453164091b9e3f4 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:744
	if v := os.Getenv("AUTOSCHEMA_ENABLED"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #5b1d649d1b90e5db Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:750
	if v := os.Getenv("AUTOSCHEMA_DEFAULT_STRING"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #631ea5bc44832ac6 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:754
	if v := os.Getenv("AUTOSCHEMA_DEFAULT_NUMBER"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #80455fac5c786b61 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:758
	if v := os.Getenv("AUTOSCHEMA_DEFAULT_DATE"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #0f1b851b0dd6868d Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:763
	if v := os.Getenv("TENANT_ACTIVITY_READ_LOG_LEVEL"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3dea16308933e475 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:769
	if v := os.Getenv("TENANT_ACTIVITY_WRITE_LOG_LEVEL"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #9301e9097fd9df98 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:780
	if v := os.Getenv("GO_BLOCK_PROFILE_RATE"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f5f53a6b72c09db5 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:789
	if v := os.Getenv("GO_MUTEX_PROFILE_FRACTION"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #4f1377127abda210 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:798
	if v := os.Getenv("MAXIMUM_CONCURRENT_GET_REQUESTS"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #66039d7196568fc1 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:839
	if v := os.Getenv("GRPC_CERT_FILE"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a5d168df734b41a2 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:843
	if v := os.Getenv("GRPC_KEY_FILE"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #87fb6c073d40905a Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:863
	config.DisableGraphQL = entcfg.Enabled(os.Getenv("DISABLE_GRAPHQL"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #70e7d2141e76245c Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:877
	config.Replication.AsyncReplicationDisabled = configRuntime.NewDynamicValue(entcfg.Enabled(os.Getenv("ASYNC_REPLICATION_DISABLED")))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #8a807e0322394480 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:889
	if v := os.Getenv("REPLICATION_FORCE_DELETION_STRATEGY"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #5feb9ba9743fb492 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:894
	if entcfg.Enabled(os.Getenv("DISABLE_TELEMETRY")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #97cc2bdd07e251ba Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:899
	if v := os.Getenv("TELEMETRY_URL"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #7091d7820a789777 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:904
	if v := os.Getenv("TELEMETRY_PUSH_INTERVAL"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #65f745746d291138 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:912
	if entcfg.Enabled(os.Getenv("HNSW_STARTUP_WAIT_FOR_VECTOR_CACHE")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #9c2772d8353f1f69 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:916
	if entcfg.Enabled(os.Getenv("ASYNC_INDEXING")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #0d9f65576d456658 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:938
	if entcfg.Enabled(os.Getenv("EXPERIMENTAL_METADATA_SERVER_ENABLED")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #772df64c9aaa54f5 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:942
	if v := os.Getenv("EXPERIMENTAL_METADATA_SERVER_GRPC_LISTEN_ADDRESS"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #8ff66efbc581ab6a Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:953
	config.RuntimeOverrides.Enabled = entcfg.Enabled(os.Getenv("RUNTIME_OVERRIDES_ENABLED"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #2fa22a2160842fd5 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:955
	if v := os.Getenv("RUNTIME_OVERRIDES_PATH"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #acef8c74b44fbcb7 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:960
	if v := os.Getenv("RUNTIME_OVERRIDES_LOAD_INTERVAL"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #651d819e0b6b54f9 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:984
	if v := os.Getenv("DISTRIBUTED_TASKS_ENABLED"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #64f101c473410a19 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:988
	if v := os.Getenv("REPLICA_MOVEMENT_ENABLED"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f308c1b9c37bffa2 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:992
	if v := os.Getenv("REPLICA_MOVEMENT_MINIMUM_ASYNC_WAIT"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #26a3e44f95a897f2 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:1005
	if v := os.Getenv("REVECTORIZE_CHECK_DISABLED"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #42b09d9b0cb6cf6d Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:1010
	querySlowLogEnabled := entcfg.Enabled(os.Getenv("QUERY_SLOW_LOG_ENABLED"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #12e994c04b788dac Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:1014
	if v := os.Getenv("QUERY_SLOW_LOG_THRESHOLD"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #92d8d1a9095295da Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:1025
	if v := os.Getenv(envName); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #86f196bf38f95f5d Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:1035
	if v := os.Getenv(envName); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e8d460de93fd0986 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:1044
	if v := os.Getenv("INVERTED_SORTER_DISABLED"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #45c5eb411f1e62c0 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:1050
	if v := os.Getenv("OPERATIONAL_MODE"); v != "" && (v == READ_WRITE || v == READ_ONLY || v == WRITE_ONLY || v == SCALE_OUT) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d5505ca4fae22845 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:1060
		MetadataOnlyVoters: entcfg.Enabled(os.Getenv("RAFT_METADATA_ONLY_VOTERS")),

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6c9a9ae51d6f4a22 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:1195
	cfg.EnableOneNodeRecovery = entcfg.Enabled(os.Getenv("RAFT_ENABLE_ONE_NODE_RECOVERY"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #5d4e4238669dc95f Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:1196
	cfg.ForceOneNodeRecovery = entcfg.Enabled(os.Getenv("RAFT_FORCE_ONE_NODE_RECOVERY"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c00ff4f13526e27b Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:1202
	if v := os.Getenv("CORS_ALLOW_ORIGIN"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #5858c36a55496cae Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:1208
	if v := os.Getenv("CORS_ALLOW_METHODS"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #2a451dba08ddf909 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:1214
	if v := os.Getenv("CORS_ALLOW_HEADERS"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d7b40d92ef95861b Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:1313
	if v := os.Getenv(envName); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #af0991577c776c64 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:1357
	if v := os.Getenv(envName); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #18bc3f3316bfccd2 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:1375
	if v := os.Getenv(envName); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c450bed296f1a0b0 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:1417
	if v := os.Getenv(envName); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6bcd53f882d4be17 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:1435
	if v := os.Getenv(envName); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #91deafd9da432bec Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:1485
	if v := os.Getenv(varName); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6a6fdb73064376f0 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:1495
	if v := os.Getenv("DISK_USE_WARNING_PERCENTAGE"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #362c6f6ee972372e Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:1505
	if v := os.Getenv("DISK_USE_READONLY_PERCENTAGE"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d82ddbd0aa01f3bc Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:1515
	if v := os.Getenv("MEMORY_WARNING_PERCENTAGE"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #89f4a664c8b21d3a Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:1525
	if v := os.Getenv("MEMORY_READONLY_PERCENTAGE"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #9255e1a8523d0614 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:1545
	cfg.Hostname = os.Getenv("CLUSTER_HOSTNAME")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f81a32c05cf9a633 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:1549
	cfg.Join = os.Getenv("CLUSTER_JOIN")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #515e030f51d4f4d1 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:1551
	advertiseAddr, advertiseAddrSet := os.LookupEnv("CLUSTER_ADVERTISE_ADDR")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #925e1144dc29d909 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:1556
	bindAddr, bindAddrSet := os.LookupEnv("CLUSTER_BIND_ADDR")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e7eea0aa276815cf Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:1561
	advertisePort, advertisePortSet := os.LookupEnv("CLUSTER_ADVERTISE_PORT")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #357e4fac98db046b Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:1570
	cfg.Localhost = entcfg.Enabled(os.Getenv("CLUSTER_IN_LOCALHOST"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d4ab8c6cb44d7bf6 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:1571
	gossipBind, gossipBindSet := os.LookupEnv("CLUSTER_GOSSIP_BIND_PORT")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #549d4dbafc672ecb Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:1572
	dataBind, dataBindSet := os.LookupEnv("CLUSTER_DATA_BIND_PORT")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #db61c43cc46b453d Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:1597
		os.Getenv("CLUSTER_IGNORE_SCHEMA_SYNC"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #0af3969f34c28675 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:1599
		os.Getenv("CLUSTER_SKIP_SCHEMA_REPAIR"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #65206290b71f5ae0 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:1601
	basicAuthUsername := os.Getenv("CLUSTER_BASIC_AUTH_USERNAME")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #80f2655cce45e0d4 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:1602
	basicAuthPassword := os.Getenv("CLUSTER_BASIC_AUTH_PASSWORD")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #082b4356dd567a1f Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:1611
	cfg.MemberlistFastFailureDetection = entcfg.Enabled(os.Getenv("MEMBERLIST_FAST_FAILURE_DETECTION")) || entcfg.Enabled(os.Getenv("FAST_FAILURE_DETECTION")) // backward compatibility

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3d91d57983a7afcd Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:1625
	if m := os.Getenv("MAINTENANCE_NODES"); m != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #78315debda7a31a0 Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:1633
	requestQueueIsEnabled := entcfg.Enabled(os.Getenv("REPLICATED_INDICES_REQUEST_QUEUE_ENABLED"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #204953e7bd95339f Environment-variable access.
pkgs/go/[email protected]/usecases/config/environment.go:1653
	if v := os.Getenv(envName); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #da0dbdcf7cbd7e2c Environment-variable access.
pkgs/go/[email protected]/usecases/config/parser/envparser.go:27
	if env := os.Getenv(envName); env != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e9e642dd29f18688 Environment-variable access.
pkgs/go/[email protected]/usecases/config/parser/envparser.go:43
	if v := os.Getenv(envName); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #4444e424d231cc75 Environment-variable access.
pkgs/go/[email protected]/usecases/config/runtime/feature_flag.go:219
	val, ok := os.LookupEnv(envVariable)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #20860e897dcb37a2 Environment-variable access.
pkgs/go/[email protected]/usecases/config/runtime/launch_darkly.go:57
	ldApiKey, ok := os.LookupEnv(WeaviateLDApiKey)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #582e03e37b7a634a Environment-variable access.
pkgs/go/[email protected]/usecases/config/runtime/launch_darkly.go:61
	orgKey, ok := os.LookupEnv(WeaviateLDOrgKey)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f52e2c3cfd2bf642 Environment-variable access.
pkgs/go/[email protected]/usecases/config/runtime/launch_darkly.go:65
	clusterKey, ok := os.LookupEnv(WeaviateLDClusterKey)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #121049015a628620 Environment-variable access.
pkgs/go/[email protected]/usecases/config/runtime/launch_darkly.go:70
	nodeKey, ok := os.LookupEnv("CLUSTER_HOSTNAME")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f2fc54fcaeb5b5ad Filesystem access.
pkgs/go/[email protected]/usecases/config/runtime/manager.go:141
	f, err := os.Open(cm.path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6b5bd1bfb1b89e88 Filesystem access.
pkgs/go/[email protected]/usecases/integrity/file_crc32.go:21
	file, err := os.Open(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #09ff970280a10291 Filesystem access.
pkgs/go/[email protected]/usecases/memwatch/monitor.go:197
	file, err := os.Open(filePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #dab53de2815a095b Environment-variable access.
pkgs/go/[email protected]/usecases/memwatch/monitor.go:220
	if v := os.Getenv("MAX_MEMORY_MAPPINGS"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3f01f8b2b60dc9a5 Filesystem access.
pkgs/go/[email protected]/usecases/memwatch/monitor.go:237
	file, err := os.Open("/proc/sys/vm/max_map_count")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #48034501b525745c Environment-variable access.
pkgs/go/[email protected]/usecases/memwatch/monitor.go:349
	if v := os.Getenv("MEMORY_ESTIMATE_DELETE_BYTES"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3953ed1d21ddec2b Filesystem access.
pkgs/go/[email protected]/usecases/modulecomponents/usage/base_module.go:369
		lastPushPathData, err := os.ReadFile(b.lastPushDateFilePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #cac41f30bf6b5e09 Filesystem access.
pkgs/go/[email protected]/usecases/modulecomponents/usage/base_module.go:399
	return os.WriteFile(b.lastPushDateFilePath, []byte(timeStr), os.FileMode(0o644))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b62647811c059b6a Environment-variable access.
pkgs/go/[email protected]/usecases/modulecomponents/usage/base_storage.go:115
	return os.Getenv("CLUSTER_IN_LOCALHOST") != ""

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #af6b2f03b5387525 Environment-variable access.
pkgs/go/[email protected]/usecases/modulecomponents/usage/base_storage.go:155
	if v := os.Getenv("USAGE_SCRAPE_INTERVAL"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #abb7db3badeb4e17 Environment-variable access.
pkgs/go/[email protected]/usecases/modulecomponents/usage/base_storage.go:167
	if v := os.Getenv("USAGE_POLICY_VERSION"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e4fff0dde9d28d08 Environment-variable access.
pkgs/go/[email protected]/usecases/modulecomponents/usage/base_storage.go:176
	if v := os.Getenv("USAGE_SHARD_JITTER_INTERVAL"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #9b2098d67b650822 Environment-variable access.
pkgs/go/[email protected]/usecases/modulecomponents/usage/base_storage.go:189
	if v := os.Getenv("USAGE_VERIFY_PERMISSIONS"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d3a1426d121b820b Environment-variable access.
pkgs/go/[email protected]/usecases/modulecomponents/vectorizer/object_texts.go:79
	if entcfg.Enabled(os.Getenv("LOWERCASE_VECTORIZATION_INPUT")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #abb6f3dee94cac86 Environment-variable access.
pkgs/go/[email protected]/usecases/schema/class.go:513
				if os.Getenv("DEFAULT_TOKENIZATION") != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b00433ba480df9b2 Environment-variable access.
pkgs/go/[email protected]/usecases/schema/class.go:514
					prop.Tokenization = os.Getenv("DEFAULT_TOKENIZATION")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6ac7c2ba6d0ed80e Environment-variable access.
pkgs/go/[email protected]/usecases/schema/class.go:839
				if !entcfg.Enabled(os.Getenv("USE_GSE")) && !entcfg.Enabled(os.Getenv("ENABLE_TOKENIZER_GSE")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ad567c1360fc42ab Environment-variable access.
pkgs/go/[email protected]/usecases/schema/class.go:844
				if !entcfg.Enabled(os.Getenv("ENABLE_TOKENIZER_GSE_CH")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #65bc207c66dd6bb1 Environment-variable access.
pkgs/go/[email protected]/usecases/schema/class.go:849
				if !entcfg.Enabled(os.Getenv("ENABLE_TOKENIZER_KAGOME_KR")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #0a2a84e7db031f53 Environment-variable access.
pkgs/go/[email protected]/usecases/schema/class.go:854
				if !entcfg.Enabled(os.Getenv("ENABLE_TOKENIZER_KAGOME_JA")) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c7639d04d65e8abf Filesystem access.
pkgs/go/[email protected]/usecases/schema/migrate/fs/file_structure_migration.go:130
			if f, err := os.Open(filepath.Dir(newClassRoot)); err == nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f9547daf55ca1db3 Environment-variable access.
pkgs/go/[email protected]/usecases/telemetry/opentelemetry/config.go:54
	cfg.Enabled = config.Enabled(os.Getenv("EXPERIMENTAL_OTEL_ENABLED"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #9d5a7033d6554ed4 Environment-variable access.
pkgs/go/[email protected]/usecases/telemetry/opentelemetry/config.go:60
	if serviceName := os.Getenv("EXPERIMENTAL_OTEL_SERVICE_NAME"); serviceName != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #4aa25174273488bf Environment-variable access.
pkgs/go/[email protected]/usecases/telemetry/opentelemetry/config.go:64
	if environment := os.Getenv("EXPERIMENTAL_OTEL_ENVIRONMENT"); environment != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #04b570736003e142 Environment-variable access.
pkgs/go/[email protected]/usecases/telemetry/opentelemetry/config.go:69
	if endpoint := os.Getenv("EXPERIMENTAL_OTEL_EXPORTER_OTLP_ENDPOINT"); endpoint != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #9fca6161bf939a11 Environment-variable access.
pkgs/go/[email protected]/usecases/telemetry/opentelemetry/config.go:73
	if protocol := os.Getenv("EXPERIMENTAL_OTEL_EXPORTER_OTLP_PROTOCOL"); protocol != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f3578f0f64875567 Environment-variable access.
pkgs/go/[email protected]/usecases/telemetry/opentelemetry/config.go:91
	if samplerArg := os.Getenv("EXPERIMENTAL_OTEL_TRACES_SAMPLER_ARG"); samplerArg != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #8a60213ef1d735af Environment-variable access.
pkgs/go/[email protected]/usecases/telemetry/opentelemetry/config.go:98
	if batchTimeout := os.Getenv("EXPERIMENTAL_OTEL_BSP_EXPORT_TIMEOUT"); batchTimeout != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d14be5017e4d5204 Environment-variable access.
pkgs/go/[email protected]/usecases/telemetry/opentelemetry/config.go:104
	if batchSize := os.Getenv("EXPERIMENTAL_OTEL_BSP_MAX_EXPORT_BATCH_SIZE"); batchSize != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/armon/go-metrics

go dependency
medium telemetry dependency Excluded from app score #09736ac7f97c0f72 Telemetry/analytics SDK call. This library transmits usage or event data to a third-party service.
pkgs/go/[email protected]/datadog/dogstatsd.go:21
	client, err := statsd.New(addr)

A telemetry/analytics SDK is used; event data is sent to a third-party collector.

Fix: Ensure user consent and a lawful basis; strip PII from event payloads.

google.golang.org/protobuf

go dependency
medium pii_flow dependency Excluded from app score #5e7c86dda86f6290 PII-bearing data is written to a log/print sink. Logged PII is a privacy concern even when it does not leave the process.
pkgs/go/[email protected]/internal/cmd/generate-protos/main.go:523 · flow /tmp/closeopen-mj1c2fb7/pkgs/go/[email protected]/internal/cmd/generate-protos/main.go:520 → /tmp/closeopen-mj1c2fb7/pkgs/go/[email protected]/internal/cmd/generate-protos/main.go:523
		fmt.Printf("executing: %v\n%s\n", strings.Join(cmd.Args, " "), out)

PII-bearing data is written to a log/print sink — it stays in-process and does not leave the application, but logged PII is still a privacy concern.

Fix: Avoid logging user identifiers; redact or omit PII from log/print statements.

expand_more 22 low-confidence finding(s)
low env_fs dependency Excluded from app score #92a1d511ad76f915 Filesystem access.
pkgs/go/[email protected]/internal/cmd/generate-corpus/main.go:117
		if err := os.WriteFile(fmt.Sprintf("internal/fuzz/wirefuzz/corpus/%x", sha1.Sum(wire)), wire, 0777); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c95a7776a8df2821 Filesystem access.
pkgs/go/[email protected]/internal/cmd/generate-corpus/main.go:125
		if err := os.WriteFile(fmt.Sprintf("internal/fuzz/textfuzz/corpus/%x", sha1.Sum(text)), text, 0777); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a28cbe0e3cd48ddd Filesystem access.
pkgs/go/[email protected]/internal/cmd/generate-corpus/main.go:133
		if err := os.WriteFile(fmt.Sprintf("internal/fuzz/jsonfuzz/corpus/%x", sha1.Sum(json)), json, 0777); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d966eef012f6e560 Environment-variable access.
pkgs/go/[email protected]/internal/cmd/generate-protos/main.go:46
	if plugin := os.Getenv("RUN_AS_PROTOC_PLUGIN"); plugin != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e0e3a906fc7530f9 Environment-variable access.
pkgs/go/[email protected]/internal/cmd/generate-protos/main.go:85
	flag.StringVar(&protoRoot, "protoroot", os.Getenv("PROTOBUF_ROOT"), "The root of the protobuf source tree.")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #90fda00cd0b0fac0 Filesystem access.
pkgs/go/[email protected]/internal/cmd/generate-protos/main.go:119
	out, err := os.Create(outFn)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #93b08d544ffeaddd Filesystem access.
pkgs/go/[email protected]/internal/cmd/generate-protos/main.go:124
	b, err := os.ReadFile(inFn)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d156daaf2c6a146b Filesystem access.
pkgs/go/[email protected]/internal/cmd/generate-protos/main.go:427
			check(os.WriteFile(filepath.Join(tmpDir, filepath.FromSlash(d.path+"/gen_test.go")), b, 0664))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #21fb08e3614f0208 Environment-variable access.
pkgs/go/[email protected]/internal/cmd/generate-protos/main.go:520
	cmd.Env = append(os.Environ(), "RUN_AS_PROTOC_PLUGIN=1")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #064544d6f29e0472 Filesystem access.
pkgs/go/[email protected]/internal/cmd/generate-protos/main.go:721
	src, err := os.ReadFile(srcPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #896755dc253fe48a Filesystem access.
pkgs/go/[email protected]/internal/cmd/generate-protos/main.go:724
	dst, _ := os.ReadFile(dstPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a8c08a08866bdfa3 Filesystem access.
pkgs/go/[email protected]/internal/cmd/generate-protos/main.go:728
	check(os.WriteFile(dstPath, src, 0664))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #cdadf5bced3aa560 Filesystem access.
pkgs/go/[email protected]/internal/cmd/generate-types/main.go:263
		prev, _ := os.ReadFile(absFile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #9e11afd5d40ea774 Filesystem access.
pkgs/go/[email protected]/internal/cmd/generate-types/main.go:266
			check(os.WriteFile(absFile, b, 0664))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d95cb2a335d25d63 Filesystem access.
pkgs/go/[email protected]/internal/cmd/generate-types/main.go:269
		check(os.WriteFile(absFile+".tmp", b, 0664))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e95b4c29881f8a2e Filesystem access.
pkgs/go/[email protected]/internal/cmd/pbdump/pbdump.go:121
		b, err := os.ReadFile(f)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #1f0e4aa5cce16fed Filesystem access.
pkgs/go/[email protected]/internal/detrand/rand.go:46
	f, err := os.Open(s)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a8c4feab010ef75b Filesystem access.
pkgs/go/[email protected]/internal/fuzztest/fuzztest.go:20
	dir, err := os.Open(*corpus)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #8bc507bfdd0211e4 Filesystem access.
pkgs/go/[email protected]/internal/fuzztest/fuzztest.go:36
			b, err := os.ReadFile(filepath.Join(*corpus, name))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a38486523e3c8507 Environment-variable access.
pkgs/go/[email protected]/internal/impl/lazy.go:24
	if os.Getenv("GOPROTODEBUG") == "nolazy" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f62ce0a38c3aa918 Environment-variable access.
pkgs/go/[email protected]/reflect/protoregistry/registry.go:51
	if v := os.Getenv(env); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #397b9f31e4285bac Environment-variable access.
pkgs/go/[email protected]/reflect/protoregistry/registry.go:63
		panic("invalid " + env + " value: " + os.Getenv(env))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

cloud.google.com/go/storage

go dependency
expand_more 11 low-confidence finding(s)
low env_fs dependency Excluded from app score #da2d2e0664f4f7e4 Environment-variable access.
pkgs/go/[email protected]/grpc_client.go:95
	if host := os.Getenv("STORAGE_EMULATOR_HOST_GRPC"); host != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #fd0095c704ada1a6 Environment-variable access.
pkgs/go/[email protected]/grpc_client.go:112
		if disableBoundToken, _ := strconv.ParseBool(os.Getenv("STORAGE_DISABLE_DIRECTPATH_BOUND_TOKEN")); !disableBoundToken {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c62e4c8833e623a5 Environment-variable access.
pkgs/go/[email protected]/http_client.go:74
	if host := os.Getenv("STORAGE_EMULATOR_HOST"); host == "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #4bfba44c19755b54 Environment-variable access.
pkgs/go/[email protected]/invoke.go:52
		return os.Getenv("GOOGLE_SDK_GO_TRACING_COOKIE")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #9309f3a30f1c6343 Environment-variable access.
pkgs/go/[email protected]/option.go:52
	increaseRate := os.Getenv(dynamicReadReqIncreaseRateEnv)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #80fd2f91a4b11925 Environment-variable access.
pkgs/go/[email protected]/option.go:67
	initialTimeout := os.Getenv(dynamicReadReqInitialTimeoutEnv)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #98b8c2bb1814acf6 Environment-variable access.
pkgs/go/[email protected]/storage.go:160
	if host := os.Getenv("STORAGE_EMULATOR_HOST"); host == "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ce4a0cd80df99aab Environment-variable access.
pkgs/go/[email protected]/storage.go:371
	if host := os.Getenv("STORAGE_EMULATOR_HOST"); host != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #1224bad27ad9ea73 Environment-variable access.
pkgs/go/[email protected]/storage.go:383
	if host := os.Getenv("STORAGE_EMULATOR_HOST"); host != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a2689c0d7e4470b4 Environment-variable access.
pkgs/go/[email protected]/trace.go:40
	return os.Getenv(storageOtelTracingDevVar) == "true"

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #53aa193f7afd0465 Filesystem access.
pkgs/go/[email protected]/transfermanager/downloader.go:221
		f, fErr := os.Create(filePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/Azure/azure-sdk-for-go/sdk/azcore

go dependency
expand_more 1 low-confidence finding(s)
low env_fs dependency Excluded from app score #98e62e7b88183b47 Environment-variable access.
pkgs/go/[email protected]/runtime/policy_telemetry.go:75
		operatingSystem = os.Getenv("OS") // Get more specific OS information

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/Azure/azure-sdk-for-go/sdk/storage/azblob

go dependency
expand_more 1 low-confidence finding(s)
low env_fs dependency Excluded from app score #d29b195fbac0ddfd Environment-variable access.
pkgs/go/[email protected]/internal/testcommon/common.go:178
	env, ok := os.LookupEnv(name)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/KimMachineGun/automemlimit

go dependency
expand_more 9 low-confidence finding(s)
low env_fs dependency Excluded from app score #a3976974b113cad7 Filesystem access.
pkgs/go/[email protected]/memlimit/cgroups.go:26
	mf, err := os.Open("/proc/self/mountinfo")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c1f1b904852a7e9a Filesystem access.
pkgs/go/[email protected]/memlimit/cgroups.go:42
	cf, err := os.Open("/proc/self/cgroup")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d893b5e5c2bc622a Filesystem access.
pkgs/go/[email protected]/memlimit/cgroups.go:113
	b, err := os.ReadFile(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #99e51b3c457fc6e8 Filesystem access.
pkgs/go/[email protected]/memlimit/cgroups.go:217
	b, err := os.ReadFile(filepath.Join(cgroupPath, "memory.limit_in_bytes"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ba1e0aee6cbcc7d2 Filesystem access.
pkgs/go/[email protected]/memlimit/cgroups.go:241
	file, err := os.Open(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #547003da4a8449ef Environment-variable access.
pkgs/go/[email protected]/memlimit/experiment.go:42
	for _, f := range strings.Split(os.Getenv(envAUTOMEMLIMIT_EXPERIMENT), ",") {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #29c04fedf6d24b3a Environment-variable access.
pkgs/go/[email protected]/memlimit/memlimit.go:116
	if debug, ok := os.LookupEnv(envAUTOMEMLIMIT_DEBUG); ok {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d2cc77bc1d1375be Environment-variable access.
pkgs/go/[email protected]/memlimit/memlimit.go:149
	if val, ok := os.LookupEnv(envGOMEMLIMIT); ok {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #7f55b3dcb5398330 Environment-variable access.
pkgs/go/[email protected]/memlimit/memlimit.go:156
	if val, ok := os.LookupEnv(envAUTOMEMLIMIT); ok {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/aws/aws-sdk-go-v2

go dependency
expand_more 10 low-confidence finding(s)
low env_fs dependency Excluded from app score #3ae1a09e58a08e7c Filesystem access.
pkgs/go/[email protected]/aws/generate.go:29
	f, err := os.Create(filename)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ecd34fb4bd638077 Filesystem access.
pkgs/go/[email protected]/aws/logging_generate.go:85
	file, err := os.Create("logging.go")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #dfa6e33cd3056699 Environment-variable access.
pkgs/go/[email protected]/aws/middleware/recursion_detection.go:40
	_, hasLambdaEnv := os.LookupEnv(envAwsLambdaFunctionName)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #cb51cb7dee1d23c6 Environment-variable access.
pkgs/go/[email protected]/aws/middleware/recursion_detection.go:41
	xAmznTraceID, hasTraceID := os.LookupEnv(envAmznTraceID)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #848a9049fdf02fc0 Environment-variable access.
pkgs/go/[email protected]/aws/middleware/user_agent.go:208
	if ev := os.Getenv(execEnvVar); len(ev) > 0 {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #81fa149ad4c9af6c Environment-variable access.
pkgs/go/[email protected]/aws/retry/standard.go:312
	return os.Getenv("AWS_NEW_RETRIES_2026") == "true"

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #618f39b0d24d49c5 Environment-variable access.
pkgs/go/[email protected]/internal/awstesting/util.go:106
	originalEnv := os.Environ()

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #823c9a58a2ead3ee Environment-variable access.
pkgs/go/[email protected]/internal/awstesting/util.go:150
		if val, ok := os.LookupEnv(env); ok && len(val) > 0 {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #8aefdb60580a0ecd Filesystem access.
pkgs/go/[email protected]/internal/endpoints/awsrulesfn/internal/partition/codegen.go:102
	modelFile, err := os.Open(modelFilename)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #8260f7ceac1fa887 Filesystem access.
pkgs/go/[email protected]/internal/endpoints/awsrulesfn/internal/partition/codegen.go:113
	file, err := os.Create(outputFilename)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/aws/aws-sdk-go-v2/config

go dependency
expand_more 37 low-confidence finding(s)
low env_fs dependency Excluded from app score #0daccee8b4a117d9 Filesystem access.
pkgs/go/[email protected]/codegen/main.go:94
	file, err := os.OpenFile(config.OutputPath, os.O_CREATE|os.O_TRUNC|os.O_WRONLY, 0744)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #28cf21617f6a2682 Environment-variable access.
pkgs/go/[email protected]/config.go:228
	if os.Getenv(awsProfileEnv) != "" || options.SharedConfigProfile != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #853426fa974f525e Environment-variable access.
pkgs/go/[email protected]/defaultsmode.go:43
		EnvironmentIdentifier:     aws.ExecutionEnvironmentID(os.Getenv(execEnvVar)),

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #838df1fb38a4e86c Environment-variable access.
pkgs/go/[email protected]/env_config.go:331
		creds.AccountID = os.Getenv(awsAccountIDEnv)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #90d39d85c58734d1 Environment-variable access.
pkgs/go/[email protected]/env_config.go:332
		creds.SessionToken = os.Getenv(awsSessionTokenEnv)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a5ab8ea44755583b Environment-variable access.
pkgs/go/[email protected]/env_config.go:336
	cfg.ContainerCredentialsEndpoint = os.Getenv(awsContainerCredentialsFullURIEnv)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6d4b8c511a506bf6 Environment-variable access.
pkgs/go/[email protected]/env_config.go:337
	cfg.ContainerCredentialsRelativePath = os.Getenv(awsContainerCredentialsRelativeURIEnv)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #8cd66b4579c9842c Environment-variable access.
pkgs/go/[email protected]/env_config.go:338
	cfg.ContainerAuthorizationToken = os.Getenv(awsContainerAuthorizationTokenEnv)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #682c5bc02696e30a Environment-variable access.
pkgs/go/[email protected]/env_config.go:343
	cfg.SharedCredentialsFile = os.Getenv(awsSharedCredentialsFileEnv)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a50a85eb51dc4047 Environment-variable access.
pkgs/go/[email protected]/env_config.go:344
	cfg.SharedConfigFile = os.Getenv(awsConfigFileEnv)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c478e06f92d4b9e5 Environment-variable access.
pkgs/go/[email protected]/env_config.go:346
	cfg.CustomCABundle = os.Getenv(awsCABundleEnv)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #37c70cab7c9ca5ce Environment-variable access.
pkgs/go/[email protected]/env_config.go:348
	cfg.WebIdentityTokenFilePath = os.Getenv(awsWebIdentityTokenFileEnv)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e4f6c97b0b0c68a7 Environment-variable access.
pkgs/go/[email protected]/env_config.go:350
	cfg.RoleARN = os.Getenv(awsRoleARNEnv)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #146b2e3a484a40cf Environment-variable access.
pkgs/go/[email protected]/env_config.go:351
	cfg.RoleSessionName = os.Getenv(awsRoleSessionNameEnv)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f7ba8d465bc1eb83 Environment-variable access.
pkgs/go/[email protected]/env_config.go:353
	cfg.AppID = os.Getenv(awsSdkUaAppIDEnv)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #02c739e92434743c Environment-variable access.
pkgs/go/[email protected]/env_config.go:374
	cfg.EC2IMDSEndpoint = os.Getenv(awsEc2MetadataServiceEndpointEnv)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6aa15e1e15709a74 Environment-variable access.
pkgs/go/[email protected]/env_config.go:423
	cfg.AuthSchemePreference = toAuthSchemePreferenceList(os.Getenv(awsAuthSchemePreferenceEnv))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ac8a63c653edebcb Environment-variable access.
pkgs/go/[email protected]/env_config.go:485
		value := os.Getenv(k)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #8153ada852942236 Environment-variable access.
pkgs/go/[email protected]/env_config.go:503
		if value := os.Getenv(k); len(value) > 0 {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c25e884e3202eb1f Environment-variable access.
pkgs/go/[email protected]/env_config.go:515
		if value := os.Getenv(k); len(value) > 0 {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #871065d16447da57 Environment-variable access.
pkgs/go/[email protected]/env_config.go:528
		value := os.Getenv(k)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ed2f0d320a9f600d Environment-variable access.
pkgs/go/[email protected]/env_config.go:541
		value := os.Getenv(k)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f1c9eccbbfd50821 Environment-variable access.
pkgs/go/[email protected]/env_config.go:563
		value := os.Getenv(k)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a0c92fbed833ecc2 Environment-variable access.
pkgs/go/[email protected]/env_config.go:582
		value := os.Getenv(k)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #7294962912132369 Filesystem access.
pkgs/go/[email protected]/env_config.go:656
	b, err := os.ReadFile(c.CustomCABundle)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b1c93ef5b77b2ccb Environment-variable access.
pkgs/go/[email protected]/env_config.go:680
	if endpt := os.Getenv(fmt.Sprintf("%s_%s", awsEndpointURLEnv, normalizeEnv(sdkID))); endpt != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e4f83f27f1c8ef5a Environment-variable access.
pkgs/go/[email protected]/env_config.go:733
		if v := os.Getenv(k); len(v) > 0 {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #9a4b33110116b17b Environment-variable access.
pkgs/go/[email protected]/env_config.go:742
		if v := os.Getenv(k); len(v) > 0 {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #cd2a7fc7249acddc Environment-variable access.
pkgs/go/[email protected]/env_config.go:757
		value := os.Getenv(k)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #bc8b08db0880fc50 Environment-variable access.
pkgs/go/[email protected]/env_config.go:784
		value := os.Getenv(k)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #77fee26a1af69cd2 Environment-variable access.
pkgs/go/[email protected]/env_config.go:808
		value := os.Getenv(k)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #cfde8aba1a21026d Environment-variable access.
pkgs/go/[email protected]/env_config.go:831
		value := os.Getenv(k)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #86b763d3891df7b9 Environment-variable access.
pkgs/go/[email protected]/env_config.go:852
		value := os.Getenv(k)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e239c39487719bce Environment-variable access.
pkgs/go/[email protected]/resolve_credentials.go:344
			if authFilePath := os.Getenv(httpProviderAuthFileEnvVar); authFilePath != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #8b141a9a80ef4948 Filesystem access.
pkgs/go/[email protected]/resolve_credentials.go:348
					if contents, err = os.ReadFile(authFilePath); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e26a14c8a4fabe4b Environment-variable access.
pkgs/go/[email protected]/resolve_credentials.go:634
	cacheDir := os.Getenv("AWS_LOGIN_CACHE_DIRECTORY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #1736f3d6ad31444d Filesystem access.
pkgs/go/[email protected]/shared_config.go:504
	b, err := os.ReadFile(c.CustomCABundle)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/aws/aws-sdk-go-v2/credentials

go dependency
expand_more 6 low-confidence finding(s)
low env_fs dependency Excluded from app score #6591ddf04f3a1291 Filesystem access.
pkgs/go/[email protected]/logincreds/file.go:9
	return os.Open(name)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #dc621bf79ef39ce0 Filesystem access.
pkgs/go/[email protected]/logincreds/file.go:13
	return os.Create(name)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f39940f22f0a8490 Environment-variable access.
pkgs/go/[email protected]/processcreds/provider.go:107
	cmd.Env = os.Environ()

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #8e9a90f255ad5bde Filesystem access.
pkgs/go/[email protected]/ssocreds/sso_cached_token.go:147
	fileBytes, err := os.ReadFile(filename)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #4a019dae71deab6e Filesystem access.
pkgs/go/[email protected]/ssocreds/sso_cached_token.go:180
	f, err = os.OpenFile(filename, os.O_CREATE|os.O_TRUNC|os.O_RDWR, fileMode)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f5d81570234ca72c Filesystem access.
pkgs/go/[email protected]/stscreds/web_identity_provider.go:83
	b, err := os.ReadFile(string(j))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/aws/aws-sdk-go-v2/service/bedrockruntime

go dependency
expand_more 3 low-confidence finding(s)
low env_fs dependency Excluded from app score #b275aab92c92a064 Environment-variable access.
pkgs/go/[email protected]/api_client.go:981
	token := os.Getenv("AWS_BEARER_TOKEN_BEDROCK")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3d848763786decc3 Environment-variable access.
pkgs/go/[email protected]/endpoints.go:208
	_, g := os.LookupEnv("AWS_ENDPOINT_URL")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #2630a5c953132942 Environment-variable access.
pkgs/go/[email protected]/endpoints.go:209
	_, s := os.LookupEnv("AWS_ENDPOINT_URL_BEDROCK_RUNTIME")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/aws/aws-sdk-go-v2/service/s3

go dependency
expand_more 2 low-confidence finding(s)
low env_fs dependency Excluded from app score #d727f7b9738b0939 Environment-variable access.
pkgs/go/[email protected]/endpoints.go:220
	_, g := os.LookupEnv("AWS_ENDPOINT_URL")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #eab04fea5bb12413 Environment-variable access.
pkgs/go/[email protected]/endpoints.go:221
	_, s := os.LookupEnv("AWS_ENDPOINT_URL_S3")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/aws/aws-sdk-go-v2/service/sagemakerruntime

go dependency
expand_more 2 low-confidence finding(s)
low env_fs dependency Excluded from app score #cc180556c0fa5b9f Environment-variable access.
pkgs/go/[email protected]/endpoints.go:208
	_, g := os.LookupEnv("AWS_ENDPOINT_URL")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f27693c5efb25537 Environment-variable access.
pkgs/go/[email protected]/endpoints.go:209
	_, s := os.LookupEnv("AWS_ENDPOINT_URL_SAGEMAKER_RUNTIME")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/bmatcuk/doublestar

go dependency
expand_more 1 low-confidence finding(s)
low env_fs dependency Excluded from app score #f9b98863d160eac0 Filesystem access.
pkgs/go/[email protected]/doublestar.go:30
func (standardOS) Open(name string) (*os.File, error)     { return os.Open(name) }

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/casbin/casbin/v2

go dependency
expand_more 5 low-confidence finding(s)
low env_fs dependency Excluded from app score #98c09b693cef7eab Filesystem access.
pkgs/go/[email protected]/config/config.go:91
	f, err := os.Open(fname)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #8873973a2ad6879a Filesystem access.
pkgs/go/[email protected]/persist/file-adapter/adapter.go:89
	f, err := os.Open(a.filePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3db45ba35fe52a94 Filesystem access.
pkgs/go/[email protected]/persist/file-adapter/adapter.go:107
	f, err := os.Create(a.filePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6ad87fcef712de8c Filesystem access.
pkgs/go/[email protected]/persist/file-adapter/adapter_filtered.go:81
	f, err := os.Open(a.filePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f86318d99c8ebe12 Filesystem access.
pkgs/go/[email protected]/persist/file-adapter/adapter_mock.go:54
	f, err := os.Open(a.filePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/cespare/xxhash/v2

go dependency
expand_more 1 low-confidence finding(s)
low env_fs dependency Excluded from app score #b4dba01ca79de3fe Filesystem access.
pkgs/go/[email protected]/xxhsum/xxhsum.go:24
		f, err := os.Open(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/coreos/go-oidc/v3

go dependency
expand_more 4 low-confidence finding(s)
low env_fs tooling Excluded from app score unreachable #7e53292cd7a52740 Environment-variable access.
pkgs/go/[email protected]/example/idtoken/app.go:22
	clientID     = os.Getenv("GOOGLE_OAUTH2_CLIENT_ID")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs tooling Excluded from app score unreachable #46925c07667dd6cb Environment-variable access.
pkgs/go/[email protected]/example/idtoken/app.go:23
	clientSecret = os.Getenv("GOOGLE_OAUTH2_CLIENT_SECRET")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs tooling Excluded from app score unreachable #c0e289d52fe5072e Environment-variable access.
pkgs/go/[email protected]/example/userinfo/app.go:22
	clientID     = os.Getenv("GOOGLE_OAUTH2_CLIENT_ID")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs tooling Excluded from app score unreachable #e2a4b23b83c4f153 Environment-variable access.
pkgs/go/[email protected]/example/userinfo/app.go:23
	clientSecret = os.Getenv("GOOGLE_OAUTH2_CLIENT_SECRET")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/docker/docker

go dependency
expand_more 314 low-confidence finding(s)
low env_fs dependency Excluded from app score #0a115c1d8f0809ff Environment-variable access.
pkgs/go/[email protected]+incompatible/builder/builder-next/executor_linux.go:59
	if runcOverride := os.Getenv("DOCKER_BUILDKIT_RUNC_COMMAND"); runcOverride != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #4c7285d654e46809 Environment-variable access.
pkgs/go/[email protected]+incompatible/builder/builder-next/executor_linux.go:68
		NoPivot:             os.Getenv("DOCKER_RAMDISK") != "",

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #00ee16e041e90125 Filesystem access.
pkgs/go/[email protected]+incompatible/builder/dockerfile/copy.go:400
	tmpFile, err := os.OpenFile(tmpFileName, os.O_RDWR|os.O_CREATE|os.O_EXCL, 0o600)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #140c9fece044ebc6 Filesystem access.
pkgs/go/[email protected]+incompatible/builder/dockerfile/copy.go:482
		f, err := os.Open(srcPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #5920235da29a24db Filesystem access.
pkgs/go/[email protected]+incompatible/builder/remotecontext/detect.go:164
	return os.Open(fullPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #77c956b536c1d996 Environment-variable access.
pkgs/go/[email protected]+incompatible/builder/remotecontext/git/gitutils.go:206
	cmd.Env = append(os.Environ(), "GIT_PROTOCOL_FROM_USER=0")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #fe9846beb6bc50b1 Filesystem access.
pkgs/go/[email protected]+incompatible/builder/remotecontext/lazycontext.go:72
		f, err := os.Open(p)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #258dba1c6566febc Environment-variable access.
pkgs/go/[email protected]+incompatible/client/options.go:85
		if host := os.Getenv(EnvOverrideHost); host != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #1d2eace3bb470216 Environment-variable access.
pkgs/go/[email protected]+incompatible/client/options.go:172
		dockerCertPath := os.Getenv(EnvOverrideCertPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #922a988fd4dcfaed Environment-variable access.
pkgs/go/[email protected]+incompatible/client/options.go:180
			InsecureSkipVerify: os.Getenv(EnvTLSVerify) == "",

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d698d0839173a6eb Environment-variable access.
pkgs/go/[email protected]+incompatible/client/options.go:213
		return WithVersion(os.Getenv(EnvOverrideAPIVersion))(c)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b84471311fcad9bf Filesystem access.
pkgs/go/[email protected]+incompatible/client/request.go:177
			if f, elevatedErr := os.Open(`\\.\PHYSICALDRIVE0`); elevatedErr != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #be12b4b14ac42cae Environment-variable access.
pkgs/go/[email protected]+incompatible/cmd/dockerd/daemon.go:231
	if _, ok := os.LookupEnv(otelServiceNameEnv); !ok {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c2b560710723ff3d Environment-variable access.
pkgs/go/[email protected]+incompatible/cmd/dockerd/daemon.go:384
	if os.Getenv(protoEnv) == "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #73f10613d1d6f82a Environment-variable access.
pkgs/go/[email protected]+incompatible/cmd/dockerd/daemon.go:385
		if os.Getenv(tracesEnv) == "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c4a57040d503e878 Environment-variable access.
pkgs/go/[email protected]+incompatible/cmd/dockerd/daemon.go:388
		if os.Getenv(metricsEnv) == "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ede7720ae5501918 Environment-variable access.
pkgs/go/[email protected]+incompatible/cmd/dockerd/daemon.go:571
	if ver := os.Getenv("DOCKER_MIN_API_VERSION"); ver != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #15548777763f0300 Environment-variable access.
pkgs/go/[email protected]+incompatible/cmd/dockerd/daemon.go:1022
	if oldVal := os.Getenv(name); oldVal != "" && oldVal != val {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #39014f22f6b99d5a Environment-variable access.
pkgs/go/[email protected]+incompatible/cmd/dockerd/debug/debug.go:25
	return os.Getenv("DEBUG") != ""

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c4acd28f954f52b1 Environment-variable access.
pkgs/go/[email protected]+incompatible/cmd/dockerd/options.go:64
	configDir       = os.Getenv("DOCKER_CONFIG")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #cd458396b9acdf8b Environment-variable access.
pkgs/go/[email protected]+incompatible/cmd/dockerd/options.go:66
	dockerCertPath  = os.Getenv("DOCKER_CERT_PATH")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f19a186a520ac761 Environment-variable access.
pkgs/go/[email protected]+incompatible/cmd/dockerd/options.go:67
	dockerTLSVerify = os.Getenv("DOCKER_TLS_VERIFY") != ""

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #fb03bd758135d45c Filesystem access.
pkgs/go/[email protected]+incompatible/cmd/dockerd/service_windows.go:335
	panicFile, err = os.OpenFile(path, os.O_CREATE|os.O_WRONLY|os.O_APPEND, 0o200)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ca2f726cd6ad82e8 Filesystem access.
pkgs/go/[email protected]+incompatible/cmd/dockerd/service_windows.go:350
		panicFile, err = os.Create(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #2fe6d3263305f672 Environment-variable access.
pkgs/go/[email protected]+incompatible/cmd/dockerd/trap/testfiles/main.go:26
		s := os.Getenv("SIGNAL_TYPE")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f44faf121a55c8e1 Environment-variable access.
pkgs/go/[email protected]+incompatible/cmd/dockerd/trap/testfiles/main.go:27
		multiple := os.Getenv("IF_MULTIPLE")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #26f9e3cafcb8791d Filesystem access.
pkgs/go/[email protected]+incompatible/container/container.go:162
	jsonSource, err := os.Open(pth)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f225d3d6de331b00 Filesystem access.
pkgs/go/[email protected]+incompatible/container/container.go:249
	f, err := os.Open(pth)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #943cc6aa1181af5b Filesystem access.
pkgs/go/[email protected]+incompatible/container/container_unix.go:58
	return os.WriteFile(container.HostnamePath, []byte(container.Config.Hostname+"\n"), 0o644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d7ab16f824be3ffc Filesystem access.
pkgs/go/[email protected]+incompatible/contrib/apparmor/main.go:32
	f, err := os.OpenFile(apparmorProfilePath, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0o644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #436170032a15da7e Environment-variable access.
pkgs/go/[email protected]+incompatible/daemon/cluster/executor/container/controller.go:144
	if os.Getenv("DOCKER_SERVICE_PREFER_OFFLINE_IMAGE") != "1" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #7d7db8cb3b47d08a Environment-variable access.
pkgs/go/[email protected]+incompatible/daemon/cluster/services.go:246
			if os.Getenv("DOCKER_SERVICE_PREFER_OFFLINE_IMAGE") != "1" && queryRegistry {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c75fa322ba7dfc98 Environment-variable access.
pkgs/go/[email protected]+incompatible/daemon/cluster/services.go:362
			if os.Getenv("DOCKER_SERVICE_PREFER_OFFLINE_IMAGE") != "1" && queryRegistry {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3eb3a31f230c6460 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/cluster/utils.go:24
	dt, err := os.ReadFile(filepath.Join(root, stateFile))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #1c335b8ad4aa1c9f Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/config/config.go:463
	b, err := os.ReadFile(configFile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6cd550f7f072feea Environment-variable access.
pkgs/go/[email protected]+incompatible/daemon/config/config_windows.go:80
	cfg.Root = filepath.Join(os.Getenv("programdata"), "docker")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #0769d5c0bcbf8b09 Environment-variable access.
pkgs/go/[email protected]+incompatible/daemon/config/config_windows.go:81
	cfg.ExecRoot = filepath.Join(os.Getenv("programdata"), "docker", "exec-root")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #9533a79e43759fef Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/container_operations_unix.go:328
		if err := os.WriteFile(fPath, secret.Spec.Data, s.File.Mode); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f024c082d472fbc5 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/container_operations_unix.go:379
		if err := os.WriteFile(fPath, config.Spec.Data, configRef.File.Mode); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6ec6ce20ab5c0c12 Environment-variable access.
pkgs/go/[email protected]+incompatible/daemon/container_operations_unix.go:546
	if envPath := os.Getenv("DOCKER_TEST_RESOLV_CONF_PATH"); envPath != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #844ea6ab5879fecd Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/container_operations_windows.go:81
		if err := os.WriteFile(fPath, config.Spec.Data, configRef.File.Mode); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #5e60b98855c1a058 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/container_operations_windows.go:152
		if err := os.WriteFile(fPath, secret.Spec.Data, s.File.Mode); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #86a1a7a08ef0371d Environment-variable access.
pkgs/go/[email protected]+incompatible/daemon/create.go:149
		containerLabelsFilter = strings.Split(os.Getenv("DOCKER_CONTAINER_LABELS_FILTER"), ",")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #cb9f9aec6120ba4f Environment-variable access.
pkgs/go/[email protected]+incompatible/daemon/daemon.go:840
	if os.Getenv("TEST_INTEGRATION_USE_SNAPSHOTTER") != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #fe76c1b82ea58d41 Environment-variable access.
pkgs/go/[email protected]+incompatible/daemon/daemon.go:1044
	driverName := os.Getenv("DOCKER_DRIVER")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ac62769e6f3bd596 Environment-variable access.
pkgs/go/[email protected]+incompatible/daemon/daemon.go:1058
		if os.Getenv("TEST_INTEGRATION_USE_SNAPSHOTTER") != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a2cdd8a3f41c2b2a Environment-variable access.
pkgs/go/[email protected]+incompatible/daemon/daemon.go:1413
	if tmpDir = os.Getenv("DOCKER_TMPDIR"); tmpDir == "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #265cfd2cc589750e Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/daemon_linux.go:34
	f, err := os.Open("/proc/self/mountinfo")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #550aac1f43579205 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/daemon_unix.go:784
	mt, err := os.ReadFile("/proc/sys/kernel/threads-max")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ad66e1ca3522c79c Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/daemon_unix.go:799
	f, err := os.Open("/proc/kallsyms")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ad2bc0ba25512144 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/daemon_unix.go:1513
	if err := os.WriteFile(cleanupFile, nil, 0o600); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e9522a5936833569 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/daemon_unix.go:1616
	return os.WriteFile(filepath.Join(path, file), []byte(strconv.FormatInt(configValue, 10)), 0o700)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f8b16c54c870784d Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/daemon_unix.go:1627
		b, err := os.ReadFile(profile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b523c934a57bc154 Environment-variable access.
pkgs/go/[email protected]+incompatible/daemon/daemon_unix.go:1639
		if euid := os.Getenv("ROOTLESSKIT_PARENT_EUID"); euid != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e0a80d0d2ebed7be Environment-variable access.
pkgs/go/[email protected]+incompatible/daemon/devices_nvidia_linux.go:114
		Env: os.Environ(),

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #2b529e3ea4dc4466 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/btrfs/btrfs.go:525
		if err := os.WriteFile(path.Join(quotas, id), []byte(fmt.Sprint(driver.options.size)), 0o644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #1a37ee26196eb536 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/btrfs/btrfs.go:630
	if quota, err := os.ReadFile(d.quotasDirID(id)); err == nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c8e9e203dd3dad9e Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/copy/copy.go:32
	srcFile, err := os.Open(srcPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #79595e3a3b4eb61f Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/copy/copy.go:39
	dstFile, err := os.OpenFile(dstPath, os.O_WRONLY|os.O_CREATE|os.O_EXCL, fileinfo.Mode())

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c318c50c849df136 Environment-variable access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/driver.go:143
	if os.Getenv("DOCKERD_DEPRECATED_GRAPHDRIVER_PLUGINS") != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #98c6f6e78c1715c0 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/driver.go:266
	f, err := os.Open(name)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b86b5e3f9efc6c43 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/fuse-overlayfs/fuseoverlayfs.go:204
	if err := os.WriteFile(path.Join(dir, "link"), []byte(lid), 0o644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #60aef646aaa83a2b Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/fuse-overlayfs/fuseoverlayfs.go:217
	if err := os.WriteFile(path.Join(d.dir(parent), "committed"), []byte{}, 0o600); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b221a3a3dd14c790 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/fuse-overlayfs/fuseoverlayfs.go:226
		if err := os.WriteFile(path.Join(dir, lowerFile), []byte(lower), 0o666); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a3d7587cff4ee1ca Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/fuse-overlayfs/fuseoverlayfs.go:243
	parentLink, err := os.ReadFile(path.Join(parentDir, "link"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #4454be0d2731f0e2 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/fuse-overlayfs/fuseoverlayfs.go:249
	parentLower, err := os.ReadFile(path.Join(parentDir, lowerFile))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #86f2dd4f38399739 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/fuse-overlayfs/fuseoverlayfs.go:266
	lowers, err := os.ReadFile(path.Join(d.dir(id), lowerFile))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #85e37cfdc119cac8 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/fuse-overlayfs/fuseoverlayfs.go:289
	lid, err := os.ReadFile(path.Join(dir, "link"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a6d7f0fafdbc54d3 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/fuse-overlayfs/fuseoverlayfs.go:314
	lowers, err := os.ReadFile(path.Join(dir, lowerFile))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #7442a99dcdbaa1cc Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/fuse-overlayfs/fuseoverlayfs.go:393
	_, err := os.ReadFile(path.Join(dir, lowerFile))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e90caa1297af31f4 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/graphtest/graphbench_unix.go:251
		c, err := os.ReadFile(filepath.Join(root, "testfile.txt"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #01019cbb356264da Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/graphtest/graphtest_unix.go:303
	return os.WriteFile(path, data, 0o700)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e5ee7a7fe16d07a7 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/graphtest/testutil.go:39
	if err := os.WriteFile(filepath.Join(root, "file-a"), randomContent(64, seed), 0o755); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e1cfc3fc3e654091 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/graphtest/testutil.go:45
	if err := os.WriteFile(filepath.Join(root, "dir-b", "file-b"), randomContent(128, seed+1), 0o755); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #82c32b1ad718360d Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/graphtest/testutil.go:49
	return os.WriteFile(filepath.Join(root, "file-c"), randomContent(128*128, seed+2), 0o755)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #2d6933854576013f Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/graphtest/testutil.go:59
	fileContent, err := os.ReadFile(filepath.Join(root, filename))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #693fe8709b2fa7eb Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/graphtest/testutil.go:78
	return os.WriteFile(filepath.Join(root, filename), content, 0o755)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #333ea6e692a42d58 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/graphtest/testutil.go:136
			if err := os.WriteFile(file, randomContent(64, seed+int64(i+j)), 0o755); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #47594e5c8b033083 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/graphtest/testutil.go:171
				if err := os.WriteFile(filepath.Join(root, change.Path), randomContent(64, seed+int64(i+j)), 0o755); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #732c72327d507127 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/graphtest/testutil.go:178
				if err := os.WriteFile(filepath.Join(root, change.Path), randomContent(64, seed+int64(i+j)), 0o755); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #bfd41e1734b26d1c Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/graphtest/testutil.go:207
			fileContent, err := os.ReadFile(file)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3c128583cae662cb Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/graphtest/testutil.go:257
	if err := os.WriteFile(filepath.Join(root, "top-id"), []byte(layer), 0o755); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #4b90558ea805e765 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/graphtest/testutil.go:264
	if err := os.WriteFile(filepath.Join(layerDir, "layer-id"), []byte(layer), 0o755); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #9c35ee6e6afac84e Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/graphtest/testutil.go:267
	return os.WriteFile(filepath.Join(layerDir, "parent-id"), []byte(parent), 0o755)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ef4faeff31007538 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/graphtest/testutil.go:293
	layerIDBytes, err := os.ReadFile(filepath.Join(root, "top-id"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ff97047cbe5f2b21 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/graphtest/testutil.go:305
		thisLayerIDBytes, err := os.ReadFile(filepath.Join(layerDir, "layer-id"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c16d53ad56ac78e0 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/graphtest/testutil.go:312
		layerIDBytes, err = os.ReadFile(filepath.Join(layerDir, "parent-id"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #2dcb0a1af7295a1e Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/graphtest/testutil_unix.go:52
	err = os.WriteFile(file, []byte("Some data"), 0o222|os.ModeSetuid)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #2eee2ec65acd41c3 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/overlay2/check.go:93
	if err := os.WriteFile(filepath.Join(td, mergedDirName, "d", "f"), []byte{}, 0o644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #9e1c55513ec1ef50 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/overlay2/check.go:173
	if err := os.WriteFile(filepath.Join(l1, "f"), []byte{}, 0o700); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #39943689edc112ed Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/overlay2/overlay.go:447
	parentLink, err := os.ReadFile(path.Join(parentDir, "link"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #1b881f904d43976b Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/overlay2/overlay.go:453
	parentLower, err := os.ReadFile(path.Join(parentDir, lowerFile))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #eed965c9fabe7489 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/overlay2/overlay.go:470
	lowers, err := os.ReadFile(path.Join(d.dir(id), lowerFile))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #0c5c11defc11131a Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/overlay2/overlay.go:493
	lid, err := os.ReadFile(path.Join(dir, "link"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f05183774f7b9a29 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/overlay2/overlay.go:518
	lowers, err := os.ReadFile(path.Join(dir, lowerFile))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d4e75c11c9413bb9 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/overlay2/overlay.go:619
	_, err := os.ReadFile(path.Join(dir, lowerFile))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6bcc43a103bc391c Environment-variable access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/overlayutils/overlayutils.go:44
	if os.Getenv("_DOCKERD_ROOTLESS_SELINUX") == "1" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #861862af64b62f17 Environment-variable access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/windows/windows.go:67
	if os.Getenv("DOCKER_WINDOWSFILTER_NOREEXEC") != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #5c7a763ee5185795 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/windows/windows.go:688
		bcdBackup, err := os.Create(filepath.Join(root, backupPath))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #036c23e2a21e3b89 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/windows/windows.go:825
	content, err := os.ReadFile(filepath.Join(d.dir(id), "layerID"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #0ee663fac8f15f2a Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/windows/windows.go:836
	return os.WriteFile(filepath.Join(d.dir(id), "layerId"), []byte(altID), 0o600)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #5b544dba2f29b4e1 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/windows/windows.go:842
	content, err := os.ReadFile(jPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #19b45df04c335f3d Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/windows/windows.go:866
	err = os.WriteFile(jPath, content, 0o600)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #79c05b9772f8c35e Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/windows/windows.go:880
		return os.Open(filepath.Join(fg.path, backupPath))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6fc44a0d62c764db Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/graphdriver/zfs/zfs.go:59
	file, err := os.OpenFile("/dev/zfs", os.O_RDWR, 0o600)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #2694f564d4db0b7a Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/hosts.go:158
		dt, err := os.ReadFile(p)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a07e31a1bba959c1 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/id.go:24
	idb, err := os.ReadFile(idPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #0115196c0c147a99 Environment-variable access.
pkgs/go/[email protected]+incompatible/daemon/info.go:370
		if val := os.Getenv(n); val != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a1bfb531a6f17f64 Environment-variable access.
pkgs/go/[email protected]+incompatible/daemon/info_unix.go:162
	if os.Getenv("DOCKER_INSECURE_NO_IPTABLES_RAW") == "1" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #df189f0f38f9efc9 Environment-variable access.
pkgs/go/[email protected]+incompatible/daemon/info_unix.go:313
	stateDir := os.Getenv("ROOTLESSKIT_STATE_DIR")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #4dfe00f0da3bec40 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/initlayer/setup_unix.go:53
					f, err := os.OpenFile(filepath.Join(initLayer, pth), os.O_CREATE, 0o755)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #88c1d8516d6ba560 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/internal/filedescriptors/filiedescriptors_linux.go:35
	f, err := os.Open(name)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #8ea05e007dd8c69c Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/keys.go:34
	keys, err := os.OpenFile(rootKeyFile, os.O_WRONLY, 0)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #638f160cfa3cf572 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/keys.go:43
	bytes, err := os.OpenFile(rootBytesFile, os.O_WRONLY, 0)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #53d9be8e929e3c4c Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/keys.go:53
	data, err := os.ReadFile(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #5f14f573949c044c Environment-variable access.
pkgs/go/[email protected]+incompatible/daemon/logger/awslogs/cloudwatchlogs.go:337
	if os.Getenv(regionEnvKey) != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #7d4028d281281cff Environment-variable access.
pkgs/go/[email protected]+incompatible/daemon/logger/awslogs/cloudwatchlogs.go:338
		region = aws.String(os.Getenv(regionEnvKey))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6aa782c940f37717 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/logger/loggerutils/file_unix.go:8
	return os.OpenFile(name, flag, perm)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ab6685b11429c5ed Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/logger/loggerutils/file_unix.go:12
	return os.Open(name)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #30a243441b1a3784 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/logger/splunk/splunk.go:186
		caCert, err := os.ReadFile(caPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #06e195650f40a678 Environment-variable access.
pkgs/go/[email protected]+incompatible/daemon/logger/splunk/splunk.go:633
	valueStr := os.Getenv(envName)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3de76ba3f11058cd Environment-variable access.
pkgs/go/[email protected]+incompatible/daemon/logger/splunk/splunk.go:646
	valueStr := os.Getenv(envName)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #194b3440e685d12d Environment-variable access.
pkgs/go/[email protected]+incompatible/daemon/oci_linux.go:69
			rootlesskitParentEUID := os.Getenv("ROOTLESSKIT_PARENT_EUID")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f27737e773476e3c Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/oci_linux.go:78
			controllersFile, err := os.ReadFile(controllersPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #eed9da6793134738 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/oci_windows.go:315
		layerPathb, err := os.ReadFile(mountPoint + ":" + sourceStreamName)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #9c488b243e94f592 Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/oci_windows.go:522
	bcontents, err := os.ReadFile(full)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #9d5275a0e9d84157 Environment-variable access.
pkgs/go/[email protected]+incompatible/daemon/runtime_unix.go:64
			NoPivotRoot:   os.Getenv("DOCKER_RAMDISK") != "",

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #94bcd9abaeafa08a Filesystem access.
pkgs/go/[email protected]+incompatible/daemon/stats_unix.go:318
	f, err := os.Open("/proc/stat")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #2fde5cb7bb417a02 Filesystem access.
pkgs/go/[email protected]+incompatible/distribution/metadata/metadata.go:50
	return os.ReadFile(store.path(namespace, key))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #9aa6a1bbab29f6a0 Filesystem access.
pkgs/go/[email protected]+incompatible/image/fs.go:98
	content, err := os.ReadFile(s.contentFile(dgst))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #928d67f5fa9dab7a Filesystem access.
pkgs/go/[email protected]+incompatible/image/fs.go:162
	bytes, err := os.ReadFile(filepath.Join(s.metadataDir(dgst), key))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #29dfcfe5225d048c Filesystem access.
pkgs/go/[email protected]+incompatible/image/tarexport/load.go:61
	manifestFile, err := os.Open(manifestPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6c00891d8605a169 Filesystem access.
pkgs/go/[email protected]+incompatible/image/tarexport/load.go:93
		config, err := os.ReadFile(configPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6936d1295b71018a Filesystem access.
pkgs/go/[email protected]+incompatible/image/tarexport/load.go:280
	repositoriesFile, err := os.Open(repositoriesPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #71bd1ca9c277e2e4 Filesystem access.
pkgs/go/[email protected]+incompatible/image/tarexport/load.go:320
	imageJSON, err := os.ReadFile(configPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #4a52ae536de24b0c Filesystem access.
pkgs/go/[email protected]+incompatible/image/tarexport/save.go:270
		if err := os.WriteFile(mFile, data, 0o644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #199b5220055145a1 Filesystem access.
pkgs/go/[email protected]+incompatible/image/tarexport/save.go:330
		rf, err := os.OpenFile(reposFile, os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0o644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #21256ff08569db32 Filesystem access.
pkgs/go/[email protected]+incompatible/image/tarexport/save.go:348
	f, err := os.OpenFile(manifestPath, os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0o644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #0dcc67be8a6c057e Filesystem access.
pkgs/go/[email protected]+incompatible/image/tarexport/save.go:366
	if err := os.WriteFile(layoutPath, []byte(ociLayoutContent), 0o644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #140cf596697504ba Filesystem access.
pkgs/go/[email protected]+incompatible/image/tarexport/save.go:385
	if err := os.WriteFile(idxFile, data, 0o644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #19fcd8d2671a3089 Filesystem access.
pkgs/go/[email protected]+incompatible/image/tarexport/save.go:491
	if err := os.WriteFile(configFile, img.RawJSON(), 0o644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #723148266b23d755 Filesystem access.
pkgs/go/[email protected]+incompatible/image/tarexport/save.go:629
	if err := os.WriteFile(configPath, imageConfig, 0o644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a3baa37ef88c0926 Environment-variable access.
pkgs/go/[email protected]+incompatible/integration-cli/cli/cli.go:166
			cmd.Env = os.Environ()

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6bdd4cfccdc5b24d Environment-variable access.
pkgs/go/[email protected]+incompatible/integration-cli/environment/environment.go:12
var DefaultClientBinary = os.Getenv("TEST_CLIENT_BINARY")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #896e89aca36a4574 Filesystem access.
pkgs/go/[email protected]+incompatible/integration/plugin/logging/cmd/close_on_start/main.go:30
		f, err := os.OpenFile(startReq.File, os.O_RDONLY, 0o600)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #37a4e68443b1b292 Filesystem access.
pkgs/go/[email protected]+incompatible/integration/plugin/logging/cmd/discard/driver.go:40
		f, err := os.OpenFile(req.File, syscall.O_RDONLY, 0o600)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #7e44a91529ea0b40 Filesystem access.
pkgs/go/[email protected]+incompatible/internal/gocompat/modulegenerator.go:51
	return os.WriteFile("main_test.go", buf.Bytes(), 0o644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #7d23e3db051df143 Filesystem access.
pkgs/go/[email protected]+incompatible/internal/gocompat/modulegenerator.go:55
	content, err := os.ReadFile("../../go.mod")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e1e9fe577dcc14c3 Filesystem access.
pkgs/go/[email protected]+incompatible/internal/gocompat/modulegenerator.go:61
		if err := os.WriteFile("../../go.mod", content, 0o644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f22d70871bc94e65 Filesystem access.
pkgs/go/[email protected]+incompatible/internal/gocompat/modulegenerator.go:78
	content, err = os.ReadFile("../../vendor.mod")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3abadb4fc03a583e Filesystem access.
pkgs/go/[email protected]+incompatible/internal/gocompat/modulegenerator.go:112
	return os.WriteFile("go.mod", buf.Bytes(), 0o644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c3e15129110e8389 Environment-variable access.
pkgs/go/[email protected]+incompatible/internal/otelutil/environ_carrier.go:68
		TraceParent: os.Getenv(traceParentEnvVar),

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #cf15eeb195eb630c Environment-variable access.
pkgs/go/[email protected]+incompatible/internal/otelutil/environ_carrier.go:69
		TraceState:  os.Getenv(traceStateEnvVar),

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #702e3a3e18bd52a3 Filesystem access.
pkgs/go/[email protected]+incompatible/internal/platform/platform_linux.go:20
	data, err := os.ReadFile("/sys/devices/system/cpu/possible")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #375ea7d03dbdb5fb Filesystem access.
pkgs/go/[email protected]+incompatible/internal/rootless/specconv/specconv_linux.go:42
	b, err := os.ReadFile("/proc/self/oom_score_adj")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b11b4fa5655df4c9 Filesystem access.
pkgs/go/[email protected]+incompatible/internal/testutils/specialimage/dangling.go:20
	if err := os.WriteFile(filepath.Join(dir, "index.json"), []byte(`{"schemaVersion":2,"manifests":[{"mediaType":"application/vnd.docker.distribution.manifest.v2+json","digest":"sha256:16d365089e5c10e1673ee82ab5bba38ade9b763296ad918bd24b42a1156c5456","size":264,"annotations":{"org.opencontainers.image.created":"2023-05-19T08:00:44Z"},"platform":{"architecture":"amd64","os":"linux"}}]}`), 0o644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #4b8f62ac2c2b5397 Filesystem access.
pkgs/go/[email protected]+incompatible/internal/testutils/specialimage/dangling.go:24
	if err := os.WriteFile(filepath.Join(dir, "manifest.json"), []byte(`[{"Config":"blobs/sha256/0df1207206e5288f4a989a2f13d1f5b3c4e70467702c1d5d21dfc9f002b7bd43","RepoTags":null,"Layers":null}]`), 0o644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #0542b1f77870fb54 Filesystem access.
pkgs/go/[email protected]+incompatible/internal/testutils/specialimage/dangling.go:37
	if err := os.WriteFile(filepath.Join(blobsDir, strings.TrimPrefix(danglingImageManifestDigest, "sha256:")), []byte(`{"schemaVersion":2,"mediaType":"application/vnd.docker.distribution.manifest.v2+json","config":{"mediaType":"application/vnd.docker.container.image.v1+json","digest":"sha256:0df1207206e5288f4a989a2f13d1f5b3c4e70467702c1d5d21dfc9f002b7bd43","size":390},"layers":[]}`), 0o644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #aca61852fe951d2f Filesystem access.
pkgs/go/[email protected]+incompatible/internal/testutils/specialimage/dangling.go:40
	if err := os.WriteFile(filepath.Join(blobsDir, strings.TrimPrefix(danglingImageConfigDigest, "sha256:")), []byte(`{"architecture":"amd64","config":{"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"WorkingDir":"/","Labels":{"org.mobyproject.test.specialimage":"1"},"OnBuild":null},"created":null,"history":[{"created_by":"LABEL org.mobyproject.test.specialimage=1","comment":"buildkit.dockerfile.v0","empty_layer":true}],"os":"linux","rootfs":{"type":"layers","diff_ids":null}}`), 0o644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #366437a0714e1e64 Filesystem access.
pkgs/go/[email protected]+incompatible/internal/testutils/specialimage/emptyfs.go:16
	if err := os.WriteFile(filepath.Join(dir, "manifest.json"), []byte(`[{"Config":"11f64303f0f7ffdc71f001788132bca5346831939a956e3e975c93267d89a16d.json","RepoTags":["emptyfs:latest"],"Layers":["511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158/layer.tar"]}]`), 0o644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a8ff5244ce885a72 Filesystem access.
pkgs/go/[email protected]+incompatible/internal/testutils/specialimage/emptyfs.go:29
	if err := os.WriteFile(filepath.Join(dir, "VERSION"), []byte(`1.0`), 0o644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #0dfda065ab465d70 Filesystem access.
pkgs/go/[email protected]+incompatible/internal/testutils/specialimage/emptyfs.go:32
	if err := os.WriteFile(filepath.Join(dir, "repositories"), []byte(`{"emptyfs":{"latest":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158"}}`), 0o644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #656b087eac0f5d07 Filesystem access.
pkgs/go/[email protected]+incompatible/internal/testutils/specialimage/emptyfs.go:35
	if err := os.WriteFile(filepath.Join(dir, "11f64303f0f7ffdc71f001788132bca5346831939a956e3e975c93267d89a16d.json"), []byte(`{"architecture":"x86_64","comment":"Imported from -","container_config":{"Hostname":"","Domainname":"","User":"","AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":null,"Cmd":null,"Image":"","Volumes":null,"WorkingDir":"","Entrypoint":null,"OnBuild":null,"Labels":null},"created":"2013-06-13T14:03:50.821769-07:00","docker_version":"0.4.0","history":[{"created":"2013-06-13T14:03:50.821769-07:00","comment":"Imported from -"}],"rootfs":{"type":"layers","diff_ids":["sha256:84ff92691f909a05b224e1c56abb4864f01b4f8e3c854e4bb4c7baf1d3f6d652"]}}`), 0o644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a62a25efecdd9a5d Filesystem access.
pkgs/go/[email protected]+incompatible/internal/testutils/specialimage/emptyfs.go:39
	if err := os.WriteFile(filepath.Join(blobsDir, "json"), []byte(`{"id":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","comment":"Imported from -","created":"2013-06-13T14:03:50.821769-07:00","container_config":{"Hostname":"","Domainname":"","User":"","Memory":0,"MemorySwap":0,"CpuShares":0,"AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"PortSpecs":null,"ExposedPorts":null,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":null,"Cmd":null,"Image":"","Volumes":null,"WorkingDir":"","Entrypoint":null,"NetworkDisabled":false,"OnBuild":null},"docker_version":"0.4.0","architecture":"x86_64","Size":0}`+"\n"), 0o644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d434772ed4360036 Filesystem access.
pkgs/go/[email protected]+incompatible/internal/testutils/specialimage/emptyfs.go:43
	layerFile, err := os.OpenFile(filepath.Join(blobsDir, "layer.tar"), os.O_CREATE|os.O_WRONLY, 0o644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #596bfcbf8fcd0456 Filesystem access.
pkgs/go/[email protected]+incompatible/internal/testutils/specialimage/multilayer.go:122
	err := os.WriteFile(filepath.Join(dir, "oci-layout"), []byte(`{"imageLayoutVersion": "1.0.0"}`), 0o644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #fcefdb1dc90269d4 Filesystem access.
pkgs/go/[email protected]+incompatible/internal/testutils/specialimage/multilayer.go:136
	if err := os.WriteFile(filepath.Join(tmp, name), content, 0o644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #690ba3f4271d9d30 Filesystem access.
pkgs/go/[email protected]+incompatible/internal/testutils/specialimage/multilayer.go:168
	return os.WriteFile(path, b, 0o644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c3fc21287a3e53e6 Filesystem access.
pkgs/go/[email protected]+incompatible/internal/testutils/specialimage/multilayer.go:181
	file, err := os.Create(tmpPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #fe27128c40ac7ea3 Filesystem access.
pkgs/go/[email protected]+incompatible/internal/testutils/specialimage/random.go:83
	content, err := os.ReadFile(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #566091d666d5a66f Filesystem access.
pkgs/go/[email protected]+incompatible/internal/testutils/specialimage/twoplatform.go:107
	err = os.WriteFile(filepath.Join(dir, "oci-layout"), []byte(`{"imageLayoutVersion": "1.0.0"}`), 0o644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6f9e14cebd835ce2 Filesystem access.
pkgs/go/[email protected]+incompatible/layer/filestore.go:141
	content, err := os.ReadFile(fms.getLayerFilename(layer, "size"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #8464114d5080b097 Filesystem access.
pkgs/go/[email protected]+incompatible/layer/filestore.go:155
	content, err := os.ReadFile(fms.getLayerFilename(layer, "parent"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3d4a93345a30d3eb Filesystem access.
pkgs/go/[email protected]+incompatible/layer/filestore.go:172
	content, err := os.ReadFile(fms.getLayerFilename(layer, "diff"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #8af8b87a22b5da35 Filesystem access.
pkgs/go/[email protected]+incompatible/layer/filestore.go:186
	contentBytes, err := os.ReadFile(fms.getLayerFilename(layer, "cache-id"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #8a07d63145fee4b1 Filesystem access.
pkgs/go/[email protected]+incompatible/layer/filestore.go:200
	content, err := os.ReadFile(fms.getLayerFilename(layer, "descriptor.json"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #8141207f5afca5a4 Filesystem access.
pkgs/go/[email protected]+incompatible/layer/filestore.go:218
	fz, err := os.Open(fms.getLayerFilename(layer, "tar-split.json.gz"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #4a1476114c86ca52 Filesystem access.
pkgs/go/[email protected]+incompatible/layer/filestore.go:238
	return os.WriteFile(fms.getMountFilename(mount, "mount-id"), []byte(mountID), 0o644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #bb36321edf73ef89 Filesystem access.
pkgs/go/[email protected]+incompatible/layer/filestore.go:245
	return os.WriteFile(fms.getMountFilename(mount, "init-id"), []byte(init), 0o644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b495ce2e2603b527 Filesystem access.
pkgs/go/[email protected]+incompatible/layer/filestore.go:252
	return os.WriteFile(fms.getMountFilename(mount, "parent"), []byte(digest.Digest(parent).String()), 0o644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #9e9de5769f63d391 Filesystem access.
pkgs/go/[email protected]+incompatible/layer/filestore.go:256
	contentBytes, err := os.ReadFile(fms.getMountFilename(mount, "mount-id"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #cb3986426c2a8616 Filesystem access.
pkgs/go/[email protected]+incompatible/layer/filestore.go:270
	contentBytes, err := os.ReadFile(fms.getMountFilename(mount, "init-id"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #97ab66d4738fdeff Filesystem access.
pkgs/go/[email protected]+incompatible/layer/filestore.go:287
	content, err := os.ReadFile(fms.getMountFilename(mount, "parent"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #56a56115b7205bfe Filesystem access.
pkgs/go/[email protected]+incompatible/layer/filestore.go:328
			contentBytes, err := os.ReadFile(chainFile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #23909d438a68a55f Filesystem access.
pkgs/go/[email protected]+incompatible/layer/filestore.go:409
		contentBytes, err := os.ReadFile(chainFile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #9fea83d8ffe3ff94 Filesystem access.
pkgs/go/[email protected]+incompatible/layer/migration.go:23
	f, err := os.Create(newTarDataPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f8c58d0e00ec4017 Filesystem access.
pkgs/go/[email protected]+incompatible/layer/migration.go:109
	tdf, cleanupErr := os.Open(tarDataFile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #414080a1a896d50a Environment-variable access.
pkgs/go/[email protected]+incompatible/libcontainerd/remote/client.go:386
	if os.Getenv("LIBCONTAINERD_NOCLEAN") != "1" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6de46033995770fa Filesystem access.
pkgs/go/[email protected]+incompatible/libcontainerd/supervisor/remote_daemon.go:134
	f, err := os.OpenFile(r.configFile, os.O_CREATE|os.O_TRUNC|os.O_WRONLY, 0o600)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b5d9574a4dcea84c Environment-variable access.
pkgs/go/[email protected]+incompatible/libcontainerd/supervisor/remote_daemon.go:171
	for _, e := range os.Environ() {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #330dd56951885dac Environment-variable access.
pkgs/go/[email protected]+incompatible/libnetwork/cmd/diagnostic/main.go:57
	if _, ok := os.LookupEnv("DIND_CLIENT"); !ok && *joinPtr {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #646bcd7a69ab6d6b Environment-variable access.
pkgs/go/[email protected]+incompatible/libnetwork/cmd/networkdb-test/dbserver/ndbServer.go:37
	if localNodeName, ok = os.LookupEnv("TASK_ID"); !ok {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #8ed934a9606c0768 Environment-variable access.
pkgs/go/[email protected]+incompatible/libnetwork/drivers/bridge/bridge_linux.go:928
	if v := os.Getenv("DOCKER_TEST_BRIDGE_INIT_ERROR"); v == config.BridgeName {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c7eb7a9d3755f643 Environment-variable access.
pkgs/go/[email protected]+incompatible/libnetwork/drivers/bridge/internal/iptabler/port.go:144
	if b.Proto == types.SCTP && os.Getenv("DOCKER_IPTABLES_SCTP_CHECKSUM") == "1" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #7160c43c05117232 Environment-variable access.
pkgs/go/[email protected]+incompatible/libnetwork/drivers/bridge/internal/iptabler/port.go:259
	if os.Getenv("DOCKER_INSECURE_NO_IPTABLES_RAW") == "1" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #72fcd2a28fc5c949 Environment-variable access.
pkgs/go/[email protected]+incompatible/libnetwork/drivers/bridge/internal/rlkclient/rootlesskit_client_linux.go:31
	stateDir := os.Getenv("ROOTLESSKIT_STATE_DIR")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #41008ae7166cc68d Environment-variable access.
pkgs/go/[email protected]+incompatible/libnetwork/drivers/bridge/setup_bridgenetfiltering.go:60
			if os.Getenv("DOCKER_IGNORE_BR_NETFILTER_ERROR") == "1" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b45af4e84dd65285 Filesystem access.
pkgs/go/[email protected]+incompatible/libnetwork/drivers/bridge/setup_bridgenetfiltering.go:85
		return os.WriteFile(nfParam, []byte{'1', '\n'}, 0o644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ca77f46fe0da95cd Filesystem access.
pkgs/go/[email protected]+incompatible/libnetwork/drivers/bridge/setup_bridgenetfiltering.go:92
	line, err := os.ReadFile(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #7bf6a8decbe7e78e Filesystem access.
pkgs/go/[email protected]+incompatible/libnetwork/drivers/bridge/setup_device_linux.go:60
	if err := os.WriteFile(sysPath, []byte{'0', '\n'}, 0o644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #9d9f197b25f776df Filesystem access.
pkgs/go/[email protected]+incompatible/libnetwork/drivers/bridge/setup_ip_forwarding.go:86
	data, err := os.ReadFile(file)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #76808e7d9b32c895 Filesystem access.
pkgs/go/[email protected]+incompatible/libnetwork/drivers/bridge/setup_ip_forwarding.go:96
	if err := os.WriteFile(file, []byte{val, '\n'}, 0o644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #feb040872aafe63d Filesystem access.
pkgs/go/[email protected]+incompatible/libnetwork/drivers/bridge/setup_ipv4_linux.go:80
	ipv4LoRoutingData, err := os.ReadFile(sysPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #39605702d2b430c4 Filesystem access.
pkgs/go/[email protected]+incompatible/libnetwork/drivers/bridge/setup_ipv4_linux.go:86
		if err := os.WriteFile(sysPath, []byte{'1', '\n'}, 0o644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a067a3b35c96deef Filesystem access.
pkgs/go/[email protected]+incompatible/libnetwork/drivers/bridge/setup_ipv6_linux.go:14
	ipv6BridgeData, err := os.ReadFile(procFile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #aa5b7b9c51872ec0 Filesystem access.
pkgs/go/[email protected]+incompatible/libnetwork/drivers/bridge/setup_ipv6_linux.go:23
			if err := os.WriteFile(procFile, []byte{'1', '\n'}, 0o644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #2d91e7fb11d7ff36 Filesystem access.
pkgs/go/[email protected]+incompatible/libnetwork/drivers/bridge/setup_ipv6_linux.go:33
		if err := os.WriteFile(procFile, []byte{'0', '\n'}, 0o644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #0807573d44354e5a Filesystem access.
pkgs/go/[email protected]+incompatible/libnetwork/drivers/overlay/ov_network.go:510
		if err := os.WriteFile(path, data, 0o644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #39587b78c04aed48 Filesystem access.
pkgs/go/[email protected]+incompatible/libnetwork/etchosts/etchosts.go:104
	return os.WriteFile(path, buf.Bytes(), 0o644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ae4884768fff1d33 Filesystem access.
pkgs/go/[email protected]+incompatible/libnetwork/etchosts/etchosts.go:122
	f, err := os.OpenFile(path, os.O_APPEND|os.O_WRONLY, 0o644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a849a05b27088953 Filesystem access.
pkgs/go/[email protected]+incompatible/libnetwork/etchosts/etchosts.go:140
	f, err := os.OpenFile(path, os.O_RDWR, 0o644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #98134bdadc5c27ee Filesystem access.
pkgs/go/[email protected]+incompatible/libnetwork/etchosts/etchosts.go:193
	old, err := os.ReadFile(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e69cf102e84cf65e Filesystem access.
pkgs/go/[email protected]+incompatible/libnetwork/etchosts/etchosts.go:197
	return os.WriteFile(path, re.ReplaceAll(old, []byte(IP+"$2"+"$3")), 0o644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #32ac92dc9ae8be15 Environment-variable access.
pkgs/go/[email protected]+incompatible/libnetwork/firewall_linux.go:19
	if os.Getenv("DOCKER_FIREWALL_BACKEND") == "nftables" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e99ec2c311610a5f Filesystem access.
pkgs/go/[email protected]+incompatible/libnetwork/internal/resolvconf/resolvconf.go:97
	f, err := os.Open(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #af8e99bf2a8e8729 Filesystem access.
pkgs/go/[email protected]+incompatible/libnetwork/internal/resolvconf/resolvconf.go:370
	if err := os.WriteFile(path, content, perm); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #0f0beeaa3a8061ba Filesystem access.
pkgs/go/[email protected]+incompatible/libnetwork/internal/resolvconf/resolvconf.go:395
	currRCHash, err := os.ReadFile(rcHashPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #974ed163a3b2c76e Filesystem access.
pkgs/go/[email protected]+incompatible/libnetwork/internal/resolvconf/resolvconf.go:409
	currRC, err := os.Open(rcPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #cb36a299a593fa34 Filesystem access.
pkgs/go/[email protected]+incompatible/libnetwork/netutils/utils_linux.go:65
	if rc, err := os.ReadFile(resolvconf.Path()); err == nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #92c981bee00dc3f0 Filesystem access.
pkgs/go/[email protected]+incompatible/libnetwork/osl/interface_linux.go:554
	portStateFile, err = os.Open(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #94271af989c099e2 Filesystem access.
pkgs/go/[email protected]+incompatible/libnetwork/osl/interface_linux.go:603
	stpState, err := os.ReadFile(stpStateFilename)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #506e427dbec3036c Filesystem access.
pkgs/go/[email protected]+incompatible/libnetwork/osl/interface_linux.go:994
			} else if curVal, err := os.ReadFile(sysPath); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #04a95e8e3cd0c93f Filesystem access.
pkgs/go/[email protected]+incompatible/libnetwork/osl/interface_linux.go:999
			} else if err := os.WriteFile(sysPath, []byte(v), 0o644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ad310c00aea90415 Filesystem access.
pkgs/go/[email protected]+incompatible/libnetwork/osl/kernel/knobs_linux.go:16
	return os.WriteFile(path.Join("/proc/sys", keyPath), []byte(value), 0o644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #4653a647d5869f57 Filesystem access.
pkgs/go/[email protected]+incompatible/libnetwork/osl/kernel/knobs_linux.go:22
	value, err := os.ReadFile(path.Join("/proc/sys", keyPath))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f891af7617d5bb78 Filesystem access.
pkgs/go/[email protected]+incompatible/libnetwork/osl/namespace_linux.go:215
	f, err := os.Create(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3f9a1a6ac353f5ec Filesystem access.
pkgs/go/[email protected]+incompatible/libnetwork/osl/namespace_linux.go:311
		if err := os.WriteFile(path, []byte{'1', '\n'}, 0o644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6b989569893e398b Filesystem access.
pkgs/go/[email protected]+incompatible/libnetwork/osl/namespace_linux.go:316
		if err := os.WriteFile(path, []byte{'2', '\n'}, 0o644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ed680553a2d06349 Filesystem access.
pkgs/go/[email protected]+incompatible/libnetwork/osl/namespace_linux.go:589
		if curVal, err := os.ReadFile(path); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #83d993173b8aecde Filesystem access.
pkgs/go/[email protected]+incompatible/libnetwork/osl/namespace_linux.go:605
		if err = os.WriteFile(path, []byte{value, '\n'}, 0o644); err != nil || os.Getenv("DOCKER_TEST_RO_DISABLE_IPV6") != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #795b2a1fb190a44b Environment-variable access.
pkgs/go/[email protected]+incompatible/libnetwork/osl/namespace_linux.go:605
		if err = os.WriteFile(path, []byte{value, '\n'}, 0o644); err != nil || os.Getenv("DOCKER_TEST_RO_DISABLE_IPV6") != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #0538149d5f3aeb17 Filesystem access.
pkgs/go/[email protected]+incompatible/libnetwork/portallocator/portallocator_linux.go:11
	file, err := os.Open(portRangeKernelParam)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #0ac97b790e53fed7 Filesystem access.
pkgs/go/[email protected]+incompatible/libnetwork/resolvconf/resolvconf.go:38
	resolv, err := os.ReadFile(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #80d047414b7f71e0 Filesystem access.
pkgs/go/[email protected]+incompatible/libnetwork/resolvconf/resolvconf.go:152
	if err := os.WriteFile(path, content, 0o644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #23bb703b29261131 Filesystem access.
pkgs/go/[email protected]+incompatible/libnetwork/sandbox_dns_unix.go:361
	sBytes, err := os.ReadFile(src)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3414c46324557647 Filesystem access.
pkgs/go/[email protected]+incompatible/libnetwork/sandbox_dns_unix.go:365
	return os.WriteFile(dst, sBytes, filePerm)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #46beb040c0c5ea87 Filesystem access.
pkgs/go/[email protected]+incompatible/libnetwork/service_linux.go:390
		if err := os.WriteFile(path, []byte{'1', '\n'}, 0o644); err != nil { //nolint:gosec // gosec complains about perms here, which must be 0644 in this case

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #8b63e81eb0befd0c Filesystem access.
pkgs/go/[email protected]+incompatible/libnetwork/service_linux.go:560
				err := os.WriteFile("/proc/sys/net/ipv4/vs/conntrack", []byte{'1', '\n'}, 0o644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3daa5e438aff2697 Environment-variable access.
pkgs/go/[email protected]+incompatible/opts/env.go:26
	if envVal, ok := os.LookupEnv(k); ok {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #8d833253517f92b6 Filesystem access.
pkgs/go/[email protected]+incompatible/pkg/fileutils/fileutils.go:19
	sf, err := os.Open(cleanSrc)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #eeac49193e14e72b Filesystem access.
pkgs/go/[email protected]+incompatible/pkg/fileutils/fileutils.go:27
	df, err := os.Create(cleanDst)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #78e4cb4a7de710d4 Filesystem access.
pkgs/go/[email protected]+incompatible/pkg/fileutils/fileutils.go:67
			f, err := os.OpenFile(path, os.O_CREATE, 0o755)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f5a244d2e2947998 Environment-variable access.
pkgs/go/[email protected]+incompatible/pkg/homedir/homedir_linux.go:16
	if xdgRuntimeDir := os.Getenv("XDG_RUNTIME_DIR"); xdgRuntimeDir != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #167da9ff2455f97e Environment-variable access.
pkgs/go/[email protected]+incompatible/pkg/homedir/homedir_linux.go:71
	if xdgDataHome := os.Getenv("XDG_DATA_HOME"); xdgDataHome != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ebe8e5d9b126d0ee Environment-variable access.
pkgs/go/[email protected]+incompatible/pkg/homedir/homedir_linux.go:87
	if xdgConfigHome := os.Getenv("XDG_CONFIG_HOME"); xdgConfigHome != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #696e6eea645a145f Filesystem access.
pkgs/go/[email protected]+incompatible/pkg/meminfo/meminfo_linux.go:14
	file, err := os.Open("/proc/meminfo")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b208b5f5b7baa736 Filesystem access.
pkgs/go/[email protected]+incompatible/pkg/parsers/operatingsystem/operatingsystem_linux.go:43
	osReleaseFile, err := os.Open(etcOsRelease)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d5393e3d10f78c80 Filesystem access.
pkgs/go/[email protected]+incompatible/pkg/parsers/operatingsystem/operatingsystem_linux.go:48
		osReleaseFile, err = os.Open(altOsRelease)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #be1d72fd5cfbc05c Filesystem access.
pkgs/go/[email protected]+incompatible/pkg/parsers/operatingsystem/operatingsystem_linux.go:70
	b, err := os.ReadFile(proc1Cgroup)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #00f0b2f3f50e0d72 Filesystem access.
pkgs/go/[email protected]+incompatible/pkg/pidfile/pidfile.go:21
	pidByte, err := os.ReadFile(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #8b89cd6f01ad9ad4 Filesystem access.
pkgs/go/[email protected]+incompatible/pkg/pidfile/pidfile.go:51
	return os.WriteFile(path, []byte(strconv.Itoa(pid)), 0o644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #72ccbefa66b0014e Filesystem access.
pkgs/go/[email protected]+incompatible/pkg/plugins/discovery.go:143
	content, err := os.ReadFile(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #7d3f2bc10a8f79d7 Filesystem access.
pkgs/go/[email protected]+incompatible/pkg/plugins/discovery.go:162
	f, err := os.Open(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #52c575bba4b6603f Environment-variable access.
pkgs/go/[email protected]+incompatible/pkg/plugins/discovery_windows.go:10
	return []string{filepath.Join(os.Getenv("programdata"), "docker", "plugins")}

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #47389e4c1006f212 Filesystem access.
pkgs/go/[email protected]+incompatible/pkg/plugins/pluginrpc-gen/main.go:82
	errorOut("error writing file", os.WriteFile(*outputFile, src, 0o644))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #03181c8ff340068f Filesystem access.
pkgs/go/[email protected]+incompatible/pkg/process/process_unix.go:71
	data, err := os.ReadFile(fmt.Sprintf("/proc/%d/stat", pid))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e91c9fe3fe9f59bd Environment-variable access.
pkgs/go/[email protected]+incompatible/pkg/rootless/rootless.go:7
	return os.Getenv("ROOTLESSKIT_STATE_DIR") != ""

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #7249fb51c39961a7 Filesystem access.
pkgs/go/[email protected]+incompatible/pkg/stack/stackdump.go:29
		f, err = os.OpenFile(path, os.O_CREATE|os.O_WRONLY, 0o666)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #81aa1c97c56d8c0b Filesystem access.
pkgs/go/[email protected]+incompatible/pkg/sysinfo/cgroup2_linux.go:122
	cpus, err := os.ReadFile(path.Join("/sys/fs/cgroup", info.cg2GroupPath, "cpuset.cpus.effective"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f26dc505a7b1cf42 Filesystem access.
pkgs/go/[email protected]+incompatible/pkg/sysinfo/cgroup2_linux.go:135
	mems, err := os.ReadFile(path.Join("/sys/fs/cgroup", info.cg2GroupPath, "cpuset.mems.effective"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e2f5b05677f10353 Filesystem access.
pkgs/go/[email protected]+incompatible/pkg/sysinfo/sysinfo_linux.go:239
	cpus, err := os.ReadFile(path.Join(mountPoint, "cpuset.cpus"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #9ba86ac038c895ca Filesystem access.
pkgs/go/[email protected]+incompatible/pkg/sysinfo/sysinfo_linux.go:251
	mems, err := os.ReadFile(path.Join(mountPoint, "cpuset.mems"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #cc0639e3851859ae Filesystem access.
pkgs/go/[email protected]+incompatible/pkg/sysinfo/sysinfo_linux.go:303
		if _, err := os.ReadFile("/sys/kernel/security/apparmor/profiles"); err == nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #15fb92c06059d334 Filesystem access.
pkgs/go/[email protected]+incompatible/pkg/sysinfo/sysinfo_linux.go:324
	val, err := os.ReadFile(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ca71ee628d1d3c09 Filesystem access.
pkgs/go/[email protected]+incompatible/plugin/manager.go:268
	dt, err := os.ReadFile(p)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6b0ffa8b98431274 Filesystem access.
pkgs/go/[email protected]+incompatible/reference/store.go:322
	f, err := os.Open(store.jsonPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #39abd214399ba848 Environment-variable access.
pkgs/go/[email protected]+incompatible/registry/config.go:77
		if os.Getenv("ROOTLESSKIT_STATE_DIR") != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #8a9dd198d56d8fc6 Environment-variable access.
pkgs/go/[email protected]+incompatible/registry/config_windows.go:12
var defaultCertsDir = os.Getenv("programdata") + `\docker\certs.d`

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c51525c7bdee3c61 Filesystem access.
pkgs/go/[email protected]+incompatible/registry/registry.go:90
			data, err := os.ReadFile(fileName)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #975a255350530c1e Environment-variable access.
pkgs/go/[email protected]+incompatible/testutil/daemon/daemon.go:114
	storageDriver := os.Getenv("DOCKER_GRAPHDRIVER")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f651dfa0b029b95f Environment-variable access.
pkgs/go/[email protected]+incompatible/testutil/daemon/daemon.go:132
	if env := os.Getenv("DOCKER_USERLANDPROXY"); env != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #387c2b6da7996d9e Filesystem access.
pkgs/go/[email protected]+incompatible/testutil/daemon/daemon.go:158
		if err := os.WriteFile(path, []byte(d.resolvConfContent), 0644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #1bc699fe3d6a4212 Environment-variable access.
pkgs/go/[email protected]+incompatible/testutil/daemon/daemon.go:216
	dest := os.Getenv("DOCKER_INTEGRATION_DAEMON_DEST")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #22047ab2239811c4 Environment-variable access.
pkgs/go/[email protected]+incompatible/testutil/daemon/daemon.go:218
		dest = os.Getenv("DEST")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #1414fe8aefa7d06f Environment-variable access.
pkgs/go/[email protected]+incompatible/testutil/daemon/daemon.go:224
	if os.Getenv("DOCKER_ROOTLESS") != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f61c96642777f814 Environment-variable access.
pkgs/go/[email protected]+incompatible/testutil/daemon/daemon.go:225
		if os.Getenv("DOCKER_REMAP_ROOT") != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d6dccd619daa0d68 Environment-variable access.
pkgs/go/[email protected]+incompatible/testutil/daemon/daemon.go:228
		if env := os.Getenv("DOCKER_USERLANDPROXY"); env != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #07a3bccfe7f67e30 Environment-variable access.
pkgs/go/[email protected]+incompatible/testutil/daemon/daemon.go:237
	if val, ok := os.LookupEnv("DOCKER_FIREWALL_BACKEND"); ok {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a77284efce700e2b Filesystem access.
pkgs/go/[email protected]+incompatible/testutil/daemon/daemon.go:296
	return os.ReadFile(d.logFile.Name())

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #1a7c3809228dab33 Filesystem access.
pkgs/go/[email protected]+incompatible/testutil/daemon/daemon.go:420
	logF, err := os.Open(d.logFile.Name())

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3e69a44588cb2ab6 Filesystem access.
pkgs/go/[email protected]+incompatible/testutil/daemon/daemon.go:447
	logFile, err := os.OpenFile(filepath.Join(d.Folder, "docker.log"), os.O_RDWR|os.O_CREATE|os.O_APPEND, 0o600)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e1bae7564d0d45c7 Environment-variable access.
pkgs/go/[email protected]+incompatible/testutil/daemon/daemon.go:514
	if root := os.Getenv("DOCKER_REMAP_ROOT"); root != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e91d2039892c0587 Environment-variable access.
pkgs/go/[email protected]+incompatible/testutil/daemon/daemon.go:539
	cmd.Env = append(os.Environ(), "DOCKER_SERVICE_PREFER_OFFLINE_IMAGE=1")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b84647fdf594126b Environment-variable access.
pkgs/go/[email protected]+incompatible/testutil/daemon/daemon.go:801
	if root := os.Getenv("DOCKER_REMAP_ROOT"); root != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #954a93e0d3af4ee3 Filesystem access.
pkgs/go/[email protected]+incompatible/testutil/daemon/daemon.go:1019
	configBytes, err := os.ReadFile(configPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #fedffa00fb64dd1a Filesystem access.
pkgs/go/[email protected]+incompatible/testutil/daemon/daemon.go:1028
	assert.NilError(t, os.WriteFile(configPath, configBytes, 0o600))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #610d787557dd36a7 Environment-variable access.
pkgs/go/[email protected]+incompatible/testutil/environment/environment.go:81
		if overrideBaseImage := os.Getenv("WINDOWS_BASE_IMAGE"); overrideBaseImage != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #33e440310e03ed1f Environment-variable access.
pkgs/go/[email protected]+incompatible/testutil/environment/environment.go:83
			if overrideBaseImageTag := os.Getenv("WINDOWS_BASE_IMAGE_TAG"); overrideBaseImageTag != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #72a7f7ddabe5df26 Environment-variable access.
pkgs/go/[email protected]+incompatible/testutil/environment/environment.go:121
	return os.Getenv("DOCKER_REMOTE_DAEMON") == ""

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #da9f22f243e0e53f Environment-variable access.
pkgs/go/[email protected]+incompatible/testutil/environment/environment.go:156
	root := os.Getenv("DOCKER_REMAP_ROOT")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #13258e7a5252841c Environment-variable access.
pkgs/go/[email protected]+incompatible/testutil/environment/environment.go:162
	return os.Getenv("DOCKER_WINDOWS_CONTAINERD_RUNTIME") == "1"

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e4d422b00a655b36 Environment-variable access.
pkgs/go/[email protected]+incompatible/testutil/environment/environment.go:167
	return os.Getenv("DOCKER_ROOTLESS") != ""

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a4bd4be927204da3 Filesystem access.
pkgs/go/[email protected]+incompatible/testutil/environment/environment.go:181
	if f, err := os.Open("/sys/module/user_namespace/parameters/enable"); err == nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d94b13be54932ee3 Environment-variable access.
pkgs/go/[email protected]+incompatible/testutil/environment/environment.go:195
	return os.Getenv("TEST_INTEGRATION_USE_SNAPSHOTTER") != ""

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #53f0d86ae4dc76c1 Environment-variable access.
pkgs/go/[email protected]+incompatible/testutil/environment/environment.go:228
	return os.Getenv("GITHUB_ACTIONS") != ""

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f4770db91a2e6b48 Filesystem access.
pkgs/go/[email protected]+incompatible/testutil/fakecontext/context.go:98
	return os.WriteFile(fp, content, 0o644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #38f9ae3d8c7ffcf7 Environment-variable access.
pkgs/go/[email protected]+incompatible/testutil/fakestorage/fixtures.go:55
		cmd.Env = append(os.Environ(), []string{

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #43f2e2b031e7bcf7 Environment-variable access.
pkgs/go/[email protected]+incompatible/testutil/fixtures/load/frozen.go:128
	dockerfile := os.Getenv("DOCKERFILE")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #078395f2f5dfe7aa Filesystem access.
pkgs/go/[email protected]+incompatible/testutil/fixtures/load/frozen.go:183
	f, err := os.Open(dockerfilePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #5a4cebb4ca8a74f7 Filesystem access.
pkgs/go/[email protected]+incompatible/testutil/fixtures/plugin/plugin.go:167
	if err := os.WriteFile(filepath.Join(inPath, "config.json"), configJSON, 0o644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #aa54978b56c1d8a3 Filesystem access.
pkgs/go/[email protected]+incompatible/testutil/fixtures/plugin/plugin.go:196
			f, err := os.Create(filepath.Join(inPath, "rootfs", m.Destination))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d6902ba75cc0d77d Environment-variable access.
pkgs/go/[email protected]+incompatible/testutil/fixtures/plugin/plugin.go:223
	installPath := filepath.Join(os.Getenv("GOPATH"), "bin", name)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e956587136fbfaa8 Environment-variable access.
pkgs/go/[email protected]+incompatible/testutil/fixtures/plugin/plugin.go:226
	cmd.Env = append(os.Environ(), "CGO_ENABLED=0", "GO111MODULE=off")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f87beb4b6c2afd0c Environment-variable access.
pkgs/go/[email protected]+incompatible/testutil/helpers.go:44
	if os.Getenv("OTEL_EXPORTER_OTLP_ENDPOINT") == "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ab020ab1842b0458 Filesystem access.
pkgs/go/[email protected]+incompatible/testutil/registry/registry.go:78
		err := os.WriteFile(htpasswdPath, []byte(userpasswd), os.FileMode(0o644))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #526eac5fa4ae27c1 Filesystem access.
pkgs/go/[email protected]+incompatible/testutil/registry/registry.go:96
	config, err := os.Create(confPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #495d6b766177d791 Filesystem access.
pkgs/go/[email protected]+incompatible/testutil/registry/registry.go:178
	manifestBlob, err := os.ReadFile(r.getBlobFilename(blobDigest))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #99849178e7543edd Filesystem access.
pkgs/go/[email protected]+incompatible/testutil/registry/registry.go:186
	err := os.WriteFile(r.getBlobFilename(blobDigest), data, os.FileMode(0o644))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #96417ed152df2fd4 Environment-variable access.
pkgs/go/[email protected]+incompatible/testutil/request/request.go:125
	if os.Getenv("DOCKER_TLS_VERIFY") != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #60f70abf1910744d Environment-variable access.
pkgs/go/[email protected]+incompatible/testutil/request/request.go:155
	if hostURL.Scheme == "tcp" && os.Getenv("DOCKER_TLS_VERIFY") != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #577eafb3a3de838c Environment-variable access.
pkgs/go/[email protected]+incompatible/testutil/request/request.go:169
	dockerCertPath := os.Getenv("DOCKER_CERT_PATH")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #94e34999b9006267 Environment-variable access.
pkgs/go/[email protected]+incompatible/testutil/request/request.go:191
	if daemonHostVar := os.Getenv("DOCKER_HOST"); daemonHostVar != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #31b5a3ab677a998e Environment-variable access.
pkgs/go/[email protected]+incompatible/testutil/request/request.go:211
		if os.Getenv("DOCKER_TLS_VERIFY") != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #21793a6bc4b6d48b Filesystem access.
pkgs/go/[email protected]+incompatible/volume/local/local.go:370
	b, err := os.ReadFile(filepath.Join(v.rootPath, "opts.json"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/docker/go-connections

go dependency
expand_more 8 low-confidence finding(s)
low env_fs dependency Excluded from app score #0c7d826beaef260f Environment-variable access.
pkgs/go/[email protected]/sockets/proxy.go:15
	proxyValue := os.Getenv(strings.ToUpper(key))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #7941adc0b65743e9 Environment-variable access.
pkgs/go/[email protected]/sockets/proxy.go:17
		return os.Getenv(strings.ToLower(key))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #85f3842216e225f1 Filesystem access.
pkgs/go/[email protected]/tlsconfig/config.go:92
	pemData, err := os.ReadFile(caFile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6c2e21c4de7859fb Filesystem access.
pkgs/go/[email protected]/tlsconfig/config.go:172
	cert, err := os.ReadFile(options.CertFile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b39beef218f1de51 Filesystem access.
pkgs/go/[email protected]/tlsconfig/config.go:177
	prKeyBytes, err := os.ReadFile(options.KeyFile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f9bec1cc6fd2b4a9 Filesystem access.
pkgs/go/[email protected]/tlsconfig/fixtures/generate.go:58
	certOut, err := os.Create("multi.pem")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c98b49e88f00a924 Filesystem access.
pkgs/go/[email protected]/tlsconfig/fixtures/generate.go:90
	keyOut, err := os.Create("key.pem")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e1f048abc223ce69 Filesystem access.
pkgs/go/[email protected]/tlsconfig/fixtures/generate.go:100
	certOut, err := os.Create("cert.pem")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/felixge/httpsnoop

go dependency
expand_more 1 low-confidence finding(s)
low env_fs dependency Excluded from app score #b66fb821c5cb3e57 Filesystem access.
pkgs/go/[email protected]/codegen/main.go:278
	} else if err := ioutil.WriteFile(name, src, 0644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/go-ego/gse

go dependency
expand_more 7 low-confidence finding(s)
low env_fs dependency Excluded from app score #828ddfb991edd772 Filesystem access.
pkgs/go/[email protected]/dict_util.go:247
	dictFile, err := os.Open(file)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #fc33f06fc3e5fadc Filesystem access.
pkgs/go/[email protected]/stop.go:63
		file, err := os.Open(name[i])

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs tooling Excluded from app score unreachable #7e794907711fa022 Filesystem access.
pkgs/go/[email protected]/tools/benchmark/benchmark.go:50
		f, err := os.Create(*memprofile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs tooling Excluded from app score unreachable #c4e0b4e88116177f Filesystem access.
pkgs/go/[email protected]/tools/benchmark/benchmark.go:61
	file, err := os.Open("../testdata/zh/bailuyuan.txt")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs tooling Excluded from app score unreachable #34df6e9cc32a9dcc Filesystem access.
pkgs/go/[email protected]/tools/benchmark/benchmark.go:90
		of, err = os.Create(*output)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs tooling Excluded from app score unreachable #f72a16f335e66212 Filesystem access.
pkgs/go/[email protected]/tools/benchmark/benchmark.go:103
		f, err := os.Create(*cpuprofile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs tooling Excluded from app score unreachable #c6cfa611c058a0bc Filesystem access.
pkgs/go/[email protected]/tools/benchmark/goroutines/goroutines.go:33
	file, err := os.Open("../../testdata/zh/bailuyuan.txt")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/go-jose/go-jose/v4

go dependency
expand_more 4 low-confidence finding(s)
low env_fs dependency Excluded from app score #18bc81b5fa2517ac Filesystem access.
pkgs/go/[email protected]/jose-util/io.go:31
		bytes, err = os.ReadFile(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #92b6ee36252593b8 Filesystem access.
pkgs/go/[email protected]/jose-util/io.go:47
		err = os.WriteFile(path, data, 0644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #41cd48150ac8cfd6 Filesystem access.
pkgs/go/[email protected]/jose-util/io.go:63
	keyBytes, err := os.ReadFile(*keyFile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b05756f57770c4b1 Filesystem access.
pkgs/go/[email protected]/jose-util/io.go:72
	f, err := os.OpenFile(filename, os.O_WRONLY|os.O_CREATE|os.O_EXCL, perm)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/go-openapi/runtime

go dependency
expand_more 3 low-confidence finding(s)
low env_fs dependency Excluded from app score #1151a13ee66d3fb9 Filesystem access.
pkgs/go/[email protected]/client/runtime.go:166
		caCert, err := os.ReadFile(opts.CA)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3caeec627d976c89 Environment-variable access.
pkgs/go/[email protected]/logger/logger.go:14
	d := os.Getenv("SWAGGER_DEBUG")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #9161cb668ec6d4e8 Environment-variable access.
pkgs/go/[email protected]/logger/logger.go:18
	d = os.Getenv("DEBUG")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/go-openapi/spec

go dependency
expand_more 1 low-confidence finding(s)
low env_fs dependency Excluded from app score #45be214ae4407222 Environment-variable access.
pkgs/go/[email protected]/debug.go:17
var Debug = os.Getenv("SWAGGER_DEBUG") != "" //nolint:gochecknoglobals // public toggle for debug logging

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/go-openapi/swag

go dependency
expand_more 2 low-confidence finding(s)
low env_fs dependency Excluded from app score #e1b16c315b316dc0 Environment-variable access.
pkgs/go/[email protected]/path.go:49
	allPaths := os.Getenv(GOPATHKey)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #2b75d03cbf31a378 Environment-variable access.
pkgs/go/[email protected]/path.go:51
		allPaths = filepath.Join(os.Getenv("HOME"), "go")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/go-openapi/validate

go dependency
expand_more 1 low-confidence finding(s)
low env_fs dependency Excluded from app score #85d02657774832ed Environment-variable access.
pkgs/go/[email protected]/debug.go:17
	Debug = os.Getenv("SWAGGER_DEBUG") != ""

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/golang-jwt/jwt/v4

go dependency
expand_more 1 low-confidence finding(s)
low env_fs dependency Excluded from app score #c1c551f7413cfde6 Filesystem access.
pkgs/go/[email protected]/cmd/jwt/main.go:87
		if f, err := os.Open(p); err == nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/golang-jwt/jwt/v5

go dependency
expand_more 1 low-confidence finding(s)
low env_fs dependency Excluded from app score #941edf4a607d72ee Filesystem access.
pkgs/go/[email protected]/cmd/jwt/main.go:89
		f, err := os.Open(p)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/gomlx/go-huggingface

go dependency
expand_more 7 low-confidence finding(s)
low env_fs dependency Excluded from app score #6e7e45bf33b8b84b Filesystem access.
pkgs/go/[email protected]/hub/download.go:67
		tmpFile, err := os.Create(tmpPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #cb21d268517bcaaf Environment-variable access.
pkgs/go/[email protected]/hub/hub.go:76
	v := os.Getenv(key)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #044093648ac8f3ab Environment-variable access.
pkgs/go/[email protected]/hub/hub.go:88
	cacheDir := getEnvOr("XDG_CACHE_HOME", path.Join(os.Getenv("HOME"), ".cache"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #bfa68acaf94ac295 Filesystem access.
pkgs/go/[email protected]/hub/info.go:98
	infoJson, err := os.ReadFile(infoFilePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f7566d0e8a49c8d1 Environment-variable access.
pkgs/go/[email protected]/hub/repo.go:69
	hfEndpoint := os.Getenv("HF_ENDPOINT")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #2edf128a1d9050ee Filesystem access.
pkgs/go/[email protected]/internal/downloader/downloader.go:96
	file, err = os.Create(filePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #fe913e28af28bf97 Filesystem access.
pkgs/go/[email protected]/tokenizers/api/config.go:64
	content, err := os.ReadFile(filePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/googleapis/gax-go/v2

go dependency
expand_more 5 low-confidence finding(s)
low env_fs dependency Excluded from app score #3c7df3a75294e297 Environment-variable access.
pkgs/go/[email protected]/feature.go:53
		for _, env := range os.Environ() {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #27c37b3ffbae4e06 Environment-variable access.
pkgs/go/[email protected]/internallog/internal/internal.go:66
	sLevel := strings.ToLower(os.Getenv(LoggingLevelEnvVar))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d206d8cc086d8796 Filesystem access.
pkgs/go/[email protected]/internallog/internal/logtest/logtest.go:50
	rawGot, err := os.ReadFile(tempFile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #80bbf916f85e11c1 Filesystem access.
pkgs/go/[email protected]/internallog/internal/logtest/logtest.go:57
		if err := os.WriteFile(filepath.Join("testdata", goldenFile), got, os.ModePerm); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #efa1c68c6d38fbe9 Filesystem access.
pkgs/go/[email protected]/internallog/internal/logtest/logtest.go:63
	want, err := os.ReadFile(filepath.Join("testdata", goldenFile))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/hashicorp/raft

go dependency
expand_more 8 low-confidence finding(s)
low env_fs dependency Excluded from app score #c6cf538908d582f1 Filesystem access.
pkgs/go/[email protected]/file_snapshot.go:137
	fh, err := os.Create(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #039f30e44cfa4a1f Filesystem access.
pkgs/go/[email protected]/file_snapshot.go:207
	fh, err := os.Create(statePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #33a2d7a6779a5efa Filesystem access.
pkgs/go/[email protected]/file_snapshot.go:295
	fh, err := os.Open(metaPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #90aacfe681fcc4d9 Filesystem access.
pkgs/go/[email protected]/file_snapshot.go:324
	fh, err := os.Open(statePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a5ce4d12de2a1774 Filesystem access.
pkgs/go/[email protected]/file_snapshot.go:428
		parentFH, err := os.Open(s.parentDir)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #026f3de55b75be22 Filesystem access.
pkgs/go/[email protected]/file_snapshot.go:506
	fh, err = os.Create(metaPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #88b868001953eca2 Filesystem access.
pkgs/go/[email protected]/peersjson.go:20
	buf, err := os.ReadFile(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #1eb4bb68f871264a Filesystem access.
pkgs/go/[email protected]/peersjson.go:69
	buf, err := os.ReadFile(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/ikawaha/kagome-dict

go dependency
expand_more 4 low-confidence finding(s)
low env_fs dependency Excluded from app score #e33d91f8507227f2 Filesystem access.
pkgs/go/[email protected]/dict/builder/char_def.go:28
	file, err := os.Open(filepath.Clean(path))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #cb4d664a7c0fce78 Filesystem access.
pkgs/go/[email protected]/dict/builder/matrix_def.go:21
	file, err := os.Open(filepath.Clean(path))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #7be72e4a3f1662e8 Filesystem access.
pkgs/go/[email protected]/dict/builder/record.go:69
	f, err := os.Open(filepath.Clean(path))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #47ecf032ce4b44ac Filesystem access.
pkgs/go/[email protected]/dict/user_dict.go:31
	f, err := os.Open(filepath.Clean(path))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/jessevdk/go-flags

go dependency
expand_more 5 low-confidence finding(s)
low env_fs dependency Excluded from app score #6b4fb16089606bcd Filesystem access.
pkgs/go/[email protected]/ini.go:349
	file, err := os.Create(filename)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #bee57eb3153279fe Filesystem access.
pkgs/go/[email protected]/ini.go:363
	file, err := os.Open(filename)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #426282d6f064347f Environment-variable access.
pkgs/go/[email protected]/man.go:188
	source_date_epoch := os.Getenv("SOURCE_DATE_EPOCH")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d5f4165d85392144 Environment-variable access.
pkgs/go/[email protected]/option.go:336
		if value, ok := os.LookupEnv(envKey); ok {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #add372e703ec8858 Environment-variable access.
pkgs/go/[email protected]/parser.go:224
	compval := os.Getenv("GO_FLAGS_COMPLETION")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/launchdarkly/go-server-sdk/v7

go dependency
expand_more 4 low-confidence finding(s)
low env_fs dependency Excluded from app score #c9a293b517fda77b Environment-variable access.
pkgs/go/[email protected]/ldcomponents/http_configuration_builder.go:216
	if os.Getenv("HTTP_PROXY") != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b301dbc31f118d22 Filesystem access.
pkgs/go/[email protected]/ldfiledata/file_data_source_impl.go:179
	if rawData, err = os.ReadFile(path); err != nil { //nolint:gosec // G304: ok to read file into variable

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #556c8bf33aa21670 Filesystem access.
pkgs/go/[email protected]/ldfiledatav2/file_data_source_impl.go:281
	if rawData, err = os.ReadFile(path); err != nil { //nolint:gosec // G304: ok to read file into variable

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b2aa51efdc71e6ea Filesystem access.
pkgs/go/[email protected]/ldhttp/http_transport.go:84
	bytes, err := os.ReadFile(o.filePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/mark3labs/mcp-go

go dependency
expand_more 7 low-confidence finding(s)
low env_fs dependency Excluded from app score #874d671af182ebd1 Environment-variable access.
pkgs/go/github.com_mark3labs_mcp-go@v0.37.1-0.20250812151906-9f16336f83e1/client/transport/stdio.go:160
		cmd.Env = append(os.Environ(), c.env...)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs tooling Excluded from app score unreachable #476a8e616129cb19 Environment-variable access.
pkgs/go/github.com_mark3labs_mcp-go@v0.37.1-0.20250812151906-9f16336f83e1/examples/custom_context/main.go:32
	return withAuthKey(ctx, os.Getenv("API_KEY"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low egress tooling Excluded from app score unreachable #336a5adfd4a7921d Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/go/github.com_mark3labs_mcp-go@v0.37.1-0.20250812151906-9f16336f83e1/examples/custom_context/main.go:54
	req, err := http.NewRequestWithContext(ctx, "GET", "https://httpbin.org/anything", nil)

Data is sent to a hardcoded external endpoint; review what leaves the process.

Fix: Verify the destination and that only non-sensitive data is sent; pin and audit the dependency.

low env_fs tooling Excluded from app score unreachable #b2f33fc3ec6cf5fa Environment-variable access.
pkgs/go/github.com_mark3labs_mcp-go@v0.37.1-0.20250812151906-9f16336f83e1/examples/oauth_client/main.go:30
		ClientID:     os.Getenv("MCP_CLIENT_ID"),

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs tooling Excluded from app score unreachable #e5f1dfa7b575ea68 Environment-variable access.
pkgs/go/github.com_mark3labs_mcp-go@v0.37.1-0.20250812151906-9f16336f83e1/examples/oauth_client/main.go:31
		ClientSecret: os.Getenv("MCP_CLIENT_SECRET"),

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #88fd5c806456213e Filesystem access.
pkgs/go/github.com_mark3labs_mcp-go@v0.37.1-0.20250812151906-9f16336f83e1/server/internal/gen/main.go:52
	processedContent, err := os.ReadFile(tempFilePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #054583a28767aa67 Filesystem access.
pkgs/go/github.com_mark3labs_mcp-go@v0.37.1-0.20250812151906-9f16336f83e1/server/internal/gen/main.go:62
		destFile, err := os.Create(filepath.Join(destPath, fileName))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/maypok86/otter/v2

go dependency
expand_more 4 low-confidence finding(s)
low env_fs dependency Excluded from app score #9fa76d9c7b1d4a67 Filesystem access.
pkgs/go/[email protected]/cmd/generator/main.go:661
	f, err := os.Create(filePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #9a3980c2317a0872 Filesystem access.
pkgs/go/[email protected]/cmd/generator/main.go:844
	f, err := os.Create(managerPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6542da07fe89b685 Filesystem access.
pkgs/go/[email protected]/persistence.go:31
	file, err := os.Open(filePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6bed89a6b782701c Filesystem access.
pkgs/go/[email protected]/persistence.go:115
	file, err := os.Create(filePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/nyaruka/phonenumbers

go dependency
expand_more 2 low-confidence finding(s)
low env_fs dependency Excluded from app score #cebad503840194c6 Filesystem access.
pkgs/go/[email protected]/cmd/buildmetadata/main.go:125
	err := ioutil.WriteFile(filePath, data, os.FileMode(0664))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #fb44f4a57fadf5d2 Filesystem access.
pkgs/go/[email protected]/cmd/buildmetadata/main.go:437
		body, err := ioutil.ReadFile(file)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/parquet-go/parquet-go

go dependency
expand_more 3 low-confidence finding(s)
low env_fs dependency Excluded from app score #f4facd7595527ef4 Environment-variable access.
pkgs/go/[email protected]/internal/debug/debug.go:76
	for arg := range strings.SplitSeq(os.Getenv("PARQUETGODEBUG"), ",") {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #079e3317f8b6450c Filesystem access.
pkgs/go/[email protected]/parquet.go:54
	f, err := os.Open(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #5685c6c92bfe0588 Filesystem access.
pkgs/go/[email protected]/parquet.go:87
	f, err := os.Create(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/prometheus/client_golang

go dependency
expand_more 3 low-confidence finding(s)
low env_fs dependency Excluded from app score #4a80548aec8cb4c0 Filesystem access.
pkgs/go/[email protected]/prometheus/collectors/gen_go_collector_set.go:105
	if err := os.WriteFile(fname, result, 0o644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #bbd77fc286de6b41 Filesystem access.
pkgs/go/[email protected]/prometheus/gen_go_collector_metrics_set.go:102
	if err := os.WriteFile(fname, result, 0o644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #61a70462b5f8bb9f Filesystem access.
pkgs/go/[email protected]/prometheus/process_collector.go:166
		content, err := os.ReadFile(pidFilePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/prometheus/common

go dependency
expand_more 6 low-confidence finding(s)
low env_fs dependency Excluded from app score #b52de884f45eb17a Filesystem access.
pkgs/go/[email protected]/config/generate.go:172
	if err := os.WriteFile(fmt.Sprintf("%s.crt", path), b.Bytes(), 0o644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #17ebce7d182f79a3 Filesystem access.
pkgs/go/[email protected]/config/generate.go:181
	if err := os.WriteFile(fmt.Sprintf("%s.key", path), b.Bytes(), 0o644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #20c8c15173ff4e7a Filesystem access.
pkgs/go/[email protected]/config/generate.go:241
	if err := os.WriteFile("testdata/tls-ca-chain.pem", b.Bytes(), 0o644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #031d8244e45e687b Filesystem access.
pkgs/go/[email protected]/config/headers.go:124
			b, err := os.ReadFile(v)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ffebc26e717c0b6b Filesystem access.
pkgs/go/[email protected]/config/http_config.go:287
	content, err := os.ReadFile(filename)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c76abec0611233c0 Filesystem access.
pkgs/go/[email protected]/config/http_config.go:746
	fileBytes, err := os.ReadFile(s.file)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/sirupsen/logrus

go dependency
expand_more 2 low-confidence finding(s)
low env_fs dependency Excluded from app score #17f9153c837a9d75 Environment-variable access.
pkgs/go/[email protected]/text_formatter.go:121
		switch force, ok := os.LookupEnv("CLICOLOR_FORCE"); {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c9416e250044df93 Environment-variable access.
pkgs/go/[email protected]/text_formatter.go:124
		case ok && force == "0", os.Getenv("CLICOLOR") == "0":

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/spf13/cobra

go dependency
expand_more 16 low-confidence finding(s)
low env_fs dependency Excluded from app score #3e8aabd9e878a06f Environment-variable access.
pkgs/go/[email protected]/active_help.go:48
	activeHelpCfg := os.Getenv(activeHelpGlobalEnvVar)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c3530bc481c0cf06 Environment-variable access.
pkgs/go/[email protected]/active_help.go:50
		activeHelpCfg = os.Getenv(activeHelpEnvVar(cmd.Root().Name()))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #4284952c8b93a51f Filesystem access.
pkgs/go/[email protected]/bash_completions.go:702
	outFile, err := os.Create(filename)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f716e249f8a2b401 Filesystem access.
pkgs/go/[email protected]/bash_completionsV2.go:383
	outFile, err := os.Create(filename)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #cf1fa286296a16b9 Environment-variable access.
pkgs/go/[email protected]/completions.go:876
	if path := os.Getenv("BASH_COMP_DEBUG_FILE"); path != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #64fb7f5c0a621002 Filesystem access.
pkgs/go/[email protected]/completions.go:877
		f, err := os.OpenFile(path,
			os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #79eaecbb7d109e75 Environment-variable access.
pkgs/go/[email protected]/completions.go:934
	v := os.Getenv(configEnvVar(cmd.Root().Name(), suffix))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #0f99730635a6471f Environment-variable access.
pkgs/go/[email protected]/completions.go:936
		v = os.Getenv(configEnvVar(configEnvVarGlobalPrefix, suffix))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f12ec4de2de0586a Filesystem access.
pkgs/go/[email protected]/doc/man_docs.go:72
	f, err := os.Create(filename)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #aa1dfad39d22804e Environment-variable access.
pkgs/go/[email protected]/doc/man_docs.go:127
		if epoch := os.Getenv("SOURCE_DATE_EPOCH"); epoch != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c32f390b9bb5fa68 Filesystem access.
pkgs/go/[email protected]/doc/md_docs.go:145
	f, err := os.Create(filename)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #cc14973b1f43d5d7 Filesystem access.
pkgs/go/[email protected]/doc/rest_docs.go:157
	f, err := os.Create(filename)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #05f832d5be668ebb Filesystem access.
pkgs/go/[email protected]/doc/yaml_docs.go:72
	f, err := os.Create(filename)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #cb10c496e052448d Filesystem access.
pkgs/go/[email protected]/fish_completions.go:285
	outFile, err := os.Create(filename)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b7dff0bc710e6649 Filesystem access.
pkgs/go/[email protected]/powershell_completions.go:296
	outFile, err := os.Create(filename)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #52c61490b9ddd9d7 Filesystem access.
pkgs/go/[email protected]/zsh_completions.go:71
	outFile, err := os.Create(filename)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/tailor-platform/graphql

go dependency
expand_more 2 low-confidence finding(s)
low env_fs tooling reachable #aca8b1620da6745a Filesystem access.
pkgs/go/[email protected]/examples/http/main.go:103
	content, err := ioutil.ReadFile(fileName)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs tooling Excluded from app score unreachable #b1e7f7c53f28de7f Filesystem access.
pkgs/go/[email protected]/examples/httpdynamic/main.go:62
	content, err := ioutil.ReadFile(fileName)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/testcontainers/testcontainers-go

go dependency
expand_more 19 low-confidence finding(s)
low env_fs dependency Excluded from app score #39011559c4e7c398 Filesystem access.
pkgs/go/[email protected]/container.go:274
	if f, openErr := os.Open(fileLocation); openErr == nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e96ace5511cb32d0 Filesystem access.
pkgs/go/[email protected]/docker.go:680
	f, err := os.Open(hostFilePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d60aeb445f1e435b Environment-variable access.
pkgs/go/[email protected]/docker.go:1526
	host, exists := os.LookupEnv("TESTCONTAINERS_HOST_OVERRIDE")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #07d7b21c743a0817 Filesystem access.
pkgs/go/[email protected]/docker.go:1806
	outputFile, err := os.Create(output)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #025bed2c85286778 Environment-variable access.
pkgs/go/[email protected]/docker_auth.go:275
	if env := os.Getenv("DOCKER_AUTH_CONFIG"); env != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #7aa938e5e757d962 Filesystem access.
pkgs/go/[email protected]/file.go:17
	file, err := os.Open(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #61b4a1489b42f875 Filesystem access.
pkgs/go/[email protected]/file.go:87
			data, err := os.Open(file)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f845fe0ecfad9808 Environment-variable access.
pkgs/go/[email protected]/internal/config/config.go:114
		ryukDisabledEnv := os.Getenv("TESTCONTAINERS_RYUK_DISABLED")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #dea7380f47309bc7 Environment-variable access.
pkgs/go/[email protected]/internal/config/config.go:119
		hubImageNamePrefix := os.Getenv("TESTCONTAINERS_HUB_IMAGE_NAME_PREFIX")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #dfe756650910b9ed Environment-variable access.
pkgs/go/[email protected]/internal/config/config.go:124
		ryukPrivilegedEnv := os.Getenv("TESTCONTAINERS_RYUK_CONTAINER_PRIVILEGED")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #2dcad041cad087a9 Environment-variable access.
pkgs/go/[email protected]/internal/config/config.go:176
	value := os.Getenv(envVar)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #fa1f5c634b56f334 Environment-variable access.
pkgs/go/[email protected]/internal/config/config.go:184
	return os.Getenv(prefix + envVar)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #8bb8771a6568b5e3 Environment-variable access.
pkgs/go/[email protected]/internal/core/docker_host.go:244
	if dockerHostPath := os.Getenv("DOCKER_HOST"); dockerHostPath != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #8790743ae488ad28 Environment-variable access.
pkgs/go/[email protected]/internal/core/docker_host.go:279
	if dockerHostPath, exists := os.LookupEnv("TESTCONTAINERS_DOCKER_SOCKET_OVERRIDE"); exists {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #2b423393fae0e0ee Environment-variable access.
pkgs/go/[email protected]/internal/core/docker_rootless.go:29
	return os.Getenv("GOOS") == "windows" || runtime.GOOS == "windows"

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c3e5ba839fc1287c Environment-variable access.
pkgs/go/[email protected]/internal/core/docker_rootless.go:101
	xdgRuntimeDir, exists := os.LookupEnv("XDG_RUNTIME_DIR")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b6827b4c6caf06d8 Filesystem access.
pkgs/go/[email protected]/internal/core/images.go:31
	file, err := os.Open(dockerfile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #5293190eded6dcb8 Environment-variable access.
pkgs/go/[email protected]/provider.go:108
	if pt == ProviderDefault && strings.Contains(os.Getenv("DOCKER_HOST"), "podman.sock") {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #52a84708e1bb743a Environment-variable access.
pkgs/go/[email protected]/reaper.go:99
	if port := os.Getenv("RYUK_PORT"); port != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/urfave/cli/v2

go dependency
expand_more 7 low-confidence finding(s)
low env_fs dependency Excluded from app score #ed734b54700cb57e Filesystem access.
pkgs/go/[email protected]/altsrc/yaml_file_loader.go:79
		return os.ReadFile(filePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3bf52ab562c5f3a2 Filesystem access.
pkgs/go/[email protected]/altsrc/yaml_file_loader.go:85
		return os.ReadFile(filePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6620bb06538cebe5 Environment-variable access.
pkgs/go/[email protected]/flag.go:295
	if runtime.GOOS != "windows" || os.Getenv("PSHOME") != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ec5ec57b5cc96bbc Filesystem access.
pkgs/go/[email protected]/flag.go:387
			if data, err := os.ReadFile(fileVar); err == nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d02d96f27d93ba07 Environment-variable access.
pkgs/go/[email protected]/help.go:153
		if strings.HasSuffix(os.Getenv("0"), "zsh") {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #4a9ff8e31a9c2297 Environment-variable access.
pkgs/go/[email protected]/help.go:391
			if os.Getenv("CLI_TEMPLATE_ERROR_DEBUG") != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #392e06a3d135889a Environment-variable access.
pkgs/go/[email protected]/help.go:401
		if os.Getenv("CLI_TEMPLATE_ERROR_DEBUG") != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/weaviate/contextionary

go dependency
expand_more 13 low-confidence finding(s)
low env_fs dependency Excluded from app score #cc4185571a10a06a Filesystem access.
pkgs/go/[email protected]/compoundsplitting/dictionary.go:20
	file, err := os.Open(contextionaryDictFile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #41bc873d412ff54d Filesystem access.
pkgs/go/[email protected]/contextionary/core/generator/generator.go:55
	file, err := os.Open(options.VectorCSVPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e1201450a58b35ba Filesystem access.
pkgs/go/[email protected]/contextionary/core/generator/generator.go:123
	file, err := os.Create(outputFileName)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e6ecb1aa6b8f41ec Filesystem access.
pkgs/go/[email protected]/contextionary/core/mmapped.go:189
	file, err := os.Open(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d5f1411a910c081a Filesystem access.
pkgs/go/[email protected]/contextionary/core/stopwords/detector.go:33
	file, err := os.Open(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #182534019e15da0d Filesystem access.
pkgs/go/[email protected]/contextionary/core/wordlist.go:39
	file, err := os.Open(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #970a9764eaaad42e Filesystem access.
pkgs/go/[email protected]/preprocessing/dictionary_pre_processing.go:25
	out, err := os.Create(outputFile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #05c89955f97db070 Filesystem access.
pkgs/go/[email protected]/preprocessing/dictionary_pre_processing.go:61
	data, readFileErr := ioutil.ReadFile(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d17c49eada4abc3e Environment-variable access.
pkgs/go/[email protected]/server/config/config.go:148
	value := os.Getenv(varName)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #24a60525f7364ee6 Environment-variable access.
pkgs/go/[email protected]/server/config/config.go:165
	value := os.Getenv(varName)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3c3428ed1051ddc7 Environment-variable access.
pkgs/go/[email protected]/server/config/config.go:182
	value := os.Getenv(varName)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #271ce6b41fd1ecca Environment-variable access.
pkgs/go/[email protected]/server/config/config.go:191
	value := os.Getenv(varName)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d94283d6f3fb95a0 Environment-variable access.
pkgs/go/[email protected]/server/config/config.go:202
	value := os.Getenv(varName)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/weaviate/s5cmd/v2

go dependency
expand_more 7 low-confidence finding(s)
low env_fs dependency Excluded from app score #44b1c3e11ddb0eea Environment-variable access.
pkgs/go/[email protected]/command/app.go:157
			printAutocompletionInstructions(os.Getenv("SHELL"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3b588aa11e93632a Environment-variable access.
pkgs/go/[email protected]/command/auto_complete.go:112
			shell := filepath.Base(os.Getenv("SHELL"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #494363ffb8a8e20a Environment-variable access.
pkgs/go/[email protected]/command/mb.go:62
			shell := filepath.Base(os.Getenv("SHELL"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #859bb1416bbf1948 Filesystem access.
pkgs/go/[email protected]/command/run.go:52
				f, err := os.Open(c.Args().First())

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #59cde0d2d7e06701 Filesystem access.
pkgs/go/[email protected]/storage/fs.go:224
	return os.Create(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b384501c4d7a9d2b Filesystem access.
pkgs/go/[email protected]/storage/fs.go:229
	file, err := os.OpenFile(path, os.O_RDONLY, 0644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ff89508ce29a6b7e Environment-variable access.
pkgs/go/[email protected]/storage/s3.go:1248
		loadCfg := os.Getenv("AWS_SDK_LOAD_CONFIG")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/weaviate/tiktoken-go

go dependency
expand_more 7 low-confidence finding(s)
low env_fs dependency Excluded from app score #20173b33f194518b Filesystem access.
pkgs/go/[email protected]/load.go:23
		file, err := os.Open(blobpath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #0d524c245f3296f4 Environment-variable access.
pkgs/go/[email protected]/load.go:41
	if os.Getenv("TIKTOKEN_CACHE_DIR") != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #96a29e2f3a0d51c6 Environment-variable access.
pkgs/go/[email protected]/load.go:42
		cacheDir = os.Getenv("TIKTOKEN_CACHE_DIR")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #df230629db478fec Environment-variable access.
pkgs/go/[email protected]/load.go:43
	} else if os.Getenv("DATA_GYM_CACHE_DIR") != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a74650a34eb94565 Environment-variable access.
pkgs/go/[email protected]/load.go:44
		cacheDir = os.Getenv("DATA_GYM_CACHE_DIR")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #0cdb534746157f1d Filesystem access.
pkgs/go/[email protected]/load.go:58
		return ioutil.ReadFile(cachePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #310fe9a2e3ccb503 Filesystem access.
pkgs/go/[email protected]/load.go:68
	if err := ioutil.WriteFile(tmpFilename, contents, os.ModePerm); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

github.com/weaviate/weaviate-go-client/v5

go dependency
expand_more 2 low-confidence finding(s)
low env_fs dependency Excluded from app score #045c1d320e128481 Environment-variable access.
pkgs/go/github.com_weaviate_weaviate-go-client_v5@v5.7.3-0.20260413120914-0d665cebe735/test_deprecated/testsuite.go:38
	val := os.Getenv("EXTERNAL_WEAVIATE_RUNNING")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #1f9de119f9d535ed Environment-variable access.
pkgs/go/github.com_weaviate_weaviate-go-client_v5@v5.7.3-0.20260413120914-0d665cebe735/weaviate/testenv/environment.go:22
var EXTERNAL_WEAVIATE_RUNNING = os.Getenv("EXTERNAL_WEAVIATE_RUNNING")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

go.etcd.io/bbolt

go dependency
expand_more 15 low-confidence finding(s)
low env_fs dependency Excluded from app score #a82ae8e78745e30b Filesystem access.
pkgs/go/[email protected]/cmd/bbolt/command_surgery_meta.go:238
	f, err := os.OpenFile(dbPath, os.O_RDONLY, 0444)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #05a5baa6f6df2f8c Filesystem access.
pkgs/go/[email protected]/cmd/bbolt/command_surgery_meta.go:263
	f, err := os.OpenFile(dbPath, os.O_RDWR, 0666)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d4ff49efd353e2a4 Filesystem access.
pkgs/go/[email protected]/cmd/bbolt/main.go:284
	f, err := os.Open(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #dbf51d5d4d58abf9 Filesystem access.
pkgs/go/[email protected]/cmd/bbolt/main.go:420
	f, err := os.Open(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #7144a95024ae017a Filesystem access.
pkgs/go/[email protected]/cmd/bbolt/main.go:1499
		cpuprofile, err = os.Create(options.CPUProfile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3be405f95bfd2972 Filesystem access.
pkgs/go/[email protected]/cmd/bbolt/main.go:1513
		memprofile, err = os.Create(options.MemProfile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #32625931474802b2 Filesystem access.
pkgs/go/[email protected]/cmd/bbolt/main.go:1523
		blockprofile, err = os.Create(options.BlockProfile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #4a87e58bbb56ed88 Environment-variable access.
pkgs/go/[email protected]/internal/btesting/btesting.go:53
	if env := os.Getenv(TestFreelistType); env == string(bolt.FreelistMapType) {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c849356e55710ede Environment-variable access.
pkgs/go/[email protected]/internal/btesting/btesting.go:215
	strictModeEnabled := strings.ToLower(os.Getenv(TestEnableStrictMode))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3c6c255a60f65ec2 Filesystem access.
pkgs/go/[email protected]/internal/common/utils.go:39
	srcDB, err := os.Open(srcPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #9fc3c0c25d5c7e0e Filesystem access.
pkgs/go/[email protected]/internal/common/utils.go:44
	dstDB, err := os.Create(dstPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #56d602d8c247d268 Environment-variable access.
pkgs/go/[email protected]/internal/common/verify.go:20
	return strings.ToLower(os.Getenv(ENV_VERIFY))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f8561d9fb6f17842 Filesystem access.
pkgs/go/[email protected]/internal/guts_cli/guts_cli.go:29
	f, err := os.Open(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a4ee614150362b61 Filesystem access.
pkgs/go/[email protected]/internal/guts_cli/guts_cli.go:82
	f, err := os.OpenFile(path, os.O_WRONLY, 0)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b017ff55501c836f Filesystem access.
pkgs/go/[email protected]/internal/guts_cli/guts_cli.go:95
	f, err := os.Open(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc

go dependency
expand_more 1 low-confidence finding(s)
low env_fs dependency Excluded from app score #65bc894174301de0 Environment-variable access.
pkgs/go/go.opentelemetry.io_otel_exporters_otlp_otlptrace_otlptracegrpc@v1.44.0/internal/x/x.go:46
		vRaw := os.Getenv(key)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp

go dependency
expand_more 1 low-confidence finding(s)
low env_fs dependency Excluded from app score #05e9ef3670810946 Environment-variable access.
pkgs/go/go.opentelemetry.io_otel_exporters_otlp_otlptrace_otlptracehttp@v1.43.0/internal/x/x.go:46
		vRaw := os.Getenv(key)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

go.opentelemetry.io/otel/sdk

go dependency
expand_more 10 low-confidence finding(s)
low env_fs dependency Excluded from app score #8d122aa7f882f6c0 Environment-variable access.
pkgs/go/[email protected]/internal/x/x.go:46
		vRaw := os.Getenv(key)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d428e91c25299bd6 Filesystem access.
pkgs/go/[email protected]/resource/container.go:47
		return os.Open(name)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a7999d8be5874dae Environment-variable access.
pkgs/go/[email protected]/resource/env.go:39
	attrs := strings.TrimSpace(os.Getenv(resourceAttrKey))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a646b2bcc4e199f6 Environment-variable access.
pkgs/go/[email protected]/resource/env.go:40
	svcName := strings.TrimSpace(os.Getenv(svcNameKey))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #84fd9d3a1fda0bca Filesystem access.
pkgs/go/[email protected]/resource/host_id_readfile.go:11
	b, err := os.ReadFile(filename) // nolint:gosec // false positive

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a55be5181ad6549a Filesystem access.
pkgs/go/[email protected]/resource/os_unix.go:72
		file, err := os.Open(c)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #fb27416c53d28c3a Environment-variable access.
pkgs/go/[email protected]/trace/internal/env/env.go:64
		value := os.Getenv(key)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #59fd1384bfeeb999 Environment-variable access.
pkgs/go/[email protected]/trace/internal/env/env.go:84
	value := os.Getenv(key)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b952c002fc4adf52 Environment-variable access.
pkgs/go/[email protected]/trace/sampler_env.go:49
	sampler, ok := os.LookupEnv(tracesSamplerKey)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #edff72e82db7b1c3 Environment-variable access.
pkgs/go/[email protected]/trace/sampler_env.go:55
	samplerArg, hasSamplerArg := os.LookupEnv(tracesSamplerArgKey)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

go.opentelemetry.io/otel/trace

go dependency
expand_more 1 low-confidence finding(s)
low env_fs dependency Excluded from app score #69f01eafd6583bb9 Environment-variable access.
pkgs/go/[email protected]/auto.go:665
		strV := os.Getenv(key)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

go.uber.org/automaxprocs

go dependency
expand_more 5 low-confidence finding(s)
low env_fs dependency Excluded from app score #13d81a4bb6c28b1e Filesystem access.
pkgs/go/[email protected]/internal/cgroups/cgroup.go:56
	paramFile, err := os.Open(cg.ParamPath(param))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #4828d5a700b0de07 Filesystem access.
pkgs/go/[email protected]/internal/cgroups/cgroups2.go:129
	cpuMaxParams, err := os.Open(path.Join(cg.mountPoint, cg.groupPath, cg.cpuMaxFile))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #1fb81dcf9049d945 Filesystem access.
pkgs/go/[email protected]/internal/cgroups/mountpoint.go:152
	mountInfoFile, err := os.Open(procPathMountInfo)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a46615d3c9bb75cb Filesystem access.
pkgs/go/[email protected]/internal/cgroups/subsys.go:79
	cgroupFile, err := os.Open(procPathCGroup)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #002a91860d363a2d Environment-variable access.
pkgs/go/[email protected]/maxprocs/maxprocs.go:109
	if max, exists := os.LookupEnv(_maxProcsKey); exists {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

golang.org/x/net

go dependency
expand_more 28 low-confidence finding(s)
low env_fs dependency Excluded from app score #fe9e34f1a9060754 Filesystem access.
pkgs/go/[email protected]/html/atom/gen.go:50
	if err := os.WriteFile(name, b, 0644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #7680a10b950cd3c0 Environment-variable access.
pkgs/go/[email protected]/http/httpproxy/proxy.go:95
		CGI:        os.Getenv("REQUEST_METHOD") != "",

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #deac42c71a56b0d0 Environment-variable access.
pkgs/go/[email protected]/http/httpproxy/proxy.go:101
		if val := os.Getenv(n); val != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #5a0b1150e96ae615 Environment-variable access.
pkgs/go/[email protected]/http2/gotrack.go:21
var DebugGoroutines = os.Getenv("DEBUG_HTTP2_GOROUTINES") == "1"

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #cd5825de3a70164b Environment-variable access.
pkgs/go/[email protected]/http2/h2c/h2c.go:52
	e := os.Getenv("GODEBUG")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #8455404c4bb4b9f4 Filesystem access.
pkgs/go/[email protected]/http2/hpack/gen.go:178
	if err := os.WriteFile(name, b, 0644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e7fb0c21f425d685 Environment-variable access.
pkgs/go/[email protected]/http2/http2.go:53
	e := os.Getenv("GODEBUG")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a1f46a9e2018b185 Filesystem access.
pkgs/go/[email protected]/internal/iana/gen.go:71
	if err := os.WriteFile("const.go", b, 0644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d433dfd949e93d6f Environment-variable access.
pkgs/go/[email protected]/internal/quic/cmd/interop/main.go:67
	if keylog := os.Getenv("SSLKEYLOGFILE"); keylog != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #82b3ab5dcbf17269 Filesystem access.
pkgs/go/[email protected]/internal/quic/cmd/interop/main.go:68
		f, err := os.Create(keylog)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #16b2057129b4629f Environment-variable access.
pkgs/go/[email protected]/internal/quic/cmd/interop/main.go:76
	testcase := os.Getenv("TESTCASE")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e80516ab2de30314 Filesystem access.
pkgs/go/[email protected]/internal/quic/cmd/interop/main.go:216
	f, err := os.Open(filepath.Join(*root, string(req)))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #de1b6f0488db4070 Filesystem access.
pkgs/go/[email protected]/internal/quic/cmd/interop/main.go:267
	file, err := os.Create(filepath.Join(*output, u.Path[1:]))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #aa60073ecf030f1c Filesystem access.
pkgs/go/[email protected]/ipv4/gen.go:41
	f, err := os.Open(defs)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f1d30c0b6eefe823 Filesystem access.
pkgs/go/[email protected]/ipv4/gen.go:63
	if err := os.WriteFile(zsys, b, 0644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #7aa3d1ad31e88c3f Filesystem access.
pkgs/go/[email protected]/ipv4/gen.go:102
	if err := os.WriteFile("iana.go", b, 0644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a587a6c6fdc7f929 Filesystem access.
pkgs/go/[email protected]/ipv6/gen.go:41
	f, err := os.Open(defs)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #2463f4e2905f3dc9 Filesystem access.
pkgs/go/[email protected]/ipv6/gen.go:63
	if err := os.WriteFile(zsys, b, 0644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #8b094208018c91b8 Filesystem access.
pkgs/go/[email protected]/ipv6/gen.go:102
	if err := os.WriteFile("iana.go", b, 0644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e42d701ad02ab877 Environment-variable access.
pkgs/go/[email protected]/proxy/proxy.go:138
		e.val = os.Getenv(n)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #32210f5fd4bdb799 Filesystem access.
pkgs/go/[email protected]/publicsuffix/gen.go:275
	return os.WriteFile(filename, b, 0644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low egress dependency Excluded from app score #f68971e227f500f8 Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/go/[email protected]/publicsuffix/gen.go:279
	res, err := http.Get(gitCommitURL)

Data is sent to a hardcoded external endpoint; review what leaves the process.

Fix: Verify the destination and that only non-sensitive data is sent; pin and audit the dependency.

low env_fs dependency Excluded from app score #32279e1af89e9c9a Filesystem access.
pkgs/go/[email protected]/publicsuffix/gen.go:320
	if err := os.WriteFile("data/text", []byte(combinedText), 0666); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #2695d0ff7e8e70b2 Filesystem access.
pkgs/go/[email protected]/publicsuffix/gen.go:333
	if err := os.WriteFile("data/nodes", nodes, 0666); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6d3f7e26cc8a3619 Filesystem access.
pkgs/go/[email protected]/publicsuffix/gen.go:341
	if err := os.WriteFile("data/children", children, 0666); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d6b66c875bfb2e37 Environment-variable access.
pkgs/go/[email protected]/quic/log.go:19
	s := os.Getenv("GODEBUG")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #cf4053222e92eb20 Filesystem access.
pkgs/go/[email protected]/quic/qlog/qlog.go:181
		w, err = os.OpenFile(filepath.Join(opts.Dir, filename), os.O_CREATE|os.O_EXCL|os.O_WRONLY, 0666)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #fc20b6bcb8edd76f Filesystem access.
pkgs/go/[email protected]/webdav/file.go:95
	f, err := os.OpenFile(name, flag, perm)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

golang.org/x/oauth2

go dependency
expand_more 12 low-confidence finding(s)
low env_fs dependency Excluded from app score #d9a098c62b16e290 Environment-variable access.
pkgs/go/[email protected]/google/default.go:237
	if filename := os.Getenv(envVar); filename != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #7d7831c26ca6d9ba Filesystem access.
pkgs/go/[email protected]/google/default.go:247
	if b, err := os.ReadFile(filename); err == nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #aaa3d1619f3f250a Environment-variable access.
pkgs/go/[email protected]/google/default.go:429
		return filepath.Join(os.Getenv("APPDATA"), "gcloud", f)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #9512c02832ae3915 Filesystem access.
pkgs/go/[email protected]/google/default.go:435
	b, err := os.ReadFile(filename)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b5d7b3806c240583 Environment-variable access.
pkgs/go/[email protected]/google/externalaccount/executablecredsource.go:98
	return os.Environ()

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c70d2fc4829f2c64 Environment-variable access.
pkgs/go/[email protected]/google/externalaccount/executablecredsource.go:102
	return os.Getenv(key)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #dbdb9244ce937e07 Filesystem access.
pkgs/go/[email protected]/google/externalaccount/executablecredsource.go:253
	file, err := os.Open(cs.OutputFile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3b042fe38ce45ea7 Filesystem access.
pkgs/go/[email protected]/google/externalaccount/filecredsource.go:26
	tokenFile, err := os.Open(cs.File)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #309ebda1bcd5aa65 Filesystem access.
pkgs/go/[email protected]/google/sdk.go:60
	f, err := os.Open(credentialsPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #1b9f1df687fb6bcb Filesystem access.
pkgs/go/[email protected]/google/sdk.go:75
		f, err := os.Open(propertiesPath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #70ec5595fed055aa Environment-variable access.
pkgs/go/[email protected]/google/sdk.go:182
		return filepath.Join(os.Getenv("APPDATA"), "gcloud"), nil

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d56c4b9d46c959f6 Environment-variable access.
pkgs/go/[email protected]/google/sdk.go:193
	if v := os.Getenv("HOME"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

golang.org/x/sys

go dependency
expand_more 59 low-confidence finding(s)
low env_fs dependency Excluded from app score #bc3f1494d1aaaf0d Environment-variable access.
pkgs/go/[email protected]/cpu/cpu.go:276
	env := os.Getenv("GODEBUG")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #875803a2eca24513 Filesystem access.
pkgs/go/[email protected]/cpu/hwcap_linux.go:42
	buf, err := os.ReadFile(procAuxv)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #606b688684cdf6a4 Filesystem access.
pkgs/go/[email protected]/cpu/proc_cpuinfo_linux.go:17
	f, err := os.Open("/proc/cpuinfo")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ae02738902824927 Environment-variable access.
pkgs/go/[email protected]/plan9/mksyscall.go:90
	goos := os.Getenv("GOOS")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ae209e06d2fdc79d Environment-variable access.
pkgs/go/[email protected]/plan9/mksyscall.go:91
	goarch := os.Getenv("GOARCH_TARGET")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #19ca3685d357dbbd Environment-variable access.
pkgs/go/[email protected]/plan9/mksyscall.go:93
		goarch = os.Getenv("GOARCH")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #326692bcc0e68164 Environment-variable access.
pkgs/go/[email protected]/plan9/mksyscall.go:98
		if os.Getenv("GOLANG_SYS_BUILD") != "docker" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #527aaba61d046910 Filesystem access.
pkgs/go/[email protected]/plan9/mksyscall.go:127
		file, err := os.Open(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e74e0dd8ec5a153f Filesystem access.
pkgs/go/[email protected]/unix/internal/mkmerge/mkmerge.go:443
		src, err := os.ReadFile(file)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d11b8c54213dd1e6 Filesystem access.
pkgs/go/[email protected]/unix/internal/mkmerge/mkmerge.go:467
	f, err := os.Create(mergedFile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #4c9dc575fc9ce136 Filesystem access.
pkgs/go/[email protected]/unix/internal/mkmerge/mkmerge.go:494
		err = os.WriteFile(inFile.name, src, 0644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a4b01c43d3e18df4 Environment-variable access.
pkgs/go/[email protected]/unix/linux/mkall.go:182
	if os.Getenv("GOLANG_SYS_BUILD") != "docker" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #97986f72ea8b52da Filesystem access.
pkgs/go/[email protected]/unix/linux/mkall.go:317
	if fmtCmd.Stdout, err = os.Create(outputFile); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #643c555e1b23f3c2 Environment-variable access.
pkgs/go/[email protected]/unix/linux/mkall.go:337
	t.env = append(os.Environ(), fmt.Sprintf("%s=%s", "GOOS", GOOS))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #525ee63dcf285b51 Filesystem access.
pkgs/go/[email protected]/unix/linux/mkall.go:447
	if file, err := os.Create(stubsFile); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f6b2ad769dc23221 Filesystem access.
pkgs/go/[email protected]/unix/linux/mkall.go:482
	abiFile, err := os.Create(filepath.Join(abiDir, "abi.h"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b8d83838c7aa07f6 Filesystem access.
pkgs/go/[email protected]/unix/linux/mkall.go:631
	f, err := os.Open(file)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #dd98fe96290c6ee0 Filesystem access.
pkgs/go/[email protected]/unix/linux/mkall.go:756
	f, err := os.Create(fmt.Sprintf("zptrace_%s_linux.go", archName))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #51647278fddab933 Filesystem access.
pkgs/go/[email protected]/unix/linux/mkall.go:784
	f, err := os.Create(fmt.Sprintf("zptrace_linux_%s.go", arch))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a6e4cd1b813914b4 Filesystem access.
pkgs/go/[email protected]/unix/linux/mkall.go:819
	data, err := os.ReadFile(filename)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3212d83692565265 Environment-variable access.
pkgs/go/[email protected]/unix/linux/mksysnum.go:100
	goos = os.Getenv("GOOS")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6fd4b30ecad66300 Environment-variable access.
pkgs/go/[email protected]/unix/linux/mksysnum.go:101
	goarch = os.Getenv("GOARCH_TARGET")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #073791e4ec893d00 Environment-variable access.
pkgs/go/[email protected]/unix/linux/mksysnum.go:103
		goarch = os.Getenv("GOARCH")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #01641d2d30eea2b2 Environment-variable access.
pkgs/go/[email protected]/unix/linux/mksysnum.go:111
	if os.Getenv("GOLANG_SYS_BUILD") != "docker" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #964c7f9c7ba048ed Environment-variable access.
pkgs/go/[email protected]/unix/linux/mksysnum.go:117
	cc := os.Getenv("CC")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #fbf0abbf354b45e3 Filesystem access.
pkgs/go/[email protected]/unix/mkasm.go:36
		in, err := os.ReadFile(inFileName)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #45f98729d6135aac Filesystem access.
pkgs/go/[email protected]/unix/mkasm.go:73
	if err := os.WriteFile(outFileName, out.Bytes(), 0644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #de8e1933691373e7 Filesystem access.
pkgs/go/[email protected]/unix/mkasm.go:110
	if err := os.WriteFile(fileName, out.Bytes(), 0644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #df2ca4536c04d007 Environment-variable access.
pkgs/go/[email protected]/unix/mkpost.go:26
	goos := os.Getenv("GOOS_TARGET")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b3b4a2244c31922c Environment-variable access.
pkgs/go/[email protected]/unix/mkpost.go:28
		goos = os.Getenv("GOOS")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #657adef415b014b4 Environment-variable access.
pkgs/go/[email protected]/unix/mkpost.go:30
	goarch := os.Getenv("GOARCH_TARGET")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #4710d863b51a18b9 Environment-variable access.
pkgs/go/[email protected]/unix/mkpost.go:32
		goarch = os.Getenv("GOARCH")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a228837abe5ca08e Environment-variable access.
pkgs/go/[email protected]/unix/mkpost.go:36
		if os.Getenv("GOLANG_SYS_BUILD") != "docker" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a2b9702bb495c04b Environment-variable access.
pkgs/go/[email protected]/unix/mksyscall.go:104
	goos := os.Getenv("GOOS_TARGET")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #1057f23e185bb398 Environment-variable access.
pkgs/go/[email protected]/unix/mksyscall.go:106
		goos = os.Getenv("GOOS")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #756b94283f966746 Environment-variable access.
pkgs/go/[email protected]/unix/mksyscall.go:115
		if os.Getenv("GOLANG_SYS_BUILD") != "docker" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #4a14112542483fab Filesystem access.
pkgs/go/[email protected]/unix/mksyscall.go:145
		file, err := os.Open(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #1d36d582753c5e9e Filesystem access.
pkgs/go/[email protected]/unix/mksyscall_aix_ppc.go:100
		file, err := os.Open(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #88d67091b01b9aa3 Filesystem access.
pkgs/go/[email protected]/unix/mksyscall_aix_ppc64.go:148
		file, err := os.Open(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3676583395b6d0c5 Filesystem access.
pkgs/go/[email protected]/unix/mksyscall_aix_ppc64.go:521
	err := os.WriteFile("zsyscall_aix_ppc64.go",
		[]byte(fmt.Sprintf(srcTemplate1, cmdLine(), goBuildTags(), pack, imp, textcommon)),
		0644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #2c2ddddd89d964c2 Filesystem access.
pkgs/go/[email protected]/unix/mksyscall_aix_ppc64.go:532
	err = os.WriteFile("zsyscall_aix_ppc64_gc.go",
		[]byte(fmt.Sprintf(srcTemplate2, cmdLine(), goBuildTags(), pack, imp, dynimports, linknames, vardecls, textgc)),
		0644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #5584b1fae453f471 Filesystem access.
pkgs/go/[email protected]/unix/mksyscall_aix_ppc64.go:541
	err = os.WriteFile("zsyscall_aix_ppc64_gccgo.go",
		[]byte(fmt.Sprintf(srcTemplate3, cmdLine(), goBuildTags(), pack, cExtern, imp, textgccgo)),
		0644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #928ce6957f4d45c0 Filesystem access.
pkgs/go/[email protected]/unix/mksyscall_solaris.go:103
		file, err := os.Open(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #15d0f00d9f4a60e1 Filesystem access.
pkgs/go/[email protected]/unix/mksyscall_zos_s390x.go:208
	f, err := os.Open(*inputgo)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #9118dd8312a918c0 Filesystem access.
pkgs/go/[email protected]/unix/mksyscall_zos_s390x.go:216
	fasm, asmerr := os.Create(*outasm)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #d5cd1f6aa913f34e Filesystem access.
pkgs/go/[email protected]/unix/mksyscall_zos_s390x.go:230
	fgo, goerr := os.Create(*outputgo)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ea055aeb4411910c Filesystem access.
pkgs/go/[email protected]/unix/mksyscall_zos_s390x.go:272
	f, err := os.Create(file)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a586fafe16c83b17 Environment-variable access.
pkgs/go/[email protected]/unix/mksysctl_openbsd.go:122
	goos = os.Getenv("GOOS_TARGET")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ca48664352b01d69 Environment-variable access.
pkgs/go/[email protected]/unix/mksysctl_openbsd.go:124
		goos = os.Getenv("GOOS")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #8f4a82a0194f101a Environment-variable access.
pkgs/go/[email protected]/unix/mksysctl_openbsd.go:127
	goarch = os.Getenv("GOARCH_TARGET")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6a6d0ce59cc11258 Environment-variable access.
pkgs/go/[email protected]/unix/mksysctl_openbsd.go:129
		goarch = os.Getenv("GOARCH")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #fc9dc1e3ca9c863e Filesystem access.
pkgs/go/[email protected]/unix/mksysctl_openbsd.go:259
		file, err := os.Open(filepath.Join("/usr/include", header))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #01ae5dbff3265733 Filesystem access.
pkgs/go/[email protected]/unix/mksysnum.go:70
	file, err := os.Open(os.Args[1])

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #45a332833191a16f Environment-variable access.
pkgs/go/[email protected]/unix/mksysnum.go:90
	goos = os.Getenv("GOOS_TARGET")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6517d0835be0b26c Environment-variable access.
pkgs/go/[email protected]/unix/mksysnum.go:92
		goos = os.Getenv("GOOS")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #30f1bd4e57b87e59 Environment-variable access.
pkgs/go/[email protected]/unix/mksysnum.go:95
	goarch = os.Getenv("GOARCH_TARGET")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #899fbfc3c84f5305 Environment-variable access.
pkgs/go/[email protected]/unix/mksysnum.go:97
		goarch = os.Getenv("GOARCH")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c195ddd988d8d103 Filesystem access.
pkgs/go/[email protected]/windows/mkwinsyscall/mkwinsyscall.go:710
	file, err := os.Open(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #389024001bb2b378 Filesystem access.
pkgs/go/[email protected]/windows/mkwinsyscall/mkwinsyscall.go:894
		err = os.WriteFile(*filename, data, 0644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

golang.org/x/text

go dependency
expand_more 31 low-confidence finding(s)
low env_fs dependency Excluded from app score #933384d9211f52d4 Filesystem access.
pkgs/go/[email protected]/cmd/gotext/main.go:328
			if err := os.WriteFile("doc.go", b, 0666); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs tooling Excluded from app score unreachable #8837fd2a2beac74b Filesystem access.
pkgs/go/[email protected]/collate/tools/colcmp/colcmp.go:122
		f, err := os.Create(*cpuprofile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3fff301e46c592f5 Filesystem access.
pkgs/go/[email protected]/encoding/internal/enctest/enctest.go:160
	dst, err := os.ReadFile(dstFile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #550f639dfa834722 Filesystem access.
pkgs/go/[email protected]/encoding/internal/enctest/enctest.go:162
		if dst, err = os.ReadFile("../" + dstFile); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #868a9b1ec025dfeb Filesystem access.
pkgs/go/[email protected]/encoding/internal/enctest/enctest.go:166
	src, err := os.ReadFile(srcFile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a6c3311cff84e1df Filesystem access.
pkgs/go/[email protected]/encoding/internal/enctest/enctest.go:168
		if src, err = os.ReadFile("../" + srcFile); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low egress dependency Excluded from app score #73014bce599ef309 Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/go/[email protected]/encoding/korean/maketables.go:26
	res, err := http.Get("http://encoding.spec.whatwg.org/index-euc-kr.txt")

Data is sent to a hardcoded external endpoint; review what leaves the process.

Fix: Verify the destination and that only non-sensitive data is sent; pin and audit the dependency.

low egress dependency Excluded from app score #2f8dd81bd81596a8 Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/go/[email protected]/encoding/simplifiedchinese/maketables.go:31
	res, err := http.Get("http://encoding.spec.whatwg.org/index-gb18030.txt")

Data is sent to a hardcoded external endpoint; review what leaves the process.

Fix: Verify the destination and that only non-sensitive data is sent; pin and audit the dependency.

low egress dependency Excluded from app score #e0ed1b83c278470f Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/go/[email protected]/encoding/simplifiedchinese/maketables.go:57
	res, err := http.Get("http://encoding.spec.whatwg.org/index-gbk.txt")

Data is sent to a hardcoded external endpoint; review what leaves the process.

Fix: Verify the destination and that only non-sensitive data is sent; pin and audit the dependency.

low egress dependency Excluded from app score #774be4a2caf2db63 Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/go/[email protected]/encoding/traditionalchinese/maketables.go:26
	res, err := http.Get("http://encoding.spec.whatwg.org/index-big5.txt")

Data is sent to a hardcoded external endpoint; review what leaves the process.

Fix: Verify the destination and that only non-sensitive data is sent; pin and audit the dependency.

low env_fs dependency Excluded from app score #7218559f7b188b91 Environment-variable access.
pkgs/go/[email protected]/gen.go:81
		goroot := os.Getenv("GOROOT")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ab358abe69b9af15 Filesystem access.
pkgs/go/[email protected]/gen.go:150
	w, err := os.OpenFile(file, os.O_APPEND|os.O_WRONLY, 0600)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #343462b210361a4e Filesystem access.
pkgs/go/[email protected]/gen.go:257
		b, err := os.ReadFile(file)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #87b75706dca7a3b8 Filesystem access.
pkgs/go/[email protected]/gen.go:276
		return os.WriteFile(file, b, 0666)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f9fa076f6a6dd56c Environment-variable access.
pkgs/go/[email protected]/internal/export/unicode/gen.go:45
	if v := os.Getenv("UNICODE_VERSION"); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #7decc414d3b3b824 Filesystem access.
pkgs/go/[email protected]/internal/gen/code.go:53
	f, err := os.Create(filename)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #02cd3b8750875634 Filesystem access.
pkgs/go/[email protected]/internal/gen/code.go:73
	f, err := os.Create(filename)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e03087400319381f Environment-variable access.
pkgs/go/[email protected]/internal/gen/gen.go:57
	if v := os.Getenv(name); v != "" {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ed42cb7a54f03cf0 Filesystem access.
pkgs/go/[email protected]/internal/gen/gen.go:174
		os.WriteFile(readme, []byte(readmeTxt), permissions)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ffb27816cefe8944 Filesystem access.
pkgs/go/[email protected]/internal/gen/gen.go:207
	if f, err := os.Open(file); err == nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3925841d22e6c401 Filesystem access.
pkgs/go/[email protected]/internal/gen/gen.go:217
	if err := os.WriteFile(file, b, permissions); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6e569a9dfce2782d Filesystem access.
pkgs/go/[email protected]/internal/gen/gen.go:257
	w, err := os.Create(filename)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #dc0b5c50acd0434e Filesystem access.
pkgs/go/[email protected]/internal/gen/gen.go:284
		b, err := os.ReadFile(oldFile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #08ef1c3d6d272754 Filesystem access.
pkgs/go/[email protected]/internal/gen/gen.go:289
		err = os.WriteFile(oldFile, b, 0644)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #089d3b768f622cb9 Filesystem access.
pkgs/go/[email protected]/internal/gen/gen.go:305
	w, err := os.Create(filename)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #5abad67fabd1ad71 Filesystem access.
pkgs/go/[email protected]/internal/gen/gen.go:338
	src, err := os.ReadFile(inFile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #cabfed070ee74f77 Filesystem access.
pkgs/go/[email protected]/internal/testtext/codesize.go:34
	if err := os.WriteFile(filename, []byte(s), 0644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #5496d1684b2dbbc8 Filesystem access.
pkgs/go/[email protected]/message/pipeline/pipeline.go:231
		b, err := ioutil.ReadFile(file)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a0c8a337d9228f16 Filesystem access.
pkgs/go/[email protected]/message/pipeline/pipeline.go:362
		if err := ioutil.WriteFile(file, data, 0644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #2e9d203a6b2b5cb5 Filesystem access.
pkgs/go/[email protected]/message/pipeline/rewrite.go:53
				if w, err = os.Create(conf.Fset.File(f.Pos()).Name()); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #53e68f0544319c0e Filesystem access.
pkgs/go/[email protected]/unicode/cldr/decode.go:132
	return os.Open(pl[i])

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

gonum.org/v1/gonum

go dependency
expand_more 13 low-confidence finding(s)
low env_fs dependency Excluded from app score #a0f84e3902a806ea Environment-variable access.
pkgs/go/[email protected]/blas/testblas/benchautogen/autogen_bench_level1double.go:175
	gopath = os.Getenv("GOPATH")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #1a625a0e7f953428 Filesystem access.
pkgs/go/[email protected]/blas/testblas/benchautogen/autogen_bench_level1double.go:215
	f.file, f.err = os.Create(level1Filepath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #a72e3c3e8b903165 Filesystem access.
pkgs/go/[email protected]/dsp/window/cmd/leakage/leakage.go:198
		f, err := os.Open(*csv)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #2edcd6d72c41f29b Filesystem access.
pkgs/go/[email protected]/graph/formats/dot/dot.go:27
	buf, err := os.ReadFile(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #30bde5a6903ca241 Filesystem access.
pkgs/go/[email protected]/graph/formats/dot/internal/lexer/lexer.go:58
	src, err := os.ReadFile(fpath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #e550d462955105c6 Filesystem access.
pkgs/go/[email protected]/graph/formats/dot/internal/paste_copyright.go:45
		content, err := os.ReadFile(path)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6eb08de08f54a50e Filesystem access.
pkgs/go/[email protected]/graph/formats/dot/internal/paste_copyright.go:51
		return os.WriteFile(path, content, info.Mode())

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f98da284b243d3b2 Filesystem access.
pkgs/go/[email protected]/unit/constant/generate_constants.go:240
	f, err := os.Create(filename)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #2b65d2f93470593d Filesystem access.
pkgs/go/[email protected]/unit/constant/generate_constants.go:313
	f, err := os.Create(filename)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #53b6c59da6e5a180 Filesystem access.
pkgs/go/[email protected]/unit/constant/generate_defined_types.go:67
		b, err := os.ReadFile(fn)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #9fbe648c4e6700ed Filesystem access.
pkgs/go/[email protected]/unit/constant/generate_defined_types.go:92
	f, err := os.Create("defined_types.go")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #8e8a4e752c55ad30 Filesystem access.
pkgs/go/[email protected]/unit/generate_unit.go:546
	f, err := os.Create(filename)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #569a439a2d491330 Filesystem access.
pkgs/go/[email protected]/unit/generate_unit.go:647
	f, err := os.Create(filename)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

google.golang.org/grpc

go dependency
expand_more 49 low-confidence finding(s)
low env_fs dependency Excluded from app score #6ffa274efb6b46b3 Filesystem access.
pkgs/go/[email protected]/authz/grpc_authz_server_interceptors.go:143
	policyContents, err := os.ReadFile(i.policyFile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs tooling Excluded from app score unreachable #4e20bcd9277ece3b Filesystem access.
pkgs/go/[email protected]/benchmark/benchmain/main.go:961
		f, err := os.Create(opts.cpuProfile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs tooling Excluded from app score unreachable #60ab8f7f18d1c0d0 Filesystem access.
pkgs/go/[email protected]/benchmark/benchmain/main.go:979
		f, err := os.Create(opts.memProfile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs tooling Excluded from app score unreachable #56bd5f18cd18b1e7 Filesystem access.
pkgs/go/[email protected]/benchmark/benchmain/main.go:992
		f, err := os.Create(opts.benchmarkResultFile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs tooling Excluded from app score unreachable #a7e5db9da12f5295 Filesystem access.
pkgs/go/[email protected]/benchmark/benchresult/main.go:44
	f, err := os.Open(fileName)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs tooling Excluded from app score unreachable #f1ffa89c281e8a59 Filesystem access.
pkgs/go/[email protected]/benchmark/benchresult/main.go:117
	f, err := os.Open(fileName)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs tooling Excluded from app score unreachable #d0bb8ae2657570a0 Filesystem access.
pkgs/go/[email protected]/benchmark/client/main.go:104
	cf, err := os.Create("/tmp/" + *testName + ".cpu")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs tooling Excluded from app score unreachable #3d39e2278bdeac15 Filesystem access.
pkgs/go/[email protected]/benchmark/client/main.go:117
	mf, err := os.Create("/tmp/" + *testName + ".mem")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs tooling Excluded from app score unreachable #629bad11877fc7d2 Filesystem access.
pkgs/go/[email protected]/benchmark/server/main.go:66
	cf, err := os.Create("/tmp/" + *testName + ".cpu")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs tooling Excluded from app score unreachable #75736005ca1bb6c8 Filesystem access.
pkgs/go/[email protected]/benchmark/server/main.go:85
	mf, err := os.Create("/tmp/" + *testName + ".mem")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs tooling Excluded from app score unreachable #5f9ebfd0cc4e38a9 Filesystem access.
pkgs/go/[email protected]/benchmark/stats/curve.go:83
	data, err := os.ReadFile(file)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs tooling Excluded from app score unreachable #370c73da8fc11c09 Filesystem access.
pkgs/go/[email protected]/benchmark/stats/curve.go:104
	f, err := os.Open(file)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #b6791906074bb1fc Filesystem access.
pkgs/go/[email protected]/credentials/jwt/file_reader.go:50
	tokenBytes, err := os.ReadFile(r.tokenFilePath)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #94930819b0d4c477 Filesystem access.
pkgs/go/[email protected]/credentials/oauth/oauth.go:76
	jsonKey, err := os.ReadFile(keyFile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3c45f1e0d242a567 Filesystem access.
pkgs/go/[email protected]/credentials/oauth/oauth.go:195
	jsonKey, err := os.ReadFile(keyFile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #72207e7883f248c3 Filesystem access.
pkgs/go/[email protected]/credentials/tls.go:284
	b, err := os.ReadFile(certFile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #24cd2d1c662bd534 Filesystem access.
pkgs/go/[email protected]/credentials/tls/certprovider/pemfile/watcher.go:164
	certFileContents, err := os.ReadFile(w.opts.CertFile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #13a372e49b5b02cc Filesystem access.
pkgs/go/[email protected]/credentials/tls/certprovider/pemfile/watcher.go:169
	keyFileContents, err := os.ReadFile(w.opts.KeyFile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #996e8d90a283daa0 Filesystem access.
pkgs/go/[email protected]/credentials/tls/certprovider/pemfile/watcher.go:211
	spiffeBundleMapContents, err := os.ReadFile(w.opts.SPIFFEBundleMapFile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #99f238791845d912 Filesystem access.
pkgs/go/[email protected]/credentials/tls/certprovider/pemfile/watcher.go:230
	rootFileContents, err := os.ReadFile(w.opts.RootFile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6e4d8aa5bb551d8f Filesystem access.
pkgs/go/[email protected]/experimental/credentials/tls.go:199
	b, err := os.ReadFile(certFile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #c099fa4b8915506c Environment-variable access.
pkgs/go/[email protected]/grpclog/loggerv2.go:65
	logLevel := os.Getenv("GRPC_GO_LOG_SEVERITY_LEVEL")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #117d94daddd6a0d6 Environment-variable access.
pkgs/go/[email protected]/grpclog/loggerv2.go:76
	vLevel := os.Getenv("GRPC_GO_LOG_VERBOSITY_LEVEL")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #1268eb08d5a94ec2 Environment-variable access.
pkgs/go/[email protected]/grpclog/loggerv2.go:81
	jsonFormat := strings.EqualFold(os.Getenv("GRPC_GO_LOG_FORMATTER"), "json")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #57457a622e340d16 Environment-variable access.
pkgs/go/[email protected]/internal/binarylog/binarylog.go:77
	configStr := os.Getenv(envStr)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #21585bdc55b871a6 Environment-variable access.
pkgs/go/[email protected]/internal/envconfig/envconfig.go:144
		return !strings.EqualFold(os.Getenv(envVar), "false")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #5eb3529789bc6420 Environment-variable access.
pkgs/go/[email protected]/internal/envconfig/envconfig.go:147
	return strings.EqualFold(os.Getenv(envVar), "true")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #9f939efb8e13e388 Environment-variable access.
pkgs/go/[email protected]/internal/envconfig/envconfig.go:151
	v, err := strconv.ParseUint(os.Getenv(envVar), 10, 64)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #9a98c7a3990a80cc Environment-variable access.
pkgs/go/[email protected]/internal/envconfig/observability.go:34
	ObservabilityConfig = os.Getenv(envObservabilityConfig)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6ba28aeb0a7b9ad2 Environment-variable access.
pkgs/go/[email protected]/internal/envconfig/observability.go:41
	ObservabilityConfigFile = os.Getenv(envObservabilityConfigFile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #2463cb8a5a6432ed Environment-variable access.
pkgs/go/[email protected]/internal/envconfig/xds.go:46
	XDSBootstrapFileName = os.Getenv(XDSBootstrapFileNameEnv)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ec66f371c7e16580 Environment-variable access.
pkgs/go/[email protected]/internal/envconfig/xds.go:52
	XDSBootstrapFileContent = os.Getenv(XDSBootstrapFileContentEnv)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #f7ec97f3f779bd5c Environment-variable access.
pkgs/go/[email protected]/internal/envconfig/xds.go:55
	C2PResolverTestOnlyTrafficDirectorURI = os.Getenv("GRPC_TEST_ONLY_GOOGLE_C2P_RESOLVER_TRAFFIC_DIRECTOR_URI")

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #5ee3cb568c40ff17 Filesystem access.
pkgs/go/[email protected]/internal/googlecloud/manufacturer_linux.go:26
	return os.ReadFile(linuxProductNameFile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6bad2327692c7cb9 Environment-variable access.
pkgs/go/[email protected]/internal/grpctest/tlogger.go:78
	if vLevelEnv, found := os.LookupEnv("GRPC_GO_LOG_VERBOSITY_LEVEL"); found {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #8775b3c74f42e1d3 Filesystem access.
pkgs/go/[email protected]/internal/testutils/tls_creds.go:39
	b, err := os.ReadFile(testdata.Path("x509/server_ca_cert.pem"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #916066b8a67dc2f6 Filesystem access.
pkgs/go/[email protected]/internal/testutils/tls_creds.go:63
	b, err := os.ReadFile(testdata.Path("x509/client_ca_cert.pem"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6ab5821869c19e6d Filesystem access.
pkgs/go/[email protected]/internal/testutils/tls_creds.go:89
	b, err := os.ReadFile(testdata.Path("spiffe_end2end/ca.pem"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #790ab5f2a4a38fba Filesystem access.
pkgs/go/[email protected]/internal/testutils/tls_creds.go:115
	b, err := os.ReadFile(testdata.Path("spiffe_end2end/ca.pem"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #90b510be4ef62cc6 Filesystem access.
pkgs/go/[email protected]/internal/testutils/tls_creds.go:143
	b, err := os.ReadFile(testdata.Path("spiffe_end2end/ca.pem"))

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #2dd01829a03812f6 Filesystem access.
pkgs/go/[email protected]/internal/testutils/xds/e2e/bootstrap.go:158
	data, err := os.ReadFile(src)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #6111da01de2ce00b Filesystem access.
pkgs/go/[email protected]/internal/testutils/xds/e2e/bootstrap.go:162
	if err := os.WriteFile(dst, data, os.ModePerm); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #0a547bd6eb973b66 Filesystem access.
pkgs/go/[email protected]/internal/testutils/xds_bootstrap.go:42
	if err := os.WriteFile(f.Name(), bootstrapContents, 0644); err != nil {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #4c0b55da4caa773d Filesystem access.
pkgs/go/[email protected]/interop/client/client.go:222
			b, err := os.ReadFile(*caFile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #7c6d938b00bdac20 Filesystem access.
pkgs/go/[email protected]/interop/test_utils.go:285
	jsonKey, err := os.ReadFile(keyFile)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #ff4756ad11387d2f Filesystem access.
pkgs/go/[email protected]/profiling/cmd/catapult.go:378
	streamStatsCatapultJSONFile, err := os.Create(streamStatsCatapultJSONFileName)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #3d5e86e8a7f5dff2 Filesystem access.
pkgs/go/[email protected]/profiling/cmd/local.go:29
	snapshotFile, err := os.Open(snapshotFileName)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #337e373316ec7395 Filesystem access.
pkgs/go/[email protected]/profiling/cmd/remote.go:54
	file, err := os.Create(f)

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

low env_fs dependency Excluded from app score #fe0b7a5a2a933dc6 Environment-variable access.
pkgs/go/[email protected]/stats/opentelemetry/csm/pluginoption.go:168
	if val, ok := os.LookupEnv(name); ok {

Reads environment variables or the filesystem — an inventory-level capability, not a leak on its own.

Fix: Usually benign; confirm any secret read here is not later sent externally.

Skipped dependencies

Production

  • github.com/danaugrs/go-tsne prod — module zip exceeds byte cap
  • github.com/ikawaha/kagome-dict-ko prod — module zip exceeds byte cap
  • github.com/ikawaha/kagome/v2 prod — module zip exceeds byte cap
  • github.com/klauspost/compress prod — module zip exceeds byte cap
  • google.golang.org/api prod — module zip exceeds byte cap