Close Open Privacy Scan

bolt Snapshot: commit 2e3c16c
science engine v3
schedule 2026-07-11T01:12:02.474371+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.

App Privacy Score

72 /100
Medium privacy risk

Medium risk · 2540 finding(s)

Dependency score: 0 (High risk)

bar_chart Score Breakdown

telemetry −25
env_fs −3

list Scan Summary

2 high 60 medium 2478 low
First-party packages: 2
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 (go)

go first-party
medium telemetry production #be48673a2a967ea0 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 #3a996fd710da7da8 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 #26985c8c82150562 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 #2740b30b734f0054 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 #361b0a36a762a356 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 #52cc05ba4e98a760 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 #c90a9ff2c4809a63 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 #ae9f659af6c98388 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 #8109cc70be69fb5a 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 #ef95f48f840c0ddd 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 #003f93072dd11f5d Environment-variable access.
repo/adapters/handlers/rest/configure_api.go:993
	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 #43f4c3745cdd6743 Environment-variable access.
repo/adapters/handlers/rest/configure_api.go:1499
	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 #aa19edcfa933ca2e Environment-variable access.
repo/adapters/handlers/rest/configure_api.go:1792
	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 #60ac93169b77bb80 Environment-variable access.
repo/adapters/handlers/rest/configure_api.go:1795
	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 #fc194a1b386a98bc Environment-variable access.
repo/adapters/handlers/rest/configure_api.go:2600
	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 #c972dec06c1c5011 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 #7df17bd028eda67a 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 #9f2c4c60a7baa0e9 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 #92d214d850b7e6dd 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 #28ca5eba4f193335 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 #bc91e5c23a2cb9f3 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 #4c42eedf9c31461d Filesystem access.
repo/adapters/repos/db/backup.go:754
	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 #ef0a3e286c09b294 Filesystem access.
repo/adapters/repos/db/backup.go:764
	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 #70b89715b7453a4c Filesystem access.
repo/adapters/repos/db/backup.go:774
	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 #3766fdcbde414984 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 #6e33524d2d960c85 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 #d90cd8ec687addee Filesystem access.
repo/adapters/repos/db/init.go:344
		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 #fe23cd48a508ba82 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 #68be23d1031e165d 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 #040893af412446de 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 #f7c56e98974a74c0 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 #65f7f0022ca03757 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 #12b1b170f45b2b0f 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 #f0816b412deba19b 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 #ff6e96746da187b1 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 #14a8c255cdbdeb31 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 #afd9152eafc4c461 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 #dda5abc1e5f75d2c 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 #36d8cd1d987c30b8 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 #2ce3c32d6795bab9 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 #7985de1051e1c406 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 #47808f11416a5956 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 #7a995bad32b23cf3 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 #289a9766a5a9cd4d 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 #bd53a10b3b2c24da 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 #f37b7c0971531894 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 #e6d76a19a9a3225e Environment-variable access.
repo/adapters/repos/db/lsmkv/bucket.go:2306
		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 #dc152cf0eb4454ec Filesystem access.
repo/adapters/repos/db/lsmkv/bucket.go:2637
				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 #b42e2cdc17be26d9 Filesystem access.
repo/adapters/repos/db/lsmkv/bucket.go:2688
			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 #411605e693769b0e 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 #8ee6ecdbe7bc7389 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 #e2eb3945e6ecc62c 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 #acc4a976d054d036 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 #637ece6801c115d0 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 #ab19edc5334eaba9 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 #ede1a303ae59a6c7 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 #13b54a8433689e18 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 #9267f1a5038bf3b1 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 #5ba7fdaddac80572 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 #bc1b083d1c248600 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 #82fd42b8bae4976a 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 #9ce20931343b236b 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 #2207e458fb0d488b 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 #a95f9ad959c469b4 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 #7ab5821d7623b9a9 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 #ac9d980903384ba6 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 #e700e161c02a0593 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 #abc05e12b5701cda 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 #5bd1753dca2883ae 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 #7a409605ce657c7d 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 #2c139234192dfb11 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 #af8291586b559b9f 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 #9667da3fc44eb18e 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 #cd7f80a4f8121fe4 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 #3a1bb0e4fcf38761 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 #80e1b3f81c48eed4 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 #d3708286eeaae663 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 #8f4a691db798f17f 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 #e4d38d7a74f93b49 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 #20af8b9a81daa150 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 #85df6a5da892ca6a 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 #c8b8848e70355cf3 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 #cbf6f3f29c050eee 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 #0621ee9b9ed62687 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 #9f054accaf1aebd9 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 #69d7e34aee760a62 Filesystem access.
repo/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 production #99a2257a6b3f94d9 Filesystem access.
repo/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 production #4fde2c95f681fe50 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 #36bbe72fd549259d 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 #70b97368d56c6af8 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 #d72dcfb08121a577 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 #938303fdb7110ef1 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 #06ed49a17bff9c93 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 #28110ab20aeb8aa9 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 #e47209c0b7868d42 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 #c2a3abe9603669e1 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 #4c1e15853309b8a3 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 #22b0e24c0880621e 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 #0807ca1727491a4d 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 #003a8c47af7ac1e6 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 #0c05aba4b75d1796 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 #74e9c92868e22aa4 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 #54e6ff474dbc7d0a 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 #49e4158195dc7505 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 #cf1fd8f698b8b9b4 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 #b3aea7e4cbb67b34 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 #f84d30be2205ee28 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 #2b996efe16fac727 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 #15391781e031c77f 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 #24041bce01308236 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 #518383426fe58600 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 #eed8840ee9d4eaec 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 #d73755da7d7e1bf0 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 #c07825847d76b7ea 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 #556d21e3294a7bf1 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 #74ad5d75929c64ba 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 #c3181a57d71b30ec 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 #fa37600b5762f003 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 #ff61634045d30e82 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 #d5d5888ec3de5d77 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 #bd356f0167e4086d 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 #2fdd42b5ccdd8503 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 #a210bf22dd35c68a 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 #eb479b08a1581791 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 #8aaca01bb63324a9 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 #cf92ec8557ff1760 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 #70141efa8c3c9ee8 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 #f5a00111e0b69a7e 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 #d892fa6c82f7716e 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 #fe7a1ddd7b092022 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 #50797342554c11e1 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 #83353e09710ead0f 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 #42ed502d25137ee1 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 #29dd5cb271512195 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 #cb317e27c3ba3c4d 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 #61e99d3eda9643c0 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 #c054db488a4e2373 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 #f5a32d641ca1ca2d 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 #e0af1d7a9cf7b4e0 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 #8ba953b8f16ceb16 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 #51249f73a3034607 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 #c8e4df0e1bf800e5 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 #695c70b0935b0012 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 #427afe18cf1ee100 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 #dc241d7049a0d3c9 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 #04037451911cc56e 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 #86933ad015dcfb00 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 #5ff74e97630ae35f 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 #19252d4f33e7d89c 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 #a70f652437bc7b12 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 #ee24835793730056 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 #dd0a416726707432 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 #fab0701f075a32f5 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 #714b40fe3f8c038c 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 #a2fb44f8c2986e46 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 #b5d71b006a859ec0 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 #87d3b46dbcfba80b 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 #62eec4155fea9f49 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 #86b556426d358cad 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 #8739d19ed6929e72 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 #ac7bcdbfd20dfc24 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 #71ac03474553766a 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 #ed1b53ffa72f9fb1 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 #8e52ed8e35038358 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 #41536ffa9b5385c4 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 #4a7a6189c1dfd736 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 #eed074f43f3d4bc7 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 #96a679596813cbd0 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 #1d005dd7e15e5373 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 #fbc193a82b73824d 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 #bd089a754a57f7d7 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 #37d3526bd4cc6a99 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 #5d3a8a0f705e555c 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 #c5f42917701920cd 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 #cd283a98164961bf 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 #52ea6f3d5d94ddc0 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 #c81972439255fd6e 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 #37c10da3e9876e6f 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 #0267e90a5c485419 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 #aa98698e6e47a4e7 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 #43b3257727ac2100 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 #b10894580ae618a7 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 #d107e9d600a1f072 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 #f73e8a203fb857d8 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 #9f651c1687f085bf 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 #b684813b57ffe8eb 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 #0fdf7cd4ac69caf1 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 #4796e8dcbf3f22eb 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 #0063ef33b672393c 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 #7a1531029cbb1a09 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 #040ba324b4ff9ce3 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 #4b114579aaefe2b2 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 #dbc0f31932ca13b0 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 #3237d5775077a3b1 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 #cb0ca9d31e77a601 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 #f242a1d32f1a6ff3 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 #e7c3224511a00a0a 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 #1802e0f53998d58f 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 #b042ad146c377829 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 #adf1331a3e5a134d 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 #cd10b6bd719cb4c8 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 #c99245ea3d9e7639 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 #1a971c9176276344 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 #7a59b56aa9228e46 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 #30d9e4421f5c4ceb 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 #ac2650710fc37a2e 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 #c01411255ca26837 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 #98aaa70bf206037f 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 #34669f2267f5ff18 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 #d860e4140a4079d2 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 #8453d9c941497880 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 #b98205fc5dc6310a 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 #d1c30fa85acf9339 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 #21e20ed7b8d1eb10 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 #bf2540d4dbec5522 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 #de39b83822fc9c4e 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 #af4c461e840a6c34 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 #6b96c72fea03df03 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 #e02b9f383becd72a 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 #6bbbd6a9532838f5 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 #c6688604ffcbd1aa 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 #7d60fb3e11843ad1 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 #a6d63cd623fc9f96 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 #acd6b85d528ec021 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 #88e810269ab0351e 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 #772b66beca047aea 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 #57b81812f62404f1 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 #52068560fe79b577 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 #2da6d9feb73ec46f 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 #7edefa6a8fdf7fcd 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 #8060e053a4d69f54 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 #498be6de1d9761cf 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 #75eacf49f1693993 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 #185494e47259e568 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 #cae284c910aace83 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 #55abdedffa1c2cbe 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 #4daf7be947d4ac1e 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 #35c99d419d805002 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 #3be4ad350a07af5b 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 #a01d055381966c06 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 #36d4bc89b13e4fb8 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 #0f2d114de83135e0 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 #6ec548c4c7c0f8a8 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 #6dd67c46846a1fa3 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 #2120115668061dec 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 #c2f1bb92851fb520 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 #28bcd3222f83e12e 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 #5be95f0443a319fb 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 #e00c8054ef204cd0 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 #baa514c1cb26349d 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 #f27ef69b91b00ff9 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 #7fb866fc3a183fd4 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 #c37a8f43a4a01198 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 #24d241e942fef2f5 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 #aa8cecb65a0cb3aa 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 #1d865668b0e2aaa2 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 #19902c717d5d6337 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 #4691fa29de849ac0 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 #62507c43b2d1bbb7 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 #5dceda8882f5fe31 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 #f80c52e4f6d67123 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 #22c148444e7aed81 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 #4890f2a0ae6311cb 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 #3bdf1118b473aeec 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 #e0cca17c3076008f 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 #609c75a89041c8fd 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 #83a476492c92f688 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 #631d4587779ebf5f 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 #e3feda2a998d6400 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 #7604d1919fcbc81e 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 #3e4a4484ecdc1740 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 #402299694c7b8cb7 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 #7898d7fd1c437c03 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 #9b6a614dd37e2ed6 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 #197e71fd26b6d6a5 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 #c4c2a30e1a01786c 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 #0cf64373e8e5fd22 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 #891eedce3495fff6 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 #5293d10ffbe6561d 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 #39258501928fbe40 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 #6597b9569c94e0b1 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 #c192659fa238e8ea 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 #067d86f39098fb20 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 #d42482903aa954b5 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 #b13bca779cc89dab 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 #ef982ab5353a6ce1 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 #c31993bbe7c21534 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 #1b44d3fc4c734f04 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 #ee3c99751a3578c8 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 #7095b358650afcde 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 #99e907c36d10dd8b 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 #ed5858b1edef05d1 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 #356a9cd8b9e420c9 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 #12c1c85ef84a4b62 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 #cc8ecbe4c33f0a47 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 #3afed973a82c019a 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 #203a45b85a95b2f3 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 #544e7acde2c0b439 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 #5aacf6fb43eb8e82 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 #76a21974caed948b 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 #ccbe69daef793241 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 #d43cae38a9420b81 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 #59f1923d79f5dd97 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 #72c1389a97981ebd 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 #147afc11a763b2d9 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 #8a7309a55541e079 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 #02aea8824b06119b 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 #3e8b8c589bc17151 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 #4c1c7b88dc1ce643 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 #61576c54e3c0fa28 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 #3c484dde83246346 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 #8c1eca4b13085d0e 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 #3ca78d0ac08e8605 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 #5d74796414c9c0ee 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 #b7057a14f649ad92 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 #6a5b6f88b7efd94d 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 #03200b46670b5dbd 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 #2eb199004a527370 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 #96faed5ca2c9008e 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 #ab84fb6c90997479 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 #b4e2a351f7229ce2 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 #743fc2eb6677c914 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 #a4994e3c3f09c948 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 #2f3e1ecc657aaf03 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 #7ed275b08e2b6c09 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 #5f4ded5dd1ce8660 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 #96d2331a6728d50a 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 #b252b993189d6e12 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 #889b5321e281338c 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 #356b1301db4bc1ce 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 #c654e11f7706014d 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 #34791ca82154c469 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 #273de14729e9db59 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 #583666ee0913eb25 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 #2e75258a7cea3772 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 #8719b5894a8754c6 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 #b32684b345ef383c 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 #b834867b02b28583 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 #eb6eae578bf1e293 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 #70aa113eba718a07 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 #8c4d92ba3ddc2390 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 #1cac7d24a9e9396d 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 #35ae19be52f8ad18 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 #bb57371c10bab372 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 #a185a2a79e0a6f01 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 #5a9d6b0117e1d79f 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 #b7468081afdc469b 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 #a0c0fe0d3fdc8b78 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 #a2c9e3fb1bce3e05 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 #92f73510278abb4c 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 #4f902eae506a056b 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 #c59b88c066c36ff8 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 #ccf91a6b6154aa32 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 #a0b56a25c3c393eb 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 #0f46aa17987a143f Filesystem access.
repo/usecases/config/config_handler.go:1225
	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 #6a991c8754a66bdd Environment-variable access.
repo/usecases/config/environment.go:72
	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 #9a03c7de0dc0def0 Environment-variable access.
repo/usecases/config/environment.go:78
		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 #7392a26486978cca Environment-variable access.
repo/usecases/config/environment.go:79
			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 #f38b7934af80968b Environment-variable access.
repo/usecases/config/environment.go:90
		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 #cd8919c3700b29fc Environment-variable access.
repo/usecases/config/environment.go:94
		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 #c4f5997fe9b4f194 Environment-variable access.
repo/usecases/config/environment.go:99
	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 #d6173718497a8395 Environment-variable access.
repo/usecases/config/environment.go:104
	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 #6c32bc3175f05d03 Environment-variable access.
repo/usecases/config/environment.go:115
	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 #f73eb0458560d085 Environment-variable access.
repo/usecases/config/environment.go:125
	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 #775c7fe3c461db80 Environment-variable access.
repo/usecases/config/environment.go:129
	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 #68fe2385f2bc1c9b Environment-variable access.
repo/usecases/config/environment.go:137
	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 #d80db1e0cdeda209 Environment-variable access.
repo/usecases/config/environment.go:156
	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 #595d5f42fe9ab8ed Environment-variable access.
repo/usecases/config/environment.go:169
	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 #ab404c241338f0e2 Environment-variable access.
repo/usecases/config/environment.go:173
	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 #2272025c3cff1431 Environment-variable access.
repo/usecases/config/environment.go:193
	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 #0f022952b71ea0b1 Environment-variable access.
repo/usecases/config/environment.go:197
	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 #f798c4cafa53dc75 Environment-variable access.
repo/usecases/config/environment.go:201
	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 #3ca5ccd8032ece5b Environment-variable access.
repo/usecases/config/environment.go:253
	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 #744c198603f45f42 Environment-variable access.
repo/usecases/config/environment.go:266
	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 #d009aa94023ea7f2 Environment-variable access.
repo/usecases/config/environment.go:275
	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 #6c321d32816ec889 Environment-variable access.
repo/usecases/config/environment.go:284
	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 #ed4f8d71edfc362e Environment-variable access.
repo/usecases/config/environment.go:288
	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 #c2465223c228dcaf Environment-variable access.
repo/usecases/config/environment.go:303
		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 #62548707554bad33 Environment-variable access.
repo/usecases/config/environment.go:308
		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 #a051ceb3ba9c6a6b Environment-variable access.
repo/usecases/config/environment.go:312
		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 #5b91daf966d4d00a Environment-variable access.
repo/usecases/config/environment.go:316
		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 #a926c9b487592332 Environment-variable access.
repo/usecases/config/environment.go:320
		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 #d4eba5e850d45b4e Environment-variable access.
repo/usecases/config/environment.go:324
		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 #308ddf2e54c98f11 Environment-variable access.
repo/usecases/config/environment.go:328
		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 #6fef23f10ba715f3 Environment-variable access.
repo/usecases/config/environment.go:332
		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 #75bc305e9d47cf6a Environment-variable access.
repo/usecases/config/environment.go:336
		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 #25bbdc8e653b5b93 Environment-variable access.
repo/usecases/config/environment.go:340
		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 #fc15f64305c40c42 Environment-variable access.
repo/usecases/config/environment.go:344
		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 #5533b70bd708f150 Environment-variable access.
repo/usecases/config/environment.go:361
	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 #7cf0f6e141bbd47f Environment-variable access.
repo/usecases/config/environment.go:365
	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 #9543353bd8fdcc55 Environment-variable access.
repo/usecases/config/environment.go:368
		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 #92c4df5619cf6ca8 Environment-variable access.
repo/usecases/config/environment.go:373
		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 #f242f3eb41ee6791 Environment-variable access.
repo/usecases/config/environment.go:380
	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 #687d695db73d109b Environment-variable access.
repo/usecases/config/environment.go:383
		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 #56f9aae126e0997d Environment-variable access.
repo/usecases/config/environment.go:388
		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 #6519bc5915e90845 Environment-variable access.
repo/usecases/config/environment.go:393
		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 #8b688f8da4e8c0d0 Environment-variable access.
repo/usecases/config/environment.go:398
		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 #67dc09565fe720b8 Environment-variable access.
repo/usecases/config/environment.go:404
	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 #59dd6b0b6ee1c6c6 Environment-variable access.
repo/usecases/config/environment.go:407
		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 #cb5b17af53c4d40d Environment-variable access.
repo/usecases/config/environment.go:411
		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 #e77fcc3d535cb2c0 Environment-variable access.
repo/usecases/config/environment.go:415
			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 #a088d101e235aaa3 Environment-variable access.
repo/usecases/config/environment.go:421
		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 #4b2ad998e4ef6f11 Environment-variable access.
repo/usecases/config/environment.go:426
		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 #4f8b4b51a5e0f6fb Environment-variable access.
repo/usecases/config/environment.go:431
			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 #093e90d079941aca Environment-variable access.
repo/usecases/config/environment.go:437
		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 #52ba79388ee37815 Environment-variable access.
repo/usecases/config/environment.go:442
		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 #e71f092c370c4521 Environment-variable access.
repo/usecases/config/environment.go:448
	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 #b72e39f55980c596 Environment-variable access.
repo/usecases/config/environment.go:451
	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 #9fcb2dcdf5c6e886 Environment-variable access.
repo/usecases/config/environment.go:461
	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 #af1331a58c8ce229 Environment-variable access.
repo/usecases/config/environment.go:465
	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 #b0f067f05a87d906 Environment-variable access.
repo/usecases/config/environment.go:484
	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 #c2fbc2ada07c3244 Environment-variable access.
repo/usecases/config/environment.go:488
	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 #9c85149cd54436a9 Environment-variable access.
repo/usecases/config/environment.go:492
	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 #b2572f2797f27692 Environment-variable access.
repo/usecases/config/environment.go:496
	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 #f3bebea552673d7d Environment-variable access.
repo/usecases/config/environment.go:507
	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 #bdebfa3736ad7415 Environment-variable access.
repo/usecases/config/environment.go:511
	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 #4711423ee395c3b3 Environment-variable access.
repo/usecases/config/environment.go:517
	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 #30682998f856b0d8 Environment-variable access.
repo/usecases/config/environment.go:523
	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 #7e88daf9e1ca30f4 Environment-variable access.
repo/usecases/config/environment.go:542
	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 #8b5199441eea585a Environment-variable access.
repo/usecases/config/environment.go:573
		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 #ea5fd63d9db0d452 Environment-variable access.
repo/usecases/config/environment.go:580
	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 #b500ddbb502ece0e Environment-variable access.
repo/usecases/config/environment.go:587
	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 #65b3cbab69b5f174 Environment-variable access.
repo/usecases/config/environment.go:614
	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 #593c81bbd75339a2 Environment-variable access.
repo/usecases/config/environment.go:656
	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 #03e014e787cd4926 Environment-variable access.
repo/usecases/config/environment.go:678
	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 #52ed37efdf04a4ad Environment-variable access.
repo/usecases/config/environment.go:682
	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 #9940198818bd85ef Environment-variable access.
repo/usecases/config/environment.go:686
	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 #07e12d5b3c67a2ae Environment-variable access.
repo/usecases/config/environment.go:699
	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 #f27771bd5d8ab098 Environment-variable access.
repo/usecases/config/environment.go:710
	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 #82f1998638572852 Environment-variable access.
repo/usecases/config/environment.go:721
	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 #f21ea5756f1e4c47 Environment-variable access.
repo/usecases/config/environment.go:732
	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 #c0ee7ac41369af7e Environment-variable access.
repo/usecases/config/environment.go:736
	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 #cb1454218fa36825 Environment-variable access.
repo/usecases/config/environment.go:749
	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 #46b74ee93a015530 Environment-variable access.
repo/usecases/config/environment.go:760
	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 #9e1c5bd8fab36988 Environment-variable access.
repo/usecases/config/environment.go:770
	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 #f7d25047f16aada2 Environment-variable access.
repo/usecases/config/environment.go:783
	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 #361de63addb9ed35 Environment-variable access.
repo/usecases/config/environment.go:803
	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 #2109bd65dfb836df Environment-variable access.
repo/usecases/config/environment.go:816
	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 #3daf3768575c577b Environment-variable access.
repo/usecases/config/environment.go:826
	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 #1e7610279d6f9ace Environment-variable access.
repo/usecases/config/environment.go:836
	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 #7290811fb706d722 Environment-variable access.
repo/usecases/config/environment.go:840
	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 #3feba2a6e0a6a061 Environment-variable access.
repo/usecases/config/environment.go:844
	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 #08553eb7f92aa8cc Environment-variable access.
repo/usecases/config/environment.go:851
	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 #e3b0cfa88d7ca7e0 Environment-variable access.
repo/usecases/config/environment.go:857
	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 #b2f8d11610836ca6 Environment-variable access.
repo/usecases/config/environment.go:861
	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 #a33bfc15b0c54422 Environment-variable access.
repo/usecases/config/environment.go:865
	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 #22d0ef8264afcd5b Environment-variable access.
repo/usecases/config/environment.go:870
	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 #599f61aeadcfbcee Environment-variable access.
repo/usecases/config/environment.go:876
	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 #0127cb5aca632ba2 Environment-variable access.
repo/usecases/config/environment.go:887
	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 #f7b0062d25220dc7 Environment-variable access.
repo/usecases/config/environment.go:896
	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 #932337f5ce4762e5 Environment-variable access.
repo/usecases/config/environment.go:905
	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 #2dd8d75c67ddd80d Environment-variable access.
repo/usecases/config/environment.go:946
	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 #4cc0c3f82316fbbe Environment-variable access.
repo/usecases/config/environment.go:950
	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 #708ee5bc68598e1e Environment-variable access.
repo/usecases/config/environment.go:974
	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 #3fec49f000a5fb12 Environment-variable access.
repo/usecases/config/environment.go:977
	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 #53328fc16c17554a Environment-variable access.
repo/usecases/config/environment.go:981
	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 #89ac13d56709d597 Environment-variable access.
repo/usecases/config/environment.go:985
	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 #dfc94eded0b01315 Environment-variable access.
repo/usecases/config/environment.go:987
	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 #6e1b74c76e329dfc Environment-variable access.
repo/usecases/config/environment.go:1019
	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 #97cc84cf3a6e7a65 Environment-variable access.
repo/usecases/config/environment.go:1176
	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 #488365f26b7346be Environment-variable access.
repo/usecases/config/environment.go:1180
	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 #b9139fbc46044b02 Environment-variable access.
repo/usecases/config/environment.go:1183
	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 #9a27090a70b46279 Environment-variable access.
repo/usecases/config/environment.go:1188
	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 #df27a78c0f87bd7c Environment-variable access.
repo/usecases/config/environment.go:1193
	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 #d8b3ad73e66c1006 Environment-variable access.
repo/usecases/config/environment.go:1202
		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 #61fde49d43a65bb8 Environment-variable access.
repo/usecases/config/environment.go:1215
	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 #b3db937b92939020 Environment-variable access.
repo/usecases/config/environment.go:1273
	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 #4c5adf64aa65d392 Environment-variable access.
repo/usecases/config/environment.go:1282
	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 #34aa28bdab8c58fb Environment-variable access.
repo/usecases/config/environment.go:1302
	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 #7512e9ca5d89b230 Environment-variable access.
repo/usecases/config/environment.go:1306
	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 #2c0d16f79665e9ff Environment-variable access.
repo/usecases/config/environment.go:1317
	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 #1a3c042fcfc8a462 Environment-variable access.
repo/usecases/config/environment.go:1319
	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 #fbc28320fb2988d7 Environment-variable access.
repo/usecases/config/environment.go:1324
	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 #6d786512d8531b05 Environment-variable access.
repo/usecases/config/environment.go:1361
	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 #78f61b135e103441 Environment-variable access.
repo/usecases/config/environment.go:1366
	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 #58e8fdb9e4994450 Environment-variable access.
repo/usecases/config/environment.go:1371
	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 #07447250550f93d9 Environment-variable access.
repo/usecases/config/environment.go:1375
	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 #8bda4fc917159255 Environment-variable access.
repo/usecases/config/environment.go:1386
	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 #93aabb127877de74 Environment-variable access.
repo/usecases/config/environment.go:1396
	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 #508ffb4324487226 Environment-variable access.
repo/usecases/config/environment.go:1405
	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 #6237473a62b1fad7 Environment-variable access.
repo/usecases/config/environment.go:1411
		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 #6822e7038488631d Environment-variable access.
repo/usecases/config/environment.go:1414
	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 #20c6f831edf77a1c Environment-variable access.
repo/usecases/config/environment.go:1420
	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 #b5eed6de38407b06 Environment-variable access.
repo/usecases/config/environment.go:1431
		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 #27f0a58183d61458 Environment-variable access.
repo/usecases/config/environment.go:1566
	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 #a54ce358dd4b705d Environment-variable access.
repo/usecases/config/environment.go:1567
	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 #2cf0c320f079b2c3 Environment-variable access.
repo/usecases/config/environment.go:1573
	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 #b13680b17ec37dad Environment-variable access.
repo/usecases/config/environment.go:1579
	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 #b86133690f18e693 Environment-variable access.
repo/usecases/config/environment.go:1585
	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 #2daa8a4945cc3723 Environment-variable access.
repo/usecases/config/environment.go:1684
	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 #9526d5a072abecfb Environment-variable access.
repo/usecases/config/environment.go:1738
	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 #98bb6a36f5e67599 Environment-variable access.
repo/usecases/config/environment.go:1759
	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 #7edbfc6b22c0f19a Environment-variable access.
repo/usecases/config/environment.go:1802
	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 #9e6b7f61a58cbf86 Environment-variable access.
repo/usecases/config/environment.go:1879
	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 #1d616bd61446c262 Environment-variable access.
repo/usecases/config/environment.go:1887
	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 #6a9116ea609aec91 Environment-variable access.
repo/usecases/config/environment.go:1897
	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 #fef37a24841097ba Environment-variable access.
repo/usecases/config/environment.go:1907
	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 #9f517be6910030ff Environment-variable access.
repo/usecases/config/environment.go:1917
	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 #842707ce465fe783 Environment-variable access.
repo/usecases/config/environment.go:1927
	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 #34c1747c34c9eeca Environment-variable access.
repo/usecases/config/environment.go:1947
	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 #c7c77a9d2581c48f Environment-variable access.
repo/usecases/config/environment.go:1951
	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 #2135c2313faca674 Environment-variable access.
repo/usecases/config/environment.go:1953
	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 #b77a3547fa58036e Environment-variable access.
repo/usecases/config/environment.go:1958
	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 #0d52e7e6ce7fce99 Environment-variable access.
repo/usecases/config/environment.go:1963
	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 #63f0b6fa1a834ca2 Environment-variable access.
repo/usecases/config/environment.go:1972
	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 #ae4977673af596c4 Environment-variable access.
repo/usecases/config/environment.go:1973
	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 #6d9a55ec2b59f718 Environment-variable access.
repo/usecases/config/environment.go:1974
	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 #584ffbeaa5fbe5a1 Environment-variable access.
repo/usecases/config/environment.go:1999
		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 #259f3049fdafc55a Environment-variable access.
repo/usecases/config/environment.go:2001
		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 #aa1b5805cad961d3 Environment-variable access.
repo/usecases/config/environment.go:2003
	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 #4f0292c7e8696bbc Environment-variable access.
repo/usecases/config/environment.go:2004
	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 #33f15b0798f9c72b Environment-variable access.
repo/usecases/config/environment.go:2013
	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 #0dd85ee0bdd4f5fd Environment-variable access.
repo/usecases/config/environment.go:2027
	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 #da356ae0a957d5f7 Environment-variable access.
repo/usecases/config/environment.go:2039
	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 #08ae0414fefe1a48 Environment-variable access.
repo/usecases/config/environment.go:2229
	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 #0a7417273c2f4e13 Environment-variable access.
repo/usecases/config/environment.go:2235
	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 #4f73b46ef31929dd Environment-variable access.
repo/usecases/config/environment.go:2241
	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 #51e290ea5ea57600 Environment-variable access.
repo/usecases/config/environment.go:2247
	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 #40e59a5b1a87dc68 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 #50809e354ec2134a 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 #4dfb9465d6f228f2 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 #0d1000775e82be27 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 #35f66ec976b805b9 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 #e549367bfd02a449 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 #bbd65d7f8918b3ae 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 #94aa672dee4fdcb4 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 #6675393c6e3ffe41 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 #7948ff191162a548 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 #772f031b545c686b 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 #d6011edb162711c9 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 #338d4b6aa0e0d473 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 #7232423f5b1f235e 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 #8f1777fcf3333735 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 #679c0cec7c46f5fb 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 #700bd412922d37e4 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 #40f7623a34112052 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 #207341b575000a34 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 #ffa4786a05712cea 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 #2a95c9167324a0c0 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 #43a1d5294ff29b9d 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 #744b2389113c0e35 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 #2d8f619765faebb8 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 #a9c2d9f41f16afc9 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 #43de172686fcb043 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 #b51ac9154bb64994 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 #749b47b24784f541 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 #32585c12efa6d2fb 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 #5d42cc54c1fe18cb 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 #aa6eade4c2aa9ece 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 #ae8bd28a57953d65 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 #67e30cf5e8010356 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 #28e39dac8a913509 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 #6c369b33e68d93d6 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 #a054d2074e4dd86b 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 #9fcd8a2085eb9735 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 #f91c236c1b804806 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 #3b2f43ef3599222f 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 #557e57c24df7ac28 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 #c5f0e5a4627561ae 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.

first-party (python)

go first-party
medium telemetry production #be48673a2a967ea0 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 #3a996fd710da7da8 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 #26985c8c82150562 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 #2740b30b734f0054 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 #361b0a36a762a356 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 #52cc05ba4e98a760 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 #c90a9ff2c4809a63 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 #ae9f659af6c98388 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 #8109cc70be69fb5a 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 #ef95f48f840c0ddd 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 #003f93072dd11f5d Environment-variable access.
repo/adapters/handlers/rest/configure_api.go:993
	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 #43f4c3745cdd6743 Environment-variable access.
repo/adapters/handlers/rest/configure_api.go:1499
	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 #aa19edcfa933ca2e Environment-variable access.
repo/adapters/handlers/rest/configure_api.go:1792
	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 #60ac93169b77bb80 Environment-variable access.
repo/adapters/handlers/rest/configure_api.go:1795
	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 #fc194a1b386a98bc Environment-variable access.
repo/adapters/handlers/rest/configure_api.go:2600
	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 #c972dec06c1c5011 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 #7df17bd028eda67a 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 #9f2c4c60a7baa0e9 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 #92d214d850b7e6dd 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 #28ca5eba4f193335 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 #bc91e5c23a2cb9f3 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 #4c42eedf9c31461d Filesystem access.
repo/adapters/repos/db/backup.go:754
	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 #ef0a3e286c09b294 Filesystem access.
repo/adapters/repos/db/backup.go:764
	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 #70b89715b7453a4c Filesystem access.
repo/adapters/repos/db/backup.go:774
	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 #3766fdcbde414984 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 #6e33524d2d960c85 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 #d90cd8ec687addee Filesystem access.
repo/adapters/repos/db/init.go:344
		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 #fe23cd48a508ba82 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 #68be23d1031e165d 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 #040893af412446de 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 #f7c56e98974a74c0 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 #65f7f0022ca03757 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 #12b1b170f45b2b0f 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 #f0816b412deba19b 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 #ff6e96746da187b1 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 #14a8c255cdbdeb31 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 #afd9152eafc4c461 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 #dda5abc1e5f75d2c 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 #36d8cd1d987c30b8 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 #2ce3c32d6795bab9 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 #7985de1051e1c406 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 #47808f11416a5956 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 #7a995bad32b23cf3 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 #289a9766a5a9cd4d 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 #bd53a10b3b2c24da 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 #f37b7c0971531894 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 #e6d76a19a9a3225e Environment-variable access.
repo/adapters/repos/db/lsmkv/bucket.go:2306
		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 #dc152cf0eb4454ec Filesystem access.
repo/adapters/repos/db/lsmkv/bucket.go:2637
				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 #b42e2cdc17be26d9 Filesystem access.
repo/adapters/repos/db/lsmkv/bucket.go:2688
			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 #411605e693769b0e 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 #8ee6ecdbe7bc7389 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 #e2eb3945e6ecc62c 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 #acc4a976d054d036 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 #637ece6801c115d0 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 #ab19edc5334eaba9 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 #ede1a303ae59a6c7 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 #13b54a8433689e18 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 #9267f1a5038bf3b1 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 #5ba7fdaddac80572 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 #bc1b083d1c248600 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 #82fd42b8bae4976a 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 #9ce20931343b236b 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 #2207e458fb0d488b 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 #a95f9ad959c469b4 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 #7ab5821d7623b9a9 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 #ac9d980903384ba6 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 #e700e161c02a0593 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 #abc05e12b5701cda 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 #5bd1753dca2883ae 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 #7a409605ce657c7d 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 #2c139234192dfb11 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 #af8291586b559b9f 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 #9667da3fc44eb18e 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 #cd7f80a4f8121fe4 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 #3a1bb0e4fcf38761 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 #80e1b3f81c48eed4 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 #d3708286eeaae663 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 #8f4a691db798f17f 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 #e4d38d7a74f93b49 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 #20af8b9a81daa150 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 #85df6a5da892ca6a 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 #c8b8848e70355cf3 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 #cbf6f3f29c050eee 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 #0621ee9b9ed62687 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 #9f054accaf1aebd9 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 #69d7e34aee760a62 Filesystem access.
repo/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 production #99a2257a6b3f94d9 Filesystem access.
repo/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 production #4fde2c95f681fe50 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 #36bbe72fd549259d 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 #70b97368d56c6af8 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 #d72dcfb08121a577 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 #938303fdb7110ef1 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 #06ed49a17bff9c93 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 #28110ab20aeb8aa9 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 #e47209c0b7868d42 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 #c2a3abe9603669e1 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 #4c1e15853309b8a3 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 #22b0e24c0880621e 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 #0807ca1727491a4d 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 #003a8c47af7ac1e6 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 #0c05aba4b75d1796 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 #74e9c92868e22aa4 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 #54e6ff474dbc7d0a 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 #49e4158195dc7505 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 #cf1fd8f698b8b9b4 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 #b3aea7e4cbb67b34 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 #f84d30be2205ee28 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 #2b996efe16fac727 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 #15391781e031c77f 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 #24041bce01308236 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 #518383426fe58600 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 #eed8840ee9d4eaec 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 #d73755da7d7e1bf0 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 #c07825847d76b7ea 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 #556d21e3294a7bf1 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 #74ad5d75929c64ba 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 #c3181a57d71b30ec 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 #fa37600b5762f003 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 #ff61634045d30e82 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 #d5d5888ec3de5d77 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 #bd356f0167e4086d 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 #2fdd42b5ccdd8503 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 #a210bf22dd35c68a 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 #eb479b08a1581791 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 #8aaca01bb63324a9 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 #cf92ec8557ff1760 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 #70141efa8c3c9ee8 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 #f5a00111e0b69a7e 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 #d892fa6c82f7716e 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 #fe7a1ddd7b092022 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 #50797342554c11e1 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 #83353e09710ead0f 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 #42ed502d25137ee1 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 #29dd5cb271512195 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 #cb317e27c3ba3c4d 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 #61e99d3eda9643c0 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 #c054db488a4e2373 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 #f5a32d641ca1ca2d 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 #e0af1d7a9cf7b4e0 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 #8ba953b8f16ceb16 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 #51249f73a3034607 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 #c8e4df0e1bf800e5 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 #695c70b0935b0012 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 #427afe18cf1ee100 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 #dc241d7049a0d3c9 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 #04037451911cc56e 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 #86933ad015dcfb00 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 #5ff74e97630ae35f 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 #19252d4f33e7d89c 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 #a70f652437bc7b12 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 #ee24835793730056 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 #dd0a416726707432 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 #fab0701f075a32f5 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 #714b40fe3f8c038c 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 #a2fb44f8c2986e46 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 #b5d71b006a859ec0 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 #87d3b46dbcfba80b 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 #62eec4155fea9f49 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 #86b556426d358cad 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 #8739d19ed6929e72 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 #ac7bcdbfd20dfc24 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 #71ac03474553766a 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 #ed1b53ffa72f9fb1 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 #8e52ed8e35038358 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 #41536ffa9b5385c4 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 #4a7a6189c1dfd736 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 #eed074f43f3d4bc7 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 #96a679596813cbd0 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 #1d005dd7e15e5373 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 #fbc193a82b73824d 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 #bd089a754a57f7d7 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 #37d3526bd4cc6a99 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 #5d3a8a0f705e555c 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 #c5f42917701920cd 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 #cd283a98164961bf 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 #52ea6f3d5d94ddc0 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 #c81972439255fd6e 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 #37c10da3e9876e6f 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 #0267e90a5c485419 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 #aa98698e6e47a4e7 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 #43b3257727ac2100 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 #b10894580ae618a7 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 #d107e9d600a1f072 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 #f73e8a203fb857d8 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 #9f651c1687f085bf 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 #b684813b57ffe8eb 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 #0fdf7cd4ac69caf1 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 #4796e8dcbf3f22eb 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 #0063ef33b672393c 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 #7a1531029cbb1a09 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 #040ba324b4ff9ce3 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 #4b114579aaefe2b2 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 #dbc0f31932ca13b0 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 #3237d5775077a3b1 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 #cb0ca9d31e77a601 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 #f242a1d32f1a6ff3 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 #e7c3224511a00a0a 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 #1802e0f53998d58f 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 #b042ad146c377829 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 #adf1331a3e5a134d 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 #cd10b6bd719cb4c8 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 #c99245ea3d9e7639 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 #1a971c9176276344 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 #7a59b56aa9228e46 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 #30d9e4421f5c4ceb 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 #ac2650710fc37a2e 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 #c01411255ca26837 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 #98aaa70bf206037f 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 #34669f2267f5ff18 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 #d860e4140a4079d2 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 #8453d9c941497880 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 #b98205fc5dc6310a 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 #d1c30fa85acf9339 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 #21e20ed7b8d1eb10 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 #bf2540d4dbec5522 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 #de39b83822fc9c4e 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 #af4c461e840a6c34 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 #6b96c72fea03df03 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 #e02b9f383becd72a 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 #6bbbd6a9532838f5 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 #c6688604ffcbd1aa 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 #7d60fb3e11843ad1 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 #a6d63cd623fc9f96 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 #acd6b85d528ec021 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 #88e810269ab0351e 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 #772b66beca047aea 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 #57b81812f62404f1 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 #52068560fe79b577 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 #2da6d9feb73ec46f 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 #7edefa6a8fdf7fcd 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 #8060e053a4d69f54 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 #498be6de1d9761cf 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 #75eacf49f1693993 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 #185494e47259e568 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 #cae284c910aace83 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 #55abdedffa1c2cbe 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 #4daf7be947d4ac1e 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 #35c99d419d805002 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 #3be4ad350a07af5b 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 #a01d055381966c06 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 #36d4bc89b13e4fb8 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 #0f2d114de83135e0 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 #6ec548c4c7c0f8a8 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 #6dd67c46846a1fa3 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 #2120115668061dec 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 #c2f1bb92851fb520 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 #28bcd3222f83e12e 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 #5be95f0443a319fb 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 #e00c8054ef204cd0 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 #baa514c1cb26349d 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 #f27ef69b91b00ff9 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 #7fb866fc3a183fd4 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 #c37a8f43a4a01198 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 #24d241e942fef2f5 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 #aa8cecb65a0cb3aa 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 #1d865668b0e2aaa2 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 #19902c717d5d6337 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 #4691fa29de849ac0 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 #62507c43b2d1bbb7 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 #5dceda8882f5fe31 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 #f80c52e4f6d67123 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 #22c148444e7aed81 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 #4890f2a0ae6311cb 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 #3bdf1118b473aeec 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 #e0cca17c3076008f 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 #609c75a89041c8fd 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 #83a476492c92f688 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 #631d4587779ebf5f 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 #e3feda2a998d6400 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 #7604d1919fcbc81e 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 #3e4a4484ecdc1740 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 #402299694c7b8cb7 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 #7898d7fd1c437c03 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 #9b6a614dd37e2ed6 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 #197e71fd26b6d6a5 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 #c4c2a30e1a01786c 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 #0cf64373e8e5fd22 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 #891eedce3495fff6 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 #5293d10ffbe6561d 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 #39258501928fbe40 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 #6597b9569c94e0b1 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 #c192659fa238e8ea 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 #067d86f39098fb20 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 #d42482903aa954b5 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 #b13bca779cc89dab 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 #ef982ab5353a6ce1 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 #c31993bbe7c21534 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 #1b44d3fc4c734f04 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 #ee3c99751a3578c8 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 #7095b358650afcde 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 #99e907c36d10dd8b 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 #ed5858b1edef05d1 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 #356a9cd8b9e420c9 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 #12c1c85ef84a4b62 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 #cc8ecbe4c33f0a47 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 #3afed973a82c019a 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 #203a45b85a95b2f3 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 #544e7acde2c0b439 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 #5aacf6fb43eb8e82 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 #76a21974caed948b 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 #ccbe69daef793241 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 #d43cae38a9420b81 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 #59f1923d79f5dd97 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 #72c1389a97981ebd 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 #147afc11a763b2d9 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 #8a7309a55541e079 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 #02aea8824b06119b 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 #3e8b8c589bc17151 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 #4c1c7b88dc1ce643 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 #61576c54e3c0fa28 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 #3c484dde83246346 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 #8c1eca4b13085d0e 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 #3ca78d0ac08e8605 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 #5d74796414c9c0ee 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 #b7057a14f649ad92 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 #6a5b6f88b7efd94d 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 #03200b46670b5dbd 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 #2eb199004a527370 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 #96faed5ca2c9008e 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 #ab84fb6c90997479 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 #b4e2a351f7229ce2 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 #743fc2eb6677c914 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 #a4994e3c3f09c948 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 #2f3e1ecc657aaf03 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 #7ed275b08e2b6c09 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 #5f4ded5dd1ce8660 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 #96d2331a6728d50a 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 #b252b993189d6e12 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 #889b5321e281338c 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 #356b1301db4bc1ce 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 #c654e11f7706014d 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 #34791ca82154c469 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 #273de14729e9db59 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 #583666ee0913eb25 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 #2e75258a7cea3772 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 #8719b5894a8754c6 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 #b32684b345ef383c 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 #b834867b02b28583 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 #eb6eae578bf1e293 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 #70aa113eba718a07 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 #8c4d92ba3ddc2390 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 #1cac7d24a9e9396d 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 #35ae19be52f8ad18 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 #bb57371c10bab372 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 #a185a2a79e0a6f01 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 #5a9d6b0117e1d79f 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 #b7468081afdc469b 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 #a0c0fe0d3fdc8b78 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 #a2c9e3fb1bce3e05 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 #92f73510278abb4c 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 #4f902eae506a056b 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 #c59b88c066c36ff8 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 #ccf91a6b6154aa32 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 #a0b56a25c3c393eb 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 #0f46aa17987a143f Filesystem access.
repo/usecases/config/config_handler.go:1225
	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 #6a991c8754a66bdd Environment-variable access.
repo/usecases/config/environment.go:72
	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 #9a03c7de0dc0def0 Environment-variable access.
repo/usecases/config/environment.go:78
		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 #7392a26486978cca Environment-variable access.
repo/usecases/config/environment.go:79
			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 #f38b7934af80968b Environment-variable access.
repo/usecases/config/environment.go:90
		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 #cd8919c3700b29fc Environment-variable access.
repo/usecases/config/environment.go:94
		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 #c4f5997fe9b4f194 Environment-variable access.
repo/usecases/config/environment.go:99
	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 #d6173718497a8395 Environment-variable access.
repo/usecases/config/environment.go:104
	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 #6c32bc3175f05d03 Environment-variable access.
repo/usecases/config/environment.go:115
	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 #f73eb0458560d085 Environment-variable access.
repo/usecases/config/environment.go:125
	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 #775c7fe3c461db80 Environment-variable access.
repo/usecases/config/environment.go:129
	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 #68fe2385f2bc1c9b Environment-variable access.
repo/usecases/config/environment.go:137
	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 #d80db1e0cdeda209 Environment-variable access.
repo/usecases/config/environment.go:156
	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 #595d5f42fe9ab8ed Environment-variable access.
repo/usecases/config/environment.go:169
	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 #ab404c241338f0e2 Environment-variable access.
repo/usecases/config/environment.go:173
	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 #2272025c3cff1431 Environment-variable access.
repo/usecases/config/environment.go:193
	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 #0f022952b71ea0b1 Environment-variable access.
repo/usecases/config/environment.go:197
	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 #f798c4cafa53dc75 Environment-variable access.
repo/usecases/config/environment.go:201
	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 #3ca5ccd8032ece5b Environment-variable access.
repo/usecases/config/environment.go:253
	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 #744c198603f45f42 Environment-variable access.
repo/usecases/config/environment.go:266
	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 #d009aa94023ea7f2 Environment-variable access.
repo/usecases/config/environment.go:275
	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 #6c321d32816ec889 Environment-variable access.
repo/usecases/config/environment.go:284
	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 #ed4f8d71edfc362e Environment-variable access.
repo/usecases/config/environment.go:288
	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 #c2465223c228dcaf Environment-variable access.
repo/usecases/config/environment.go:303
		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 #62548707554bad33 Environment-variable access.
repo/usecases/config/environment.go:308
		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 #a051ceb3ba9c6a6b Environment-variable access.
repo/usecases/config/environment.go:312
		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 #5b91daf966d4d00a Environment-variable access.
repo/usecases/config/environment.go:316
		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 #a926c9b487592332 Environment-variable access.
repo/usecases/config/environment.go:320
		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 #d4eba5e850d45b4e Environment-variable access.
repo/usecases/config/environment.go:324
		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 #308ddf2e54c98f11 Environment-variable access.
repo/usecases/config/environment.go:328
		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 #6fef23f10ba715f3 Environment-variable access.
repo/usecases/config/environment.go:332
		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 #75bc305e9d47cf6a Environment-variable access.
repo/usecases/config/environment.go:336
		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 #25bbdc8e653b5b93 Environment-variable access.
repo/usecases/config/environment.go:340
		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 #fc15f64305c40c42 Environment-variable access.
repo/usecases/config/environment.go:344
		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 #5533b70bd708f150 Environment-variable access.
repo/usecases/config/environment.go:361
	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 #7cf0f6e141bbd47f Environment-variable access.
repo/usecases/config/environment.go:365
	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 #9543353bd8fdcc55 Environment-variable access.
repo/usecases/config/environment.go:368
		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 #92c4df5619cf6ca8 Environment-variable access.
repo/usecases/config/environment.go:373
		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 #f242f3eb41ee6791 Environment-variable access.
repo/usecases/config/environment.go:380
	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 #687d695db73d109b Environment-variable access.
repo/usecases/config/environment.go:383
		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 #56f9aae126e0997d Environment-variable access.
repo/usecases/config/environment.go:388
		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 #6519bc5915e90845 Environment-variable access.
repo/usecases/config/environment.go:393
		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 #8b688f8da4e8c0d0 Environment-variable access.
repo/usecases/config/environment.go:398
		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 #67dc09565fe720b8 Environment-variable access.
repo/usecases/config/environment.go:404
	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 #59dd6b0b6ee1c6c6 Environment-variable access.
repo/usecases/config/environment.go:407
		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 #cb5b17af53c4d40d Environment-variable access.
repo/usecases/config/environment.go:411
		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 #e77fcc3d535cb2c0 Environment-variable access.
repo/usecases/config/environment.go:415
			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 #a088d101e235aaa3 Environment-variable access.
repo/usecases/config/environment.go:421
		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 #4b2ad998e4ef6f11 Environment-variable access.
repo/usecases/config/environment.go:426
		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 #4f8b4b51a5e0f6fb Environment-variable access.
repo/usecases/config/environment.go:431
			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 #093e90d079941aca Environment-variable access.
repo/usecases/config/environment.go:437
		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 #52ba79388ee37815 Environment-variable access.
repo/usecases/config/environment.go:442
		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 #e71f092c370c4521 Environment-variable access.
repo/usecases/config/environment.go:448
	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 #b72e39f55980c596 Environment-variable access.
repo/usecases/config/environment.go:451
	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 #9fcb2dcdf5c6e886 Environment-variable access.
repo/usecases/config/environment.go:461
	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 #af1331a58c8ce229 Environment-variable access.
repo/usecases/config/environment.go:465
	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 #b0f067f05a87d906 Environment-variable access.
repo/usecases/config/environment.go:484
	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 #c2fbc2ada07c3244 Environment-variable access.
repo/usecases/config/environment.go:488
	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 #9c85149cd54436a9 Environment-variable access.
repo/usecases/config/environment.go:492
	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 #b2572f2797f27692 Environment-variable access.
repo/usecases/config/environment.go:496
	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 #f3bebea552673d7d Environment-variable access.
repo/usecases/config/environment.go:507
	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 #bdebfa3736ad7415 Environment-variable access.
repo/usecases/config/environment.go:511
	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 #4711423ee395c3b3 Environment-variable access.
repo/usecases/config/environment.go:517
	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 #30682998f856b0d8 Environment-variable access.
repo/usecases/config/environment.go:523
	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 #7e88daf9e1ca30f4 Environment-variable access.
repo/usecases/config/environment.go:542
	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 #8b5199441eea585a Environment-variable access.
repo/usecases/config/environment.go:573
		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 #ea5fd63d9db0d452 Environment-variable access.
repo/usecases/config/environment.go:580
	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 #b500ddbb502ece0e Environment-variable access.
repo/usecases/config/environment.go:587
	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 #65b3cbab69b5f174 Environment-variable access.
repo/usecases/config/environment.go:614
	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 #593c81bbd75339a2 Environment-variable access.
repo/usecases/config/environment.go:656
	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 #03e014e787cd4926 Environment-variable access.
repo/usecases/config/environment.go:678
	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 #52ed37efdf04a4ad Environment-variable access.
repo/usecases/config/environment.go:682
	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 #9940198818bd85ef Environment-variable access.
repo/usecases/config/environment.go:686
	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 #07e12d5b3c67a2ae Environment-variable access.
repo/usecases/config/environment.go:699
	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 #f27771bd5d8ab098 Environment-variable access.
repo/usecases/config/environment.go:710
	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 #82f1998638572852 Environment-variable access.
repo/usecases/config/environment.go:721
	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 #f21ea5756f1e4c47 Environment-variable access.
repo/usecases/config/environment.go:732
	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 #c0ee7ac41369af7e Environment-variable access.
repo/usecases/config/environment.go:736
	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 #cb1454218fa36825 Environment-variable access.
repo/usecases/config/environment.go:749
	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 #46b74ee93a015530 Environment-variable access.
repo/usecases/config/environment.go:760
	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 #9e1c5bd8fab36988 Environment-variable access.
repo/usecases/config/environment.go:770
	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 #f7d25047f16aada2 Environment-variable access.
repo/usecases/config/environment.go:783
	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 #361de63addb9ed35 Environment-variable access.
repo/usecases/config/environment.go:803
	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 #2109bd65dfb836df Environment-variable access.
repo/usecases/config/environment.go:816
	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 #3daf3768575c577b Environment-variable access.
repo/usecases/config/environment.go:826
	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 #1e7610279d6f9ace Environment-variable access.
repo/usecases/config/environment.go:836
	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 #7290811fb706d722 Environment-variable access.
repo/usecases/config/environment.go:840
	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 #3feba2a6e0a6a061 Environment-variable access.
repo/usecases/config/environment.go:844
	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 #08553eb7f92aa8cc Environment-variable access.
repo/usecases/config/environment.go:851
	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 #e3b0cfa88d7ca7e0 Environment-variable access.
repo/usecases/config/environment.go:857
	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 #b2f8d11610836ca6 Environment-variable access.
repo/usecases/config/environment.go:861
	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 #a33bfc15b0c54422 Environment-variable access.
repo/usecases/config/environment.go:865
	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 #22d0ef8264afcd5b Environment-variable access.
repo/usecases/config/environment.go:870
	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 #599f61aeadcfbcee Environment-variable access.
repo/usecases/config/environment.go:876
	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 #0127cb5aca632ba2 Environment-variable access.
repo/usecases/config/environment.go:887
	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 #f7b0062d25220dc7 Environment-variable access.
repo/usecases/config/environment.go:896
	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 #932337f5ce4762e5 Environment-variable access.
repo/usecases/config/environment.go:905
	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 #2dd8d75c67ddd80d Environment-variable access.
repo/usecases/config/environment.go:946
	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 #4cc0c3f82316fbbe Environment-variable access.
repo/usecases/config/environment.go:950
	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 #708ee5bc68598e1e Environment-variable access.
repo/usecases/config/environment.go:974
	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 #3fec49f000a5fb12 Environment-variable access.
repo/usecases/config/environment.go:977
	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 #53328fc16c17554a Environment-variable access.
repo/usecases/config/environment.go:981
	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 #89ac13d56709d597 Environment-variable access.
repo/usecases/config/environment.go:985
	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 #dfc94eded0b01315 Environment-variable access.
repo/usecases/config/environment.go:987
	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 #6e1b74c76e329dfc Environment-variable access.
repo/usecases/config/environment.go:1019
	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 #97cc84cf3a6e7a65 Environment-variable access.
repo/usecases/config/environment.go:1176
	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 #488365f26b7346be Environment-variable access.
repo/usecases/config/environment.go:1180
	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 #b9139fbc46044b02 Environment-variable access.
repo/usecases/config/environment.go:1183
	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 #9a27090a70b46279 Environment-variable access.
repo/usecases/config/environment.go:1188
	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 #df27a78c0f87bd7c Environment-variable access.
repo/usecases/config/environment.go:1193
	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 #d8b3ad73e66c1006 Environment-variable access.
repo/usecases/config/environment.go:1202
		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 #61fde49d43a65bb8 Environment-variable access.
repo/usecases/config/environment.go:1215
	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 #b3db937b92939020 Environment-variable access.
repo/usecases/config/environment.go:1273
	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 #4c5adf64aa65d392 Environment-variable access.
repo/usecases/config/environment.go:1282
	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 #34aa28bdab8c58fb Environment-variable access.
repo/usecases/config/environment.go:1302
	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 #7512e9ca5d89b230 Environment-variable access.
repo/usecases/config/environment.go:1306
	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 #2c0d16f79665e9ff Environment-variable access.
repo/usecases/config/environment.go:1317
	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 #1a3c042fcfc8a462 Environment-variable access.
repo/usecases/config/environment.go:1319
	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 #fbc28320fb2988d7 Environment-variable access.
repo/usecases/config/environment.go:1324
	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 #6d786512d8531b05 Environment-variable access.
repo/usecases/config/environment.go:1361
	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 #78f61b135e103441 Environment-variable access.
repo/usecases/config/environment.go:1366
	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 #58e8fdb9e4994450 Environment-variable access.
repo/usecases/config/environment.go:1371
	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 #07447250550f93d9 Environment-variable access.
repo/usecases/config/environment.go:1375
	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 #8bda4fc917159255 Environment-variable access.
repo/usecases/config/environment.go:1386
	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 #93aabb127877de74 Environment-variable access.
repo/usecases/config/environment.go:1396
	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 #508ffb4324487226 Environment-variable access.
repo/usecases/config/environment.go:1405
	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 #6237473a62b1fad7 Environment-variable access.
repo/usecases/config/environment.go:1411
		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 #6822e7038488631d Environment-variable access.
repo/usecases/config/environment.go:1414
	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 #20c6f831edf77a1c Environment-variable access.
repo/usecases/config/environment.go:1420
	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 #b5eed6de38407b06 Environment-variable access.
repo/usecases/config/environment.go:1431
		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 #27f0a58183d61458 Environment-variable access.
repo/usecases/config/environment.go:1566
	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 #a54ce358dd4b705d Environment-variable access.
repo/usecases/config/environment.go:1567
	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 #2cf0c320f079b2c3 Environment-variable access.
repo/usecases/config/environment.go:1573
	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 #b13680b17ec37dad Environment-variable access.
repo/usecases/config/environment.go:1579
	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 #b86133690f18e693 Environment-variable access.
repo/usecases/config/environment.go:1585
	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 #2daa8a4945cc3723 Environment-variable access.
repo/usecases/config/environment.go:1684
	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 #9526d5a072abecfb Environment-variable access.
repo/usecases/config/environment.go:1738
	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 #98bb6a36f5e67599 Environment-variable access.
repo/usecases/config/environment.go:1759
	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 #7edbfc6b22c0f19a Environment-variable access.
repo/usecases/config/environment.go:1802
	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 #9e6b7f61a58cbf86 Environment-variable access.
repo/usecases/config/environment.go:1879
	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 #1d616bd61446c262 Environment-variable access.
repo/usecases/config/environment.go:1887
	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 #6a9116ea609aec91 Environment-variable access.
repo/usecases/config/environment.go:1897
	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 #fef37a24841097ba Environment-variable access.
repo/usecases/config/environment.go:1907
	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 #9f517be6910030ff Environment-variable access.
repo/usecases/config/environment.go:1917
	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 #842707ce465fe783 Environment-variable access.
repo/usecases/config/environment.go:1927
	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 #34c1747c34c9eeca Environment-variable access.
repo/usecases/config/environment.go:1947
	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 #c7c77a9d2581c48f Environment-variable access.
repo/usecases/config/environment.go:1951
	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 #2135c2313faca674 Environment-variable access.
repo/usecases/config/environment.go:1953
	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 #b77a3547fa58036e Environment-variable access.
repo/usecases/config/environment.go:1958
	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 #0d52e7e6ce7fce99 Environment-variable access.
repo/usecases/config/environment.go:1963
	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 #63f0b6fa1a834ca2 Environment-variable access.
repo/usecases/config/environment.go:1972
	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 #ae4977673af596c4 Environment-variable access.
repo/usecases/config/environment.go:1973
	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 #6d9a55ec2b59f718 Environment-variable access.
repo/usecases/config/environment.go:1974
	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 #584ffbeaa5fbe5a1 Environment-variable access.
repo/usecases/config/environment.go:1999
		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 #259f3049fdafc55a Environment-variable access.
repo/usecases/config/environment.go:2001
		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 #aa1b5805cad961d3 Environment-variable access.
repo/usecases/config/environment.go:2003
	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 #4f0292c7e8696bbc Environment-variable access.
repo/usecases/config/environment.go:2004
	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 #33f15b0798f9c72b Environment-variable access.
repo/usecases/config/environment.go:2013
	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 #0dd85ee0bdd4f5fd Environment-variable access.
repo/usecases/config/environment.go:2027
	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 #da356ae0a957d5f7 Environment-variable access.
repo/usecases/config/environment.go:2039
	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 #08ae0414fefe1a48 Environment-variable access.
repo/usecases/config/environment.go:2229
	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 #0a7417273c2f4e13 Environment-variable access.
repo/usecases/config/environment.go:2235
	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 #4f73b46ef31929dd Environment-variable access.
repo/usecases/config/environment.go:2241
	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 #51e290ea5ea57600 Environment-variable access.
repo/usecases/config/environment.go:2247
	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 #40e59a5b1a87dc68 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 #50809e354ec2134a 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 #4dfb9465d6f228f2 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 #0d1000775e82be27 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 #35f66ec976b805b9 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 #e549367bfd02a449 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 #bbd65d7f8918b3ae 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 #94aa672dee4fdcb4 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 #6675393c6e3ffe41 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 #7948ff191162a548 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 #772f031b545c686b 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 #d6011edb162711c9 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 #338d4b6aa0e0d473 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 #7232423f5b1f235e 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 #8f1777fcf3333735 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 #679c0cec7c46f5fb 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 #700bd412922d37e4 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 #40f7623a34112052 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 #207341b575000a34 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 #ffa4786a05712cea 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 #2a95c9167324a0c0 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 #43a1d5294ff29b9d 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 #744b2389113c0e35 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 #2d8f619765faebb8 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 #a9c2d9f41f16afc9 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 #43de172686fcb043 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 #b51ac9154bb64994 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 #749b47b24784f541 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 #32585c12efa6d2fb 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 #5d42cc54c1fe18cb 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 #aa6eade4c2aa9ece 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 #ae8bd28a57953d65 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 #67e30cf5e8010356 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 #28e39dac8a913509 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 #6c369b33e68d93d6 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 #a054d2074e4dd86b 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 #9fcd8a2085eb9735 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 #f91c236c1b804806 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 #3b2f43ef3599222f 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 #557e57c24df7ac28 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 #c5f0e5a4627561ae 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 #a9ec2c20a60e11df 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-as4i2c8c/pkgs/go/[email protected]/metadata.go:519 → /tmp/closeopen-as4i2c8c/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 #cc1d1c6b57b013f6 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 #d20fca67301b2ed2 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 #3637f003e3bbf051 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 #db20948e180cc3df 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-as4i2c8c/pkgs/go/[email protected]/functional_tests.go:13775 → /tmp/closeopen-as4i2c8c/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 #177e347b9a043057 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 #6d0ff36f9df9a280 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 #cc0a5f00ab8b3897 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 #ff0ee8e2d0344b07 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 #489589b04a171941 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 #b367a913e93f8c03 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 #cdce23d2a2e693da 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 #8bed97a787b6418a 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 #10fa9f0da0a78673 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 #90523fa5a52e47ef 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 #7592678ef20f298f 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 #b21acbdc49b16105 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 #9f98ff525aa4d29d 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 #c706511a954d1713 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 #517c56094634609e 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 #e7e654e08678fa0f 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 #41ee0e0d518cb432 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 #d43d5b48462bee41 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 #7b506d50c80f6c09 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 #060da9a2d84ca6d6 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 #e002737629c20ffc 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 #a3d8c151c69f5f07 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 #1afbc6dea1d623f8 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 #e734956fd678e239 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 #3be81be673a36da9 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 #65794868c538dae7 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 #57ca078ee094d551 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 #6d4e983ad55e48de 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 #f981749eb1c747d5 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 #fa2d6013515e7741 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 #f54d17ed985cb207 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 #a4d74fd32d1a335e 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 #80e8a0e26726777e 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 #baa86e88faf5df7b 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 #1b37f99f7a0a1365 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 #b2fec934c107abe8 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 #09326551163ae559 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 #e06a6b5e540db4b6 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 #c1c4bf72749a7500 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 #83cf3a92107e03ba 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 #d298d653fce124de 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 #b9100a994cb08ebf 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 #06b0604c7e896893 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 #cbbd5e7e24e09b7d 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 #47b867f4fab45ba7 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 #14347dee28579259 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 #f5291454579aadef 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 #44965777991cfabc 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 #ebfc8d10ae3e72ce 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 #0da9e226edd25a2d 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 #2b755820c4705e2d 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 #564213e7272bcf53 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 #72d3599dc9f2f828 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 #79843062a6873569 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 #a1df8327b8c54567 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 #6374371bff92f0ef 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 #ec495b17b53b03d9 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 #df3aae050931280a 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 #e0dc85488df81f2f 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 #eeb018ee3b60dfd9 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 #8f62ad3472dac612 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 #b64bb65c60702376 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 #f36716788bf9b779 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 #e4b6362edb028d59 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 #69e4e1eb2c59edcf 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 #6897ffd5ca21135b 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 #e8d4ef66d386afad 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 #0621e0ffee1d8c22 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 #a4a3346732bdbec9 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 #c6cee7cab656ab7b 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 #2fbe249492cc9e37 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 #7083e888741ad3a3 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 #13eb784b396519c4 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 #54fb0535720d62cc 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 #f60f4e597be16eff 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 #4372930bf97cf940 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 #47e7472c5f9497ec 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 #b7647f212a9da28b 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 #370d842cea48944d 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 #7ad2f4ece0dd35e0 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 #13571aec060c8395 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 #6abe1c7bbb96bbf0 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 #fde8ef20bc5026aa 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 #68262602cf16472b 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 #4a8ca98694db3f6c 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 #45df9752380de774 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 #6b92ef4192df7097 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 #1d988fd5cd132f36 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 #d8b721388ceecda6 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 #0cc7d54868467fbd 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 #59ff471ddb91b137 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 #3936f3cd62eec753 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 #df6edb33e53a79f4 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 #ea9e3edd89d2cb66 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 #653208330d97b7af 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 #bd96e0f079166d36 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 #6c0f4d3c24132061 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 #ea20f723fb05e822 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 #ae1cc1a7b42ff8d6 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 #78764cff04179adb 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 #70bed9d3342b2623 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 #73d01e6c274ab65b 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 #d62494764a08cfa8 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 #05ff668df3fa2188 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 #af9db90ceda23d15 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 #a14756f9ea7a5316 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 #c14c74486b28ee09 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 #c148baee8f7c1e42 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 #0787afbc4b7fd1fd 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 #fc1f4b97815fa831 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 #ac5d91146d7cc3f8 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 #553f2fda8856bb76 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 #b8077dc38d98bf65 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 #6fbd51ae049b4a08 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 #7372b96f7c1b0e45 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 #4299bf0be3b81dc2 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 #758d86197339919b 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 #018e8e24a71cb617 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 #b740a36d48be79b9 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 #9274c04969b274ee 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 #daa869eb6047275e 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 #acb44b49e6256376 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 #969b02128197d865 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 #da71c1659c0c9010 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 #6cf26b4539df7fd5 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 #2b5de492f09d2cb6 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 #a6a36985184b8f9e 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 #09733eaace1a9c30 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 #030f86b755e3db42 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 #20d6220c29c79ded 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 #656952b67bec9385 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 #f5d576a98ae211c5 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 #d419f6cb7cc9b8b9 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 #7a377cbd24e5b975 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 #ddec8a28697936a1 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 #afc52dfbefc62a79 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 #2a23d804ed5f294a 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 #ed03ecca984c7005 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 #aaac0b4b38cc794c 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 #71f5d77a4485a07f 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 #4ae3fb42832a8527 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 #609f5b92cc32f747 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 #0d315cd29d665593 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 #fce34b7f7b0bd82d 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 #a4b80b492cbd897d 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 #c937be37a9e97853 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 #a8164e8f22f17237 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 #31a03b2e0406072b 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 #331c92bb52409e36 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 #c7086663d6aa1fa6 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 #1908d962968ae5cf 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 #c673c328697e41e8 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 #889963a3f9af3be9 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 #2785048742c01b16 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 #7425fbf4a40bfe0c 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 #22d87cf3c87d19b5 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 #f7d702725be261f4 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 #c81e41337dc2fa74 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 #bb462e9c2c7afa84 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 #e5d4a830317eed0d 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 #1609350a8ea33acc 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 #b522c6db21b3f92c 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 #cc00f5443d0243d6 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 #c484ded63b1738ca 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 #ab45854bf201b9eb 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 #64c65ecb0cf80c4f 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 #30df00aa39dbb800 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 #49b546cf6b0c54f4 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 #4ed8b35207fcfb96 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 #ca3bf43da5bb1336 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 #f79a2a5982b836f1 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 #8eddd2c7fa80df01 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 #e2d5ca757b669c44 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 #e4c54b9ec74053a8 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 #02dce42145a70155 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 #40737a3b85211e7f 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 #d282383703d4f8f2 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 #592cbcb7a5a98fab 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 #b138cbe5d2284edc 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 #9e7e75241e6054f9 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 #ab619d95c0be0866 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 #d3fe294457bf7a15 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 #167dd8e7e826053c 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 #7cc427779f5cf0fd 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 #7ef1b616bb0fd1e6 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 #c8654be8467d82d3 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 #35f6fcb1c2fc2cf3 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 #636a15d33a4012a2 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 #1324250e313e015a 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 #e180bf58a21b7181 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 #1cc954395390b972 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 #4cce3203a04a46a3 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 #b2a060d74d0e911a 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 #7bcc62293d2bce5e 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 #d177e11af25966f9 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 #38b5e2a006509408 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 #dd03dafaf3381a56 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 #3f06903a21191e4b 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 #a14413b79bd73bdd 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 #0cd0c349360be234 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 #5396119c6c331d74 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 #aee855e023d7fbe3 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 #73c824cadaa3b001 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 #a973193ce4ccbdda 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 #2e3971ad9f27a360 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 #06940702a4e4f6b6 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 #44b620e5b0754bfc 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 #5471313da5152145 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 #f6aa4c23e9311373 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 #62cf87a345e63aeb 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 #b12eaa00e6f39071 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 #75988bfa098772ea 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 #52ec2a64b1697684 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 #16b78db7ec619f7e 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 #de2fcfed026b80ba 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 #156d93e8a3a9eccf 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 #4c0f0e9d4478dfc2 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 #31cb52255ffc6c57 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 #256aa93efc8d3184 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 #dce162cb892d1677 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 #6f05ae86ec171b1e 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 #ce19321398e10d2e 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 #d86b057f1cf0e86b 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 #cc89d5329d224ec8 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 #4231ab29e3f8b662 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 #0dddde9d29e37a05 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 #c55c3bcab72ad696 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 #a3bd56e737d3a638 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 #e9c56ef3976567b8 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 #53134bc02e80a16b 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 #6d5add30f9fbbdcf 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 #3ede9e4515ff8da8 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 #f300ae9215a812f4 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 #c76527260f95b306 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 #39700c7bb4a0a809 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 #cd0d8053095a4c1a 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 #31c49960e80fcd35 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 #85fbe5fa7eedd26f 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 #d908dd8fab1e6e43 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 #913980a9dc88f288 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 #a9fc0e534aa73c1c 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 #1a83ed806a5a10f8 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 #13cbf260aa0f0aed 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 #886e3edacc9fb032 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 #c696bffb495aec03 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 #b262872c59645396 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 #05ac6fa1ee2714db 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 #10f4dcac437a0fba 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 #c9d2c16d0dd765c6 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 #c4c9bd4f67dad7b9 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 #f4c7aa4b42faa996 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 #90116ed5915fb9a8 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 #8088a8bf4dd83a11 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 #4d38fccecdd91109 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 #c2f29bad077b190c 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 #140c89f5a24d2528 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 #69ca69f46546c918 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 #8df05b445c7b3689 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 #ce3690fa1af2ea8a 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 #885d1658b2ab9a93 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 #8637453875feb026 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 #7076f703a48cb62f 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 #4d2d8c05c8ffe35a 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 #3a0a7d1ae94bea97 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 #2d7035458ba291c6 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 #21178c1093d8b2ad 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 #0ee54551bcd0194f 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 #e3c2e2efcf503a8f 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 #2abcc093424b4c3c 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 #6810791bd58fee23 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 #a6879edd99d0a021 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 #e4ec714321d3ac07 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 #d66a53e89644e8ef 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 #230cca675ae0725a 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 #812f15ddc4c1b950 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 #625b555ee623a45d 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 #99504db29ae3a2e0 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 #ecf42a3344c7fba5 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 #6b8c7c8c79f6a29a 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 #a4fa917e32eaeafc 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 #44b094401e242d82 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 #154ce55e1172a654 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 #66ff685da98a40bb 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 #a883b796d2d42f36 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 #9654463b0b2340d2 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 #1b6a645d9548db31 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 #edd2c46c7d28aeb6 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 #ab7c15236e686bdb 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 #949ff309e64040dd 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 #226eb116c56e09c1 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 #4d6c659cb72bd060 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 #d8c8c025cb5eec12 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 #9fc7da537010a1bd 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 #6f48a7c3d4ae1631 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 #3e4bf07061cce3d9 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 #4596dd17c5855ca7 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 #01e479836c84eacb 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 #600d0527b6ca911e 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 #9f8eab0bb82bf60a 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 #e4e86e0285e7ae5c 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 #795fc2940ec34367 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 #46f3fda2fb83dbc4 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 #8f60f082863a0179 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 #9982abb9f7cf7e75 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 #5e153663442f2350 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 #42722746ad1ef6a6 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 #d03182a01784be40 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 #e1da510595192580 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 #6b5d6ae79e72dec9 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 #20f2cb0394678514 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 #ff316aaf6499ae54 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 #02b35412e26dd1b5 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 #89bfbe78f99e7371 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 #73aa43e5648b9994 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 #f7fd4afb50cc3d32 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 #a9bf6bdd4890b8b9 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 #f4a5359753a0571b 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 #4d9567f124bf17d5 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 #2270f346afafc745 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 #8fd1874c763f8ede 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 #e0bba3190a9ac419 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 #e9c771b2dea8928c 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 #c99722792624b977 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 #f8f0fe1a9c89769e 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 #a7521a14743e96f9 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 #5027eaa5e1716222 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 #66f9d45471694182 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 #d86d36ea9ef50c70 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 #19707186811a7b63 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 #1a73c912de2a0588 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 #46716f6edbee583f 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 #af7f58028267b482 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 #ec2855c820d2e45d 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 #c7645635798b77bc 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 #d2000825be9863d4 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 #e64278f57112dbb3 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 #ac8772172f4cc3ea 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 #f11b021bd4d03871 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 #6eb26a7dc99ca669 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 #4f6e4d0669442f92 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 #1b16b6a9dbd82af9 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 #d7c163322c7aff23 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 #dd5f89814bdf779b 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 #1055c752d9e2f359 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 #67cc156c55f194dd 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 #2bbc153ba6983c0d 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 #b2f66314a9c97625 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 #ff1e1297aba415f8 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 #bbf4c22dd7d382ca 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 #f0bec248a6c4328e 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 #dc3eec7c764a5996 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 #87d2d5cfb5a0f7ca 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 #5079bc0d43461881 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 #6e4085fd52fb6b7a 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 #40254897cecc1fce 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 #080d6fed1c9f5c9f 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 #4658b97a320b6313 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 #5a7dba25917ac875 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 #5fda89474ad9b27a 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 #244904d37e286d8e 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 #934ff3d712a61b06 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 #285b2b9418dc82db 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 #b6766e8a19646303 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 #3dc0cddb26898657 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 #288234cd356c8240 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 #ec8c41c58574c259 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 #659d1a4a65659d51 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 #60f1bd21a0687cb8 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 #c9fa4be5588794fa 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 #b22c9ff6692fbd4f 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 #7b12f6ecbd3383da 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 #c8ef70da04981f0a 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 #fa0a325f98bb82c7 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 #ac0fb00ca9dbf9a6 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 #e97bde6396abd868 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 #198bc34523f64c03 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 #3a8e30cf065ddc8d 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 #4a81c925d6778bb2 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 #c6813385b7db7289 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 #399a46b344bb8743 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 #a5a259399ba6c7b5 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 #81d90ee02e1d1536 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 #ebaaa4385d474360 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 #29972b030fdb0685 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 #aceef2bd5844fd0e 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 #ce19704a1bb88652 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 #abe231e7f7694415 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 #812917f04d77fc7c 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 #0f2816b0d8d89b80 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 #4697be1e85af2a70 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 #69d924c700fb953d 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 #c29bb9cf786e383e 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 #88f426878729ab49 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 #545a938d64aa89a2 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 #71309748d079268e 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 #8d3df79cc942a637 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 #11afd7452f7025d8 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 #904b8d400fb49121 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 #ea72c73bb8a9b34e 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 #1b9590492f12e50e 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 #e74d36bc26a31926 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 #6a230c1b81753ace 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 #7a92a683d2c7350b 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 #6622dcef64a19c1f 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 #6cebd3a0e4db3c96 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 #10a2370cb684c6b3 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 #184ec1652ac0a35b 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 #65df1db153955a1d 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 #91bf777292dd5325 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 #0b9b81e80f10fc9f 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 #72c283b230f9f944 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 #a8bd7e61fe9eea0c 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 #d5c6b7128819ee33 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 #eb0355a184cb334f 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 #8af4af9fe8f55b58 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 #bd8da3969fc7d50d 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 #3e5c40b492477cd8 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 #ee7d315d68f5998f 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 #01db2adcd6f198ce 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 #f28a97c098ee618d 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 #ab3c2f69c425f109 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 #00be304f623d5c44 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 #a1375d4227ea59ab 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 #6c4a276e3d509613 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 #b3a40d25dcba4784 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 #b5832a79de311693 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 #1456c179a90d64d0 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 #f23997a37a846fca 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 #ff43faf5f9019246 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 #329a5c063f0b8b3f 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 #5ae672fe638639fe 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 #d5890cfdaba065a1 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 #d1311f06bd72a71c 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 #b54c8a29a451d617 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 #52709b8c8cbeb7e1 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 #f485a82564c4786b 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 #2a4cba58dc2f5ff0 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 #952dc25f05d07625 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 #f17feb9defa34ac4 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 #b45f7ac017e681e0 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 #20bd4e5ead1c5793 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 #72fcb555b6c9c828 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 #809e6700a9fe5957 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 #8bcb7241383502ab 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 #5723c04757c78c5a 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 #9d5c207a5275b1a2 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 #e261a1093b00f3f7 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 #4ae4f11b13def3a2 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 #8295f27c14130a4c 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 #200e0e4fee752d06 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 #dcee263649e953b5 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 #02d015ee11f7e249 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 #a69c722d346c2942 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 #7b71e9fbe882c648 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 #f62b2220ab6ef1ae 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 #75a4270dcfb7fc5d 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 #2727dccf068910a8 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 #ce42f44104dc1e7d 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 #1c75a31729c27fe9 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 #3d079dd0da3fba83 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 #724c8c10440716ff 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 #477034eba4c1ed9a 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 #8d0a348554414ec3 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 #1a4d0c6e16d560f9 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 #73d4559e0d2f977a 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 #dce91d15b6411687 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 #5b9ce3278448a785 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 #b8c984e5919892d2 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 #8d4f534a8ab0b88d 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 #896aa6ff1142dd31 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 #d2a63ced3f13d1f2 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 #a13d52db7d6f6366 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 #3f69fefb5af91dbb 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 #3438354f2082c98a 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 #c672315bf89b5fe8 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 #251d29f4ea718d1c 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 #96655a7f353e7683 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 #9e76cfd5a1701495 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 #7e3b752fc8f22530 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 #d98182a6f9bf06c8 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 #3569f69059906425 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 #d243f386ea6d471c 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 #cbe6ea373649666e 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 #dd18414be4975a42 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 #670ccf319bd9624b 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 #82a8ebc806eb2245 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 #11172466b4a4add1 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 #b4b813097d2706b4 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 #9dacb33ed76317a0 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 #796f39377ce5b637 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 #7421e4ad2d9476c2 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 #1b59273a68496730 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 #17fb554ca2662b38 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 #68ebd14a95bfedb3 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 #9d1fcb43f2b7458d 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 #f1697dd01fe89e10 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 #582f4af7d65e61a6 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 #10afde327f6f11d3 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 #a239c2d349fe0d6f 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 #0e512d915619400e 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 #f1a26f62a1894345 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 #c3817f0227d21824 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 #f584678f03d14616 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 #f09450f1bc15e6fa 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 #1f774fe0b9a6be89 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 #7e16b9229f31ef9e 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 #3c23b1cb0124b39a 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 #1c1b7d7c4b84cd46 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 #1819d2e900034757 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 #d33742ae993ba4b8 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 #66f20b3c5647ade8 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 #5f20659ef57ed03c 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 #7d03eba2f1107e2d 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 #8d2bb8453c87ee3d 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 #472976ef3caa476a 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 #d4275ebd924f726c 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 #44b702d5fb31544c 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 #0715e936caff4f76 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 #b9a9888415fd1795 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 #c9585eab3e943fc5 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 #ad2ad5a42c0b11e8 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 #fa5fc5792c19c772 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 #2282d359b6ba8bc2 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 #51f812e81a062ce3 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 #6b4abb5b293c531a 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 #60efbf46203b64d7 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 #45132c3aaaff1607 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 #dabd2640ca573ebd 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 #d9634f84861d5d4c 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 #c9d3caf876592f51 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 #5c101e7ee5795a56 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 #9c3662cc68829b79 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 #2d8e605896ca025c 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 #24478628471992e1 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 #31639ff01f8930d3 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 #151d46c880e20a94 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 #d5f3c5c95856c137 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 #6d1d99e1548ff873 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 #3e601877b2c260ce 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 #7faf2a9342115918 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 #dd661c485ef84ee8 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 #88c73d0b00960322 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 #93daa44d2d2025c6 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 #abad0ed4a9f43644 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 #b761dd65858eeb81 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 #f339bbe81c0be3eb 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 #ce4d67d467ea1ee8 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 #20d5e942de30d79c 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 #7ac9e9bbcba0ed55 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 #465ecab03157e65f 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 #faed93ce5b24b779 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 #8f7f35417efca933 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 #6baca3786ddf12b8 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 #ab410e2955468a3e 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 #4b4ed2ee04d76852 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 #c694fb09d8c518ed 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 #c8c482f35ff403b7 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 #e74e3fb36d850c35 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 #15aa01c86070935d 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 #0e941024a4a7f49d 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 #4a09dec05ce12f65 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 #18315147ddba7d68 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 #86d2965f0925f32a 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 #9981582898a2e4ed 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 #281716b6728ff52a 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 #d5ba6e99537ca9e5 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 #eb4a407fd69c3b49 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 #eca3e6aa37150e4c 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 #d2e91121d5f60a32 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 #5999dfca64e73bef 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 #30161dbb49d7223a 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 #3d4b075a741edcbd 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 #9a600e290255ac21 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 #9db319dcab3f249d 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 #01eb77f4e36122a4 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 #6b0994654da7b8f9 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 #77e864b0541c6c33 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 #269979031ce6f112 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 #4cb5a4720c2a69f9 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 #9f9b4316f7aa5926 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 #5b24e2c0a57e3b85 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 #d5e635d27a52477e 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 #e6e6d02be0299854 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 #059baa01638ecc5b 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 #946f0276234f7dc8 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 #45f2fd450b359311 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 #9d3a11bc3df6eb49 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 #8ed6c7f391473d59 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 #62b5f83d05ba0dd8 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 #cd7b3a8661fe6610 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 #4c9c087345f9fd5a 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 #47adb3c42aca8ac5 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 #4be4fe414e82d8d1 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 #8230915b4a96acd8 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 #ed6ddd33ee1d4860 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 #7a04ad4c1b639269 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 #5a15b1504801d206 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 #86e8ed58c0f1597f 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 #ad9176506332cbf8 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 #79ddd6b9e50d70e8 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 #e2f6456ea3d9c534 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-as4i2c8c/pkgs/go/[email protected]/internal/cmd/generate-protos/main.go:520 → /tmp/closeopen-as4i2c8c/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 #8926a9d8c1ed2f47 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 #8d075363be8193bc 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 #84bb209233635c2d 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 #fcf6c8f02d44abeb 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 #cf535f56ee3d62c8 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 #9705283e7e39cc7e 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 #3fbbc042222e819a 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 #37634c4b763805e1 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 #06f24bf213b95bc7 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 #950149a895ee485b 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 #575dc3bc137e1e41 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 #1269f8bd5391ce1e 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 #d40ba3a29077aba0 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 #9d41e70ece37c018 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 #04aa7f8a0e3b463d 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 #6f1b14dc0a953dac 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 #edaad2608f360d89 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 #4b5838ecfdee955f 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 #c69acf9dd8156149 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 #6ca0701612661efb 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 #cebd88b2c63c5bc6 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 #3b5250cda4ec661a 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 #c82a4d4315243b44 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 #05e5ef32111425ed 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 #7cfe9823ed2ef78d 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 #919fca5718a08d2f 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 #e6a8199d326e8930 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 #1da8139875595b82 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 #aad341e2c8f7783d 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 #9075324c995b1a9b 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 #e63a266eea537ccc 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 #7322ae7308e45384 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 #5132e2df969509be 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 #387b3363ef1333fa 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 #61abbc36bd24c990 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 #ac7a99a910c1e83b 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 #953aab24ea53ef4f 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 #11caae7c92caa5f6 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 #afb9a0bdde22af40 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 #c1a6c0e68731dc61 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 #891273d56615e6b8 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 #633b18381f35926b 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 #13a35806116ee0dd 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 #846bbb01a61f7607 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 #2d1ad7f227a9d414 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 #38a7cfe20f666b01 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 #a8ea43dc4fc7e6b3 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 #3eca4f3204c954f0 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 #f7b75627aebc8fab 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 #7d060f8a9bcf45c7 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 #e0511d0b559305b0 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 #331993eb003ae8fb 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 #ad6904a3500a1752 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 #c53958dd7e937095 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 #97cdd894593088ed 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 #acae5da74d7653fd 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 #821d871cb9fc763c 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 #9ddf0bd026b8cdf8 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 #03e238b4ba36ab68 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 #ea79c409bfada3cb 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 #5972aa6788109f46 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 #8616a4004aa86121 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 #d524df1ea9bef95e 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 #9b227f79247a445c 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 #c49acf4e33de97d9 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 #26fc0650ae212602 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 #6e418d6b37c38517 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 #9de767170f475cfa 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 #cbb0f15fa26f3f63 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 #1f87ecfa7a7bd7c0 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 #eca7127edbe1747d 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 #4924ed710c412c32 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 #4881a56227504cca 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 #88e1f7f04f79af8d 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 #d8bcdd4753a13ccf 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 #3351982dbb32898f 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 #89db6aa95029aa60 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 #561a122e08684c84 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 #fbf89115ea8aea59 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 #4a4e4214008b07ee 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 #abf2e8155c32a263 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 #bdaabc2edcccf490 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 #762c554158b22b36 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 #3598524ed6d89633 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 #98df893b9abd27b8 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 #d9be6911d50b120d 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 #215db3f6833d333f 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 #79be06b69c88dd38 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 #3a6025acb2e0fce6 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 #6418f1edc53f6759 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 #3510d50c5fd42578 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 #0cc2364e2fd8cf09 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 #9a699c32a4b16fee 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 #d69f164fed9896e2 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 #7c604490141cadd9 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 #7dbc272e31d28991 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 #564b66e5460ebe7b 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 #5b4dd6aac03245ca 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 #8f0432313fdff376 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 #47f85fd9a1d99342 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 #c1bdd2f6ac2791e6 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 #1613147efdabd679 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 #dfaa582d88acfd64 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 #3476750150ab1653 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 #0aae647c20b9730a 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 #de1a10b011e0dcb1 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 #68354cf762c29241 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 #588d50c97c19d3aa 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 #aec703d036efd7ba 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 #ea9554657c8bd12e 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 #fc72d27f66030959 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 dependency Excluded from app score #5c568b17aac23f7e 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 dependency Excluded from app score #74e914b8f934840e 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 dependency Excluded from app score #8fab8347cc4a44bd 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 dependency Excluded from app score #8296195a042afb11 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 #6b268374482ae846 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 #5b1e7024342ddad8 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 #42636b49150cc50f 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 #4e6f383c56e69b51 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 #22b7b63116d667b9 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 #58b7a8afb2ca832e 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 #5908c7fe6df071eb 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 #c9ae8a6249207671 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 #6d410407759a1c7f 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 #a238d6b81835e709 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 #bdf87972908d81a7 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 #a75cf487fe644617 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 #0969ad35cde68358 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 #2e6a864f46932aae 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 #f8737b1f1b8e982b 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 #621b8c097f354df3 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 #f15de14b7af34dcf 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 #120afedc52d21b04 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 #e85e5622834fc75a 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 #1b0a3e4189c001c4 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 #a81fa75836e03bec 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 #f22882a6f9205770 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 #83c2aa08f737a329 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 #38e24a013319a4d2 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 #1bdc0d783a4867b7 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 #7a0e5a7ffd10a1a0 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 #6a7c6996f3f521f8 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 #22a943400883f242 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 #b02e5d691bd18850 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 #48c5efe2f1eb13dc 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 #6fa6133a6b735f19 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 #d868f7403758de1f 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 #488d7e4787e21bdc 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 #fb3504ca473a5ef5 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 #b68a2b242e9d19cc 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 #23529a58c7677168 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 #8b533ed013a74c11 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 #8ef8f6daf9f363a2 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 #c97e6bda206e3b88 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 #459c34f9f1a8d4a8 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 #df5704eed4119a83 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 #a7e52d81cae3a19d 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 #bf25f9155ca84b68 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 #4d4e1446501b2714 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 #188945840e68d851 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 #4947eafd380f1beb 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 #49c819d7b836b61d 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 #b74c6c1018fc7cde 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 #f0049203b1361f58 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 #6a8c9558869f302a 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 #e84a87d34ea97ff6 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 #a33eb95afb4b7857 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 #a1f663bdf10cd490 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 #ca561d9fe3d2853e 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 #8106e437356f327b 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 #f174cf186280f294 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 #e405031acbae7b94 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 #1c810f9c36ec1d9e 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 #ecf83b74a71a2d66 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 #1296f3aeb7c474e4 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 #e14d9732493f4cb3 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 #b8947db46200df7b 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 #e195d8f34dae56ff 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 #fea199ecf86d561f 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 #33c93903a49fa89d 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 #76e64244c19e4749 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 #3f7ebb2a3cc2a56c 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 #7cbfa865e8c93027 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 #241aa4ec8effe40c 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 #51a98b5eca93cb6a 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 #4c220b97c58db6a0 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 #0d2f012b7266c9c4 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 #0946798c395fc498 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 #77a9fe74bdf4f3be 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 #a0498018176b89e2 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 #98f6ede1d4ea60b9 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 #b54b45d89b92fe57 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 #2dd5fe846de6a7df 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 #c33f51f138b36025 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 #2e8cb70b364ecf82 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 #7c4803002aca4938 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 #ba1b343186a31d83 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 #076ab6d1ff7f2fa2 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 #98bcfa1d7f1c26da 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 #589b53b9b372a610 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 #638370a12e5da45f 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 #93668e2bcf2fce9a 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 #d2a2cc63cbda356a 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 #b660cb79e086432e 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 #ba93790ca8357568 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 #58f6e906e8fa851b 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 #896e4db6cc31838d 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 #7bcbdad483ee826d 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 #0c412dacdbd96886 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 #6644cfba9fc6a362 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 #9ce457b211897644 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 #a688d63a6a310f53 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 #9e55e7ea9a748919 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 #ebdd81eb3cfa9f56 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 #29dd6081b2c7f5a0 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 #1f7a49225728b8ae 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 #68640daaa64abb67 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 #2c6a8a9a640f58b2 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 #1b734bfb09d3dd89 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 #a4c35f03fd4dba71 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 #a0b5b7a39364c76b 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 #cc2fc6e936b1ce8a 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 #48fb1539675982d2 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 #4e28736ad63ced08 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 #10409312dcfa3e9b 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 #0fd4e7e9d2891303 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 #04d17e3f3f79710e 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 #d983bac7e16d387e 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 #7a452269fd6538a3 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 #84e76492728021df 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 #f5828fc9c7b33feb 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 #0bc9fab4341386ad 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 #163ca1c5b7f89b30 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 #2e06a734f2b4ea84 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 #9e93e1b88d0c82ef 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 #994c0c8086460d8c 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 #fa061b6365ed8ede 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 #e1baec78e75c6084 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 #acf9497fcbdb7830 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 #60c613863b5e83ed 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 #d4c0ae921345e64c 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 #da007c31d85a41af 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 #46fb2dd332a9e3a1 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 #52e0f57e763872f5 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 #78101772260776af 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 #175124f872ed2c48 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 #fca0ad47c0b47607 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 #65f39d654b71ea50 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 #86fd1f691cab3aba 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 #8b482a1fbef1fd9a 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 #4fbaff21e0f44308 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 #6e5c6483252b7b35 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 #67cf8c0da25516ca 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 #e99913398785bcf5 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 #a285e0bb6a71cf60 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 #9bafdd5ad5532981 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 #a61b7e0d46b81e1d 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 #7f9017681b81b558 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 #883b22652922db43 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 #a1350235e5415401 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 #2e734d4477715f1a 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 #bf0810083b8562a7 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 #b8572a997a85d1f8 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 #3de4c0d16b11b024 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 #6b0e077b413c4137 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 #fb35cac42ae46472 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 #bab065f92855f67d 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 #b7ae64f5a7e729d7 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 #347e4f06229bf260 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 #48a4affa52012c3f 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 #570a8c9259c19a6c 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 #7aae66af946b67ff 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 #41107b2e64c04d13 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 #70aea4d3a8e3813e 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 #64e0026b6053dd10 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 #3613ff0ec82fc130 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 #121d471f2a76b7f0 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 #6a1941fad8c708bd 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 #b1fbc05d53928e10 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 #547e28389a0a74b7 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 #2934d89c0792f08f 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 #bfdbc4e6464d0584 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 #1d5f31b163034a74 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 #2054c5fd4df07bd7 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 #ad086a2d66b5ba44 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 #a91ecfbc2c2cf0dc 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 #709d902c124c3270 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 #d40205c5c40ae070 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 #81953640f45c6474 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 #244a0077859ba8aa 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 #e5d76710c943c10f 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 #f9b33f80907ac018 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 #a9c008e62ee70dfb 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 #7795a4d7b615cdd4 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 #22311e7dd08862c3 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 #e04c4996d3f0b3e4 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 #f78413643082694a 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 #7597249a0964539b 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 #59d6e48842bd36bd 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 #ef60a2d12865448d 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 #6243459216c404c2 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 #9ee4b3767ccca7d1 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 #9275d3de654ce776 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 #50412bbc00fb7a96 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 #df026832c2a1e714 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 #53966a3dc688b08e 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 #3037028fbf65b310 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 #f8aef226d079fe99 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 #390b0459b5636f22 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 #e781e7160a66850f 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 #661dcd5fdb054162 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 #7f98581c6e0e4088 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 #4b228528fd359499 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 #f6fe4c36712cbe29 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 #1036a7b7aef7fa14 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 #f1ba904739957211 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 #d41c2c470842bb06 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 #0152924803548e29 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 #36cedf05f054b1f4 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 #f042d78075bef19b 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 #abc87b0718654c51 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 #f152138c52f17b27 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 #5e989c83b47ed80c 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 #a7406179391af401 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 #ca9db4c895878dfc 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 #622d7b5d8b008b58 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 #ff526a8735642057 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 #a3e9ec08c669f869 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 #9d069293f7e53be2 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 #95dbe0df29b1b7f6 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 #711d766c10851ac6 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 #e4e042b620297515 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 #d4a9081190831873 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 #4c78b1e9ef3465f1 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 #f525336ce4584264 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 #d9904cc5b789c933 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 #22aad81e6d0259f7 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 #346fa9a0bba29174 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 #1a19234c38c35af6 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 #63382414403f7d38 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 #3502e96a86c229af 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 #643744c0c854c49e 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 #c6df60aa3edfc4f2 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 #57fea7da21df5b19 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 #bd90756986490458 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 #d07c6ab615204ddf 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 #5a378a319068579b 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 #d9bcf05ead29ee9c 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 #dcf5d75de92e5481 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 #70c7924f94b74d30 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 #de79e9a25cdfff57 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 #9ddbe065469ea75c 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 #16096c12e07d96f6 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 #03ee5e8131dc36cf 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 #33129c6ac916a680 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 #f7d24dbf7335bf88 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 #43d124fa6c7e6569 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 #1fa08612f922e42c 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 #5172f807af160781 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 #865f88620688cd22 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 #e08ed5547d56cc13 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 #c890f612a1e438e3 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 #61acbff0bf38fe41 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 #3dda5a8c1ff1c3f3 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 #1b43c6989ba18029 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 #cb18d51ba7920d24 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 #63ebef2c84a0ad31 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 #c9d2df66d911f9ab 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 #da385ecbf9a41dd9 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 #033608b61125fbed 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 #120f827cfb66d542 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 #b04694facf88dcbb 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 #6c27c41e30a6c5e7 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 #9dac5b49785f78b7 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 #1bd387749ba1af61 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 #5ccf5f2a6f2c95ec 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 #f8922b8ae3681618 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 #7e3a88b23a91a7e5 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 #0cfe418d92778643 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 #bb01eec1c90b6535 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 #481af1aa0a319a76 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 #05f389e2ed3c4177 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 #1f830857ff2c9e0c 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 #f05466ff0a2716a5 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 #535aa611092b342a 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 #a9ae6b57131cc424 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 #3db482cff2ee3a55 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 #8cf3770c07a5af2b 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 #fa5603b1358ade94 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 #d4b07adca1bc3541 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 #637c46ac0cffd129 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 #46304193d5ed6a8c 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 #d4e9b35dbca4322f 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 #c5be515d6b33a084 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 #a1aa5b06452ccff8 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 #572f8222613ae1c2 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 #6305ffe4b6aee768 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 #1db113936e93e978 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 #7c362a2c6cff8d61 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 #3eaa62c497772e61 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 #756977a54e0462c5 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 #8eef428e64e6d85f 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 #4c726f7960a3fac6 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 #477018a387af8537 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 #9f1a363a5c16dc70 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 #f33a6b9b7a770922 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 #ddfcbd14dd565213 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 #b2e540d0827721e9 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 #f5bf167f3ade5d36 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 #f7c66b2e07c41161 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 #4b3022779d5099fa 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 #198c92723c7ae26a 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 #37ce21f7020240f9 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 #1d3441c88fc23d5a 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 #c0aaa9d43708f368 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 #83018903f4a2a1b6 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 #50e2342b9f5ce5d3 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 #f592db03b2203c1a 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 #1174560e5acb0f95 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 #a0c9ab1c2f475fdb 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 #1b4672c682591886 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 #b97909b9847d1e9a 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 #64c4f0e6ea4c31ae 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 #6492dd295b76ad0c 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 #8e82ee94d6b5ae68 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 #91c56b0f838acb15 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 #e44c3ead263cb4f3 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 #0a0f3c888addd1e6 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 #4c8d65b305e031b4 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 #8ed4ff27e8a038dc 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 #2686db105fcb9faf 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 #bdb1bebfec43b014 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 #a8a34df8e14a9b88 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 #d4eac52f989ba44e 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 #be0e79822426d0fe 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 #484931fee0d3d0a2 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 #e26324285d555500 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 #9b5163fa0005c239 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 #d7efed28591b67b9 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 #1c52be934554280b 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 #2314b8531abc6e2a 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 #4d35bf5c66a85f37 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 #29548f16f02b21af 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 #9a101bd144f0ebd9 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 #30bcd9ef75eaf02b 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 #9f9ba8fe5dbe29b9 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 #6d2d706476080804 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 #16dbbc0c221b2c9c 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 #fece6c648fe764d8 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 #8c95dc961ed50fd4 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 #62db06d11fba1430 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 #9c89cc507f08fde8 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 #9429b171424d01e6 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 #8bf2475a374f6e96 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 #21ad93cddd08ff68 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 #984f77c7bbe72d2e 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 #eee5b19a31f08683 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 #477c35fc216952d3 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 #02373a65cd66f11f 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 #18a328f0b859470e 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 #e2b8b89a96f19f16 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 #fb84d8eec9ad7f4d 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 #4dc8b25e016d11cb 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 #ba0f340cfe5a3332 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 #28e77110d7b06e4e 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 #e40f698aa79237d1 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 #df5d0ebaf9f820db 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 #45294490333b3df7 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 #6427ed92d5d0460d 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 #5dd955a20505e45c 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 #ddd7ba0c341d7617 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 #5eff17dfde7d430c 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 #81b424bec49cbe10 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 #49494d2dec7fdf4a 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 #465d4fa71ae083a4 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 #ca08d0c41b6c4675 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 #0935f4cb56528aeb 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 #f6cac43b5130f189 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 #cadf6ce544f6c8a3 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 #f9bf1b819e32216c 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 #21b0c5be6acddd0c 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 #5e51b1fbada11c98 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 #cbe27ded8a682547 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 #b05b6643b020653c 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 #344191e4b1208193 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 #8e307d21c28d62c2 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 #23bece823aa109d6 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 #09b457c41141a23b 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 #44c1a2e6927664da 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 #12e6e68757e9869a 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 #d3352dfbc5f837fc 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 #8ba0b4841b66dd57 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 #d889ed0fa0549c6a 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 #4e352f059201f2df 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 #5d646e6fce79386e 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 #e146d94acbb5485c 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 #bf62da03e74d7f7f 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 #01d41ef97fe583b9 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 #a4d8fce39232d442 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 #85a7c6a4812ffc7d 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 #e0e096d88ce8a850 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 #29dec268ef46f5a5 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 #f87c5e9990336ee0 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 #80635a554ca7afe6 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 #e04d6dbffedbb37a 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 #5ba2ea16701d4fe9 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 #830a8c9d84b720d1 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 #7667353edc362bea 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 #6138d149ff5c137b 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 #41f099567a53f585 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 #2498023b14d8a186 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 #cee6092d947494dc 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 #12e68063eee94d79 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 #aeb742bc5c909200 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 #56a65320e5c208b5 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 #220dbca5d3e87803 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 #dc247f7825d58cee 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 #ff214212cc14394d 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 #95c65a682c588a28 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 #fa88871cc79a0256 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 #ffa49b30b4de65ce 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 #8838df1c97a7f6b9 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 #43b13881d299c177 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 #266b0556cab9c2df 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 #28ee26b02af85ce2 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 #d8fe02cc8ac80656 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 #42b2d1aa03e73df9 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 #6f61dcee6010d45b 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 #ab97c99d44ba5648 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 #8648a2ba56079e31 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 #4dff1fc6f20d0405 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 #ffff835373e54294 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 #dcb02869b5bad12d 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 #4ec808cbef31ef95 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 #ce08537c28a1ac64 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 #d1d65ceaf998432f 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 #583932da8662222f 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 #97628810e7b322b2 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 #efc847ec6b1ed0fe 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 #8e2554eb7da87c03 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 #af7e18e83612d137 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 #2541e5f4f77ee366 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 #a9232aba6fe3eb6a 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 #1924ae070580b4ee 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 #9b24af369fdf1522 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 #fa2099fe338e3b58 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 #7689be72f78e9b2c 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 #0daa56c9319e4344 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 #04dce3af1e6b0ebb 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 #7be1be9faba23b83 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 #47602162ea5d1615 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 #6a1a91d26ba41e12 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 #cad7d93d299f189a 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 #fc0fb734eb0536b9 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 #2fb9250b05401555 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 #4322502db499ea9d 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 #f67d4dd5d9e14482 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 #47638dda31cec7af 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 #947f1762e3bd340d 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 #0d8e5fee38b11f9e 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 #1e08660b0419e66c 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 #1144958e0ae12d9d 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 #0472462e38d57b5f 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 #fd653ff7d89852d6 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 #977d146c29290cc1 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 #7d667a499384c51f 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 #e411eeede7db99c2 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 #1487b4329fda23fd 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 #456ab7344842fd36 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 #08471c2839514636 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 #9da80b21af9846f1 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 #aa50bbfe468fc90e 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 #9a1c547805e61012 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 #03e1ff8766c0e63f 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 #a707e4d2e7a7345e 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 #f0446ae3e733d812 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 #c2c2e41485c0b494 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 #b5b4d58c0152914c 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 #8764c57de33687b4 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 #789a24ad929284e3 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 #7cbc007d1dcfced4 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 #491fdab8e15d85d4 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 #deeab0ac1920d92b 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 #7412b2136f543446 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 #2a83141270b2a1f1 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 #2516bbe9656cb258 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 #ed97ac736be4a462 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 #9443322c09d92e6e 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 #3ed6284ff97823a8 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 #7379c3d5a6a95d67 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 #64a0226b30382632 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 #55415a6f5f3bf9f4 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 #8f42384824569060 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 #583563e39248b1e3 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 #432596c83c2cb6cd 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 #5a2f9425557636f6 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 #d5ec9692521e70e2 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 #f5a9d8eddc9ee645 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 #afbfc7223d039bef 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 #cfd837616cc28efa 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 #c12b4df7dd744e72 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 #59633c0ab362d094 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 #0c747f28b8ff1874 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 #32b62f4c7fb5a5fa 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 #cb190c9dcc147271 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 #51a19f33943df4ca 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 #0f994235d86ffa75 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 #9c13ed74e5ff32c1 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 #cff2eb36f232c586 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 #19486ba03f1eda8f 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 #1e7562a779929068 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 #6c4404da6e30fc2e 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 #98894e15d2f2b663 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 #5a6a41f9cd56c7d3 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 #bba35be8aea3d103 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 #b1d22b3ac6832393 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 #0270c95bfa23f1cc 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 #5d77a1654f7d367f 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 #d7f208d69d3ba4b6 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 #9810162031d299ae 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 #ef262ed8aac74ba6 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 #4874ad58ff781c8e 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 #f727493508cb8886 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 #1517a95eab50917a 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 #c759794bbee33443 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 #84f7d2a35176a264 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 #2a3401f6c69b630b 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 #31a21e0339d357a0 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 #7a99f49160b94ddd 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 #decaf190d59df72a 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 #4915a578894fc25a 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 #a43c8017e761b56e 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 #7276c6a52268f522 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 #c6368dfa4ac9cab9 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 #8afb0357220ab0fa 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 #ae8e96f227bdf313 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 #72cbfc94d1dfe2cf 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 #0c297bcfddefa14f 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 #fc547ed4d5e57276 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 #f79a715c14e1877d 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 #5ccb3628b583136e 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 #79db1d31c3f41977 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 #33a4f80dea7759b4 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 #7047ef5d02409031 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 #599d0f1de6c265d4 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 #630261edb6aeb92b 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 #9c6b89a83b0ced7a 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 #91723cd4d67643bd 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 #e733ef212e5fd781 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 #b4cd6e457834946a 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 #12eea7ec75be1ce1 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 #3823ad85b3a09a50 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 #c9cc1631c831fa91 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 #d8072b3dbf87b8e1 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 #0c99d9ce6c7d0eb0 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 #d30ec89ba8153efb 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 #d053f243074d1ada 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 #6522be2cd2d211ad 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 #d47966b1d16d2580 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 #f01cac34b1252cdf 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 #66817847f3078f18 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 #8ffafd36cac65a69 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 #3d055d4efd5ac71d 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 #caf9846bd9830087 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 #258d9ef4c9bea180 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 #1048119ef8f534bb 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 #0fce0accfae1f8ef 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 #8d371dcc50894041 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 #db524540ad035b33 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 #be01fc40a8773282 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 #98a2c3d7090b030d 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 #332cb577dc25a9a4 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 #95b3d396d1a96373 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 #8f1c0166d36c6768 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 #a691c6415d509610 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 #e2f9d3c3c1d38e3d 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 #191450977dca2cd2 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 #8d713aa95d64b8e8 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 #821dadfe241f4c78 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 #df1d914b43a9fd0c 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 #9c845f3ff38528d1 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 #6deb51443ff04c4f 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 #f7aff4324f61e66e 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 #c6cd233bc55f4bf9 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 #c39163972f90e6aa 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 #1ba01311db636abe 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 #1c3ff6dc0e4d0e74 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 #a8ede6e9a42d1b27 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 #33e2020108aa9596 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 #9a3385f62cdc2add 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 #b20b7626db9232b9 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 #32cd8101c30aed1d 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 #7ef9fcca04ab710b 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 #d10ca4289193592b 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 #364f33a37768724d 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 #f8acdd2c2b47ce17 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 #b636d4d5f81da570 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 #efb534fe4be7737b 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 #8e687dd20f865062 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 #bdadf81230049375 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 #3089be63bf0ee903 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 #bc95df7815667273 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 #27618bebeab2642c 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 #94ac9cf03648a70d 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 #aa3bb5ffb5319339 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 #09961f6e5bf81753 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 #b9ea4229ec606907 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 #c0010d73d4bd3739 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 #c92d7ddb9fb76ed8 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 #bd8cbd3b1bb19551 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 #e65d0d018b703965 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 #6a3f97bb77688e40 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 #6383bb602bca0818 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 #ee69aad3c86964bf 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 #31d2501613164d03 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 #970655c86eb30408 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 #e51cf27f21308627 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 #38495a98c1c43afe 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 #69d6e8da31c39354 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 #ceff9e6072bae24d 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 #b70ab02f7c3a84d1 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 #a2f80e2211201d3a 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 #1eb5c6029a0a030b 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 #af08ae16f80cdd16 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 #9c6e40fc1d1ff994 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 #07d60aca4d52c7c1 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 #fb636597b17c4244 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 #e2559a6d4d43c5f3 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 #9cb0f999f2eaf6b2 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 #883510e565fc4c93 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 #0653eeb1b7e67c5f 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 #f10a63da1485d94b 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 #8f2edcd50f8dcc5b 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 #fa4551404dc849a7 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 #01ad633381b36063 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 #5657c6c282f52387 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 #6b88de068b175439 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 #ebe0de49723feb85 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 #ba9296650901cf78 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 #1b271f156e8014fb 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 #ca569d38990c54e8 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 #67f4b3461e4f8bb9 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 #b7ad2df454f0c5b6 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 #84be9b45014ff493 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 #68eaeeedc38a0a14 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 #ea6ec4ef4e412c0d 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 #31cfa130748d704a 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 #04a1431ec78f9bd9 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 #8f8d38162c7223f7 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 #82071a487292139b 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 #75cf26c7448b7fbd 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 #f37cd4a173799636 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 #e2e1c5739ac1e5c4 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 #3720a626f15b1cd0 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 #a4e68ea593050298 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 #f2a33e1c711c0e77 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 #bc04881153d1a2dd 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 #9fbcdac392357dd6 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 #4df0b79aaeeb7191 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 #53be9e2a717ff8aa 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 #2bed16dfa1c2f92f 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 #410240eeaa739c12 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 #e9c2d94cd8815a8d 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 #418698fc0e7d4731 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 #37a0d8f2d77b535c 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 #21357d88feb5a274 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 #473431bb8aecb7ef 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 #d7032eaed45ce81c 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 #d1de77950bf453a8 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 #b2568d2e05b348e3 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 #e27883cf17d1129f 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 #769eed3497f7cca0 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 #d171a634c063ddf4 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 #64341e66c43f84ca 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 #dbd563cb93c9c979 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 #f293e63421faf23d 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 #ddfe0ce92dd1fc5d 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 #7858555162740c06 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 #1b64bcb1d456e9ca 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 #43b0481f4b2b5bcc 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 #241ab03367c2b41a 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 #28088196e7bfb133 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 #acf0d11993f5d5cd 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 #30f24a4148829b3a 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 #c6cb03799f3c721e 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 #c1906a6b967b974f 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 #3dfa441858c6c59c 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 #dd529925a8fbce50 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 #cd2b90c736c607e7 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 #58bd51153e9440bb 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 #6041186fbbe388df 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 #e1dfbe0feb776cd8 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 #711826115a3e6774 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 #5dca2f0b018f1ff2 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 #708918ed6867d23e 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 #8a49b12793cddf98 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 #be7af3705d9d39f7 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 #76e1f37faf36de3a 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 #7c3a14c30ee6eccb 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 #65e50400f8adcb0d 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 #366f2242cea0c5f1 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 #2b35a2cd27e0869c 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 #72416e948d6f50e9 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 #3795ba67533bc5a3 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 #16ecaab14c7f228f 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 #d2192509b6dffbfd 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 #8588e4e0be49dd90 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 #9bd3816d7257f6e6 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 #b6bc49522aef8d0e 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 #02382cfe24fb1d9e 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 #41a1551badfa2919 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 #019fb7ce49657e8f 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 #363f68cc98ce61d0 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 #49619f077d3bdaea 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 #53110f80d20b38b7 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 #cc48160b57289f47 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