Close Open Privacy Scan

bolt Snapshot: commit b4adbf2
science engine v1.5
schedule 2026-07-14T19:09:37.034356+00:00

verified_user No application data leak found

No high-confidence exfiltration was found in application code.

App Privacy Score

67 /100
Medium privacy risk

Medium risk · 598 finding(s)

Dependency score: 57 (Medium risk)

bar_chart Score Breakdown

telemetry −25
egress −5
env_fs −3

list Scan Summary

0 high 5 medium 593 low
First-party packages: 8
Dependency packages: 32
Ecosystem: rust

swap_horiz External domains

api-inference.huggingface.coapi.yelp.comarxiv.orgbisprofiles.comcdn.britannica.comchat-simulator.comcodelabs.developers.google.comcxx.rsdocs.rsen.wikipedia.orgfiles.brokercheck.finra.orgflorida.intercreditreport.comfranknez.comgithub.comhips.hearstapps.comhttpbin.orghuggingface.cohyper.rsimages.cocodataset.orgjson-schema.orglocaltoday.newsonlim.comopencorporates.complatform.openai.comproandroiddev.compyo3.rspytorch.orgquizizz.comquizlet.comraw.githubusercontent.comregisters.centralbank.ierocketreach.costackoverflow.comtokenist.comtridao.mewww.adrforum.comwww.analyticsinsight.netwww.bizapedia.comwww.bloomberg.comwww.chegg.comwww.chicagobusiness.comwww.datacamp.comwww.deepmind.comwww.ft.comwww.google.comwww.gutenberg.orgwww.ibtimes.comwww.nytimes.comwww.prnewswire.comwww.researchgate.netwww.reuters.comwww.standardmedia.comwww.tradersmagazine.comwww.washingtonpost.comwww.wsj.com

</> First-Party Code

first-party (rust): router

rust first-party
medium telemetry production #674979851929f5f7 Telemetry/analytics SDK call. This crate transmits usage or event data to a third-party service.
repo/router/src/logging.rs:95
                opentelemetry_otlp::new_exporter()

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 63 low-confidence finding(s)
low env_fs production #4f6b67ac96c91f36 Environment-variable access.
repo/router/build.rs:13
        if let Ok(sha) = std::env::var("GIT_SHA") {

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

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

low env_fs production #f3eeb4a4e04046cc Environment-variable access.
repo/router/build.rs:20
    if let Ok(label) = std::env::var("DOCKER_LABEL") {

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

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

low telemetry production #36b71c91059c2e6d Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/router/src/chat.rs:192
                tracing::info!("Current text {:?}", self.text);

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.

low telemetry production #b02a2038c91084aa Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/router/src/infer/chat_template.rs:58
        tracing::debug!("Loading template: {}", template_str);

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.

low telemetry production #4831f27326e0381e Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/router/src/infer/chat_template.rs:69
        tracing::debug!("Use default tool template: {}", use_default_tool_template);

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.

low telemetry production #4485b807a9717e91 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/router/src/infer/mod.rs:118
                tracing::error!("{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.

low telemetry production #f8503e17b14a62fc Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/router/src/infer/mod.rs:126
            tracing::error!("{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.

low telemetry production #e9a74957129c5ce7 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/router/src/infer/mod.rs:217
                tracing::error!("Tokenization {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.

low telemetry production #97dcb73de93acc5d Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/router/src/infer/mod.rs:238
                tracing::error!("{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.

low telemetry production #2212b788376b5996 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/router/src/infer/mod.rs:314
            tracing::error!("{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.

low telemetry production #0cfe562a564fb473 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/router/src/lib.rs:61
        tracing::info!("Loaded a python tokenizer");

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.

low env_fs production #6e6c6f9b1467d72c Filesystem access.
repo/router/src/lib.rs:149
        std::fs::read_to_string(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 #e50129144653ac0a Filesystem access.
repo/router/src/lib.rs:187
        let content = std::fs::read_to_string(filename).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 #3119ba5fbbc4619f Filesystem access.
repo/router/src/lib.rs:219
        std::fs::read_to_string(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 #7976fd23724c8ccd Environment-variable access.
repo/router/src/logging.rs:76
    let ansi = std::env::var("LOG_COLORIZE") != Ok("1".to_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 #22de38f33791c6f4 Environment-variable access.
repo/router/src/logging.rs:117
    let env_filter = if let Ok(log_level) = std::env::var(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 telemetry production #5874f29d4135f7b2 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/router/src/server.rs:299
    tracing::debug!(
        "Input: {}",
        &req.inputs.chars().take(1000).collect::<String>()
    );

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.

low telemetry production #fef1b8f6f94ef6e3 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/router/src/server.rs:431
    tracing::debug!("Output: {}", output_text);

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.

low telemetry production #ca2bd552853e577c Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/router/src/server.rs:432
    tracing::info!("Success");

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.

low telemetry production #6c146583e83ef797 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/router/src/server.rs:520
    tracing::debug!("Input: {}", req.inputs);

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.

low telemetry production #6cff12930611bbb2 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/router/src/server.rs:902
                            tracing::error!("Failed to send event. Receiver dropped.");

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.

low telemetry production #8e026cd00aa64d45 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/router/src/server.rs:920
                tracing::error!("Failed to get headers: {:?}", 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.

low telemetry production #885842d40b67b161 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/router/src/server.rs:1189
    tracing::debug!("Got chat_template {:?}", infer.chat_template);

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.

low telemetry production #46322d3bfa665db3 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/router/src/server.rs:1464
    tracing::warn!("Odd tokenizer detected, falling back on legacy tokenization");

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.

low env_fs production #4c71e13d0d14eee8 Filesystem access.
repo/router/src/server.rs:1473
        std::fs::read_to_string(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 #9b63374a03f22181 Environment-variable access.
repo/router/src/server.rs:1541
    let authorization_token = std::env::var("HF_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 #df3f914f7317cc02 Environment-variable access.
repo/router/src/server.rs:1542
        .or_else(|_| std::env::var("HUGGING_FACE_HUB_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 #2158d21eaec4e041 Environment-variable access.
repo/router/src/server.rs:1556
        if let Ok(cache_dir) = std::env::var("HUGGINGFACE_HUB_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 #9498763325b3c954 Environment-variable access.
repo/router/src/server.rs:1560
        if let Ok(origin) = std::env::var("HF_HUB_USER_AGENT_ORIGIN") {

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

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

low env_fs production #b8b03ebde4a46992 Environment-variable access.
repo/router/src/server.rs:1578
        if std::env::var("HF_HUB_OFFLINE") == Ok("1".to_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 #3d7cd2ab7766e567 Environment-variable access.
repo/router/src/server.rs:1579
            let cache = std::env::var("HUGGINGFACE_HUB_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 telemetry production #8c891cf616c0d813 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/router/src/server.rs:1583
            tracing::warn!("Offline mode active using cache defaults");

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.

low telemetry production #fecc421af2365991 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/router/src/server.rs:1586
            tracing::info!("Using the Hugging Face API");

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.

low telemetry production #6a436931097d2b33 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/router/src/server.rs:1590
                    tracing::warn!("Unable to build the Hugging Face API");

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.

low telemetry production #3cd037616952e9d9 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/router/src/server.rs:1632
                tracing::warn!("Could not retrieve model info from the Hugging Face hub.");

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.

low telemetry production #1cf607d9f20ce618 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/router/src/server.rs:1645
            tracing::info!("Cache {cache:?}");

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.

low env_fs production #bdbb71ba203f0fd7 Filesystem access.
repo/router/src/server.rs:1664
        .and_then(|f| std::fs::read_to_string(f).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 telemetry production #14fbe8fcc8b62db2 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/router/src/server.rs:1668
                tracing::warn!("Could not parse chat template {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.

low telemetry production #0914e1df1ab9898a Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/router/src/server.rs:1674
    tracing::warn!("Tokenizer_config {tokenizer_config_path:?} - {tokenizer_config_filename:?}");

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.

low telemetry production #4301f110d52bdce9 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/router/src/server.rs:1682
        tracing::warn!("Could not find tokenizer config locally and no API specified");

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.

low telemetry production #9b2d53ad12b0428b Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/router/src/server.rs:1687
        tracing::info!("Using chat template from chat_template.json");

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.

low telemetry production #bb9d14d24a4d9045 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/router/src/server.rs:1698
            tracing::error!("Failed to import python tokenizer {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.

low env_fs production #4aa037dd1c511fa6 Filesystem access.
repo/router/src/server.rs:1718
        std::fs::read_to_string(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 telemetry production #4fdf3b9cb88e48d4 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/router/src/server.rs:1724
                    tracing::warn!("Could not parse config {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.

low telemetry production #e541abedda25e334 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/router/src/server.rs:1742
    tracing::info!("Using config {config:?}");

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.

low env_fs production #f825daa5d7a4962c Environment-variable access.
repo/router/src/server.rs:1747
    let origin = std::env::var("HF_HUB_USER_AGENT_ORIGIN").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 telemetry production #375e300681953337 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/router/src/server.rs:1802
            tracing::warn!("no pipeline tag found for model {tokenizer_name}");

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.

low env_fs production #f1f8871cfc4406ba Environment-variable access.
repo/router/src/server.rs:1899
        std::env::var("AIP_HTTP_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 telemetry production #b1eeda5430959d81 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/router/src/server.rs:1909
            tracing::warn!("Invalid hostname, defaulting to 0.0.0.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.

low env_fs production #50074e33f446318f Environment-variable access.
repo/router/src/server.rs:2247
        ComputeType(std::env::var("COMPUTE_TYPE").unwrap_or("gpu+optimized".to_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 telemetry production #4f8fba366270f6f2 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/router/src/server.rs:2257
        tracing::info!("Built with `google` feature");

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.

low telemetry production #6607c790ee1e90ba Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/router/src/server.rs:2258
        tracing::info!(
            "Environment variables `AIP_PREDICT_ROUTE` and `AIP_HEALTH_ROUTE` will be respected."
        );

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.

low env_fs production #d4b7b21293576ff9 Environment-variable access.
repo/router/src/server.rs:2261
        if let Ok(env_predict_route) = std::env::var("AIP_PREDICT_ROUTE") {

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

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

low env_fs production #5a41d8e96df8a121 Environment-variable access.
repo/router/src/server.rs:2264
        if let Ok(env_health_route) = std::env::var("AIP_HEALTH_ROUTE") {

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

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

low telemetry production #501c22c2c5c91b15 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/router/src/server.rs:2271
        tracing::info!("Built with `kserve` feature");

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.

low telemetry production #9ebac9e31de2ce6e Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/router/src/server.rs:2302
    tracing::info!("Connected");

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.

low telemetry production #14d89859602ac3d7 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/router/src/server.rs:2325
                tracing::error!("Failed to bind to {addr}: {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.

low telemetry production #e964d00800720e12 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/router/src/server.rs:2345
            tracing::info!(
                "Serving revision {sha} of model {}",
                hub_model_info.model_id
            );

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.

low env_fs production #eba372092c1bbf31 Filesystem access.
repo/router/src/server.rs:2361
    let file = File::open(tokenizer_config_filename).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 telemetry production #f3d5742dc22a9de0 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/router/src/server.rs:2367
            tracing::warn!("Unable to parse tokenizer config: {}", 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.

low telemetry production #e38979af04399a3c Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/router/src/server.rs:2399
    tracing::info!("signal received, starting graceful shutdown");

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.

low egress production #844aa59a56629c26 Hardcoded external endpoint. Review what data is sent to this destination.
repo/router/src/usage_stats.rs:70
        let _ = client
            .post(TELEMETRY_URL)

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 production #db6c1a80f74a89d6 Filesystem access.
repo/router/src/usage_stats.rs:405
    let file = File::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.

first-party (rust): backends/client

rust first-party
expand_more 2 low-confidence finding(s)
low telemetry production #336bb92b49542b67 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/client/src/lib.rs:46
        tracing::error!("{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.

low telemetry production #f3cad17ec6e34497 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/client/src/lib.rs:54
        tracing::error!("{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.

first-party (rust): backends/llamacpp

rust first-party
expand_more 4 low-confidence finding(s)
low env_fs production #4561e32434bb22c8 Environment-variable access.
repo/backends/llamacpp/build.rs:45
    let out_path = PathBuf::from(env::var("OUT_DIR").unwrap());

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

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

low env_fs production #51fa4dc9b82ad401 Environment-variable access.
repo/backends/llamacpp/src/main.rs:215
        if let Ok(cache_dir) = std::env::var("HUGGINGFACE_HUB_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 #893c3f77bf5140b4 Environment-variable access.
repo/backends/llamacpp/src/main.rs:218
        if let Ok(token) = std::env::var("HF_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 #43d1ccab803f98fd Environment-variable access.
repo/backends/llamacpp/src/main.rs:221
        if let Ok(origin) = std::env::var("HF_HUB_USER_AGENT_ORIGIN") {

Reads environment variables or the 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 (rust): backends/trtllm

rust first-party
expand_more 16 low-confidence finding(s)
low env_fs production #9ec0646ad6241ab1 Environment-variable access.
repo/backends/trtllm/build.rs:57
    let os = env::var("CARGO_CFG_TARGET_OS").unwrap();

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

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

low env_fs production #d4b4d2595d6d412b Environment-variable access.
repo/backends/trtllm/build.rs:58
    let arch = env::var("CARGO_CFG_TARGET_ARCH").unwrap();

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

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

low env_fs production #b49d5d30b43eaa23 Environment-variable access.
repo/backends/trtllm/build.rs:59
    let env = env::var("CARGO_CFG_TARGET_ENV").unwrap();

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

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

low env_fs production #bd3c1b046cf11785 Environment-variable access.
repo/backends/trtllm/build.rs:208
    let out_dir = PathBuf::from(env::var("OUT_DIR").unwrap());

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

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

low env_fs production #b1f93cc1b522d8fc Environment-variable access.
repo/backends/trtllm/build.rs:209
    let build_profile = env::var("PROFILE").unwrap();

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

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

low env_fs production #aaa6139c348d3866 Environment-variable access.
repo/backends/trtllm/src/main.rs:76
    let authorization_token = std::env::var("HF_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 #27dc0fcb444cbb32 Environment-variable access.
repo/backends/trtllm/src/main.rs:77
        .or_else(|_| std::env::var("HUGGING_FACE_HUB_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 #5c336794c50fb221 Environment-variable access.
repo/backends/trtllm/src/main.rs:89
        if let Ok(cache_dir) = std::env::var("HUGGINGFACE_HUB_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 #245e6bedf6e29a76 Environment-variable access.
repo/backends/trtllm/src/main.rs:93
        if let Ok(origin) = std::env::var("HF_HUB_USER_AGENT_ORIGIN") {

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

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

low env_fs production #e05593df0fa1b73f Environment-variable access.
repo/backends/trtllm/src/main.rs:111
        if std::env::var("HF_HUB_OFFLINE") == Ok("1".to_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 #35e321f3776b8150 Environment-variable access.
repo/backends/trtllm/src/main.rs:112
            let cache = std::env::var("HUGGINGFACE_HUB_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 telemetry production #d415c82d65e6a208 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/trtllm/src/main.rs:116
            tracing::warn!("Offline mode active using cache defaults");

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.

low telemetry production #f72d75f01eed336f Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/trtllm/src/main.rs:119
            tracing::info!("Using the Hugging Face API");

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.

low telemetry production #a8beda43031904e4 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/trtllm/src/main.rs:123
                    tracing::warn!("Unable to build the Hugging Face API");

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.

low telemetry production #91f8260cd1c21a8d Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/trtllm/src/main.rs:162
                tracing::warn!("Could not retrieve model info from the Hugging Face hub.");

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.

low telemetry production #ccc683aab99f35a1 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/trtllm/src/main.rs:196
            tracing::error!("Failed to import python tokenizer {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.

first-party (rust): backends/v2

rust first-party
expand_more 18 low-confidence finding(s)
low env_fs production #b23bb92c45fadd48 Environment-variable access.
repo/backends/v2/src/backend.rs:39
        let attention = std::env::var("ATTENTION").unwrap_or("paged".to_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 telemetry production #a29b870094a8bbfe Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v2/src/backend.rs:376
            tracing::error!("Entry response channel error.");

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.

low telemetry production #8950bfca549c8a45 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v2/src/backend.rs:484
        tracing::error!("{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.

low telemetry production #ba0c7ea251f42ebf Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v2/src/client/mod.rs:53
        tracing::error!("{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.

low telemetry production #cd9946a6082e27cd Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v2/src/client/mod.rs:61
        tracing::error!("{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.

low telemetry production #46b451418b686498 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v2/src/lib.rs:50
                tracing::warn!("Model does not support automatic max batch total tokens");

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.

low telemetry production #0b9a4ef8ac884a22 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v2/src/lib.rs:57
                    tracing::warn!(
                        "`--max-batch-total-tokens` is deprecated for Flash \
                        Attention models."
                    );

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.

low telemetry production #dff856e25786337c Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v2/src/lib.rs:61
                    tracing::warn!(
                        "Inferred max batch total tokens: {max_supported_batch_total_tokens}"
                    );

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.

low telemetry production #47f48d244cc3426e Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v2/src/lib.rs:88
    tracing::info!("Warming up model");

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.

low telemetry production #d65eddecde7c9bce Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v2/src/lib.rs:100
    tracing::info!("Setting max batch total tokens to {max_batch_total_tokens}");

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.

low telemetry production #dafde02521d44c09 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v2/src/lib.rs:124
    tracing::info!("Using backend V3");

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.

low telemetry production #40d5da33e605754d Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v2/src/queue.rs:196
            tracing::debug!("No queue");

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.

low telemetry production #3c1e6309e9a59e0c Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v2/src/queue.rs:203
                tracing::debug!("Not enough entries");

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.

low telemetry production #a8725d5af3370657 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v2/src/queue.rs:210
                tracing::debug!("No capacity");

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.

low telemetry production #008f5674fcdbf14c Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v2/src/queue.rs:236
                tracing::debug!("Dropping entry");

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.

low telemetry production #3430a3c22cc28944 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v2/src/queue.rs:271
                tracing::debug!("Over budget: prefill_tokens={prefill_tokens} > {prefill_token_budget} || {prefill_tokens} + {decode_tokens} + {} > {token_budget}", self.speculate);

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.

low telemetry production #f585f547a2b1b034 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v2/src/queue.rs:276
            tracing::debug!("Accepting entry");

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.

low telemetry production #6c03586bd0c20b09 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v2/src/queue.rs:311
            tracing::debug!("Filtered out all entries");

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.

first-party (rust): backends/v3

rust first-party
expand_more 30 low-confidence finding(s)
low telemetry production #86a06f0808f721fc Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v3/src/backend.rs:39
            tracing::warn!("Model supports prefill chunking. `waiting_served_ratio` and `max_waiting_tokens` will be ignored.");

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.

low telemetry production #19548afa84386744 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v3/src/backend.rs:438
            tracing::error!("Entry response channel error.");

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.

low telemetry production #b8c6a729780aa04b Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v3/src/backend.rs:546
        tracing::error!("{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.

low telemetry production #3814934775122669 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v3/src/client/mod.rs:45
        tracing::error!("{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.

low telemetry production #2b44bc1800a201e6 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v3/src/client/mod.rs:53
        tracing::error!("{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.

low telemetry production #88af3e0fc9f4d575 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v3/src/lib.rs:79
                tracing::warn!("Model does not support automatic max batch total tokens");

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.

low telemetry production #07834fb1d89ebd2b Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v3/src/lib.rs:90
                    tracing::warn!(
                        "`--max-batch-total-tokens` is deprecated for Flash \
                        Attention models."
                    );

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.

low telemetry production #98f1b286579f4789 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v3/src/lib.rs:94
                    tracing::warn!(
                        "Inferred max batch total tokens: {max_supported_batch_total_tokens}"
                    );

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.

low telemetry production #8f8986fc9a82dd68 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v3/src/lib.rs:125
    tracing::info!("Warming up model");

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.

low telemetry production #b76fd3060678bcf8 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v3/src/lib.rs:137
    tracing::info!("Setting max batch total tokens to {max_batch_total_tokens}");

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.

low telemetry production #9d42a9c20861af29 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v3/src/lib.rs:166
    tracing::info!("Using backend V3");

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.

low telemetry production #53d01013c06a1112 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v3/src/main.rs:168
        tracing::info!(
            "Maximum input tokens defaulted to {}",
            backend_info.max_input_tokens
        );

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.

low telemetry production #e9d3f6c3d3911799 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v3/src/main.rs:174
        tracing::info!(
            "Maximum total tokens defaulted to {}",
            backend_info.max_total_tokens
        );

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.

low telemetry production #45481b142213dc01 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v3/src/queue.rs:245
            tracing::debug!("No queue");

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.

low telemetry production #4bf5871ca0d761e6 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v3/src/queue.rs:252
                tracing::debug!("Not enough entries");

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.

low telemetry production #5a1855e2a7f96af3 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v3/src/queue.rs:259
                tracing::debug!("No capacity");

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.

low telemetry production #00d5a55785c39c11 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v3/src/queue.rs:283
                tracing::debug!("Dropping entry");

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.

low telemetry production #e7787e0e338430ea Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v3/src/queue.rs:300
                        tracing::debug!("Over budget: prefill_tokens={prefill_tokens} > {prefill_token_budget} || {prefill_tokens} + {decode_tokens} + {} > {token_budget}", self.speculate);

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.

low telemetry production #cca9395b137b4b15 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v3/src/queue.rs:325
                            tracing::debug!("Over budget: not enough free blocks");

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.

low telemetry production #8fc5f261819ddbc2 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v3/src/queue.rs:359
                            tracing::debug!(
                                "Matched budget: prefill_tokens={} == {prefill_token_budget}",
                                prefill_tokens + postfix_len
                            );

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.

low telemetry production #3f4781247f35378e Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v3/src/queue.rs:367
                            tracing::debug!(
                                "Over budget: prefill_tokens={} > {prefill_token_budget}",
                                prefill_tokens + postfix_len
                            );

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.

low telemetry production #365a1659abec1e00 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v3/src/queue.rs:385
                            tracing::debug!("Over budget: prefill_tokens={actual_prefill_tokens_for_hpu} > {prefill_token_budget}");

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.

low telemetry production #b2a9e462a9989a61 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v3/src/queue.rs:404
            tracing::debug!("Filterered out all entries");

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.

low telemetry production #6a43ac797a8c53e5 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v3/src/radix.rs:59
            tracing::debug!(
                "Free blocks {}  need {n_blocks_needed}",
                self.free_blocks.len()
            );

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.

low telemetry production #87ed7e1ea80bc310 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v3/src/radix.rs:108
        tracing::info!("Prefix {prefix_len} - Suffix {suffix_len}");

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.

low telemetry production #aee52f30ed7e791a Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v3/src/radix.rs:113
                tracing::debug!("Cannot allocate {:?}", self.cache_blocks);

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.

low telemetry production #8cec502c43c50110 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v3/src/radix.rs:114
                tracing::debug!("Found {prefix_len} prefix tokens need {suffix_blocks} suffix blocks for {tokens} tokens");

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.

low telemetry production #5757c26cd502ca57 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v3/src/radix.rs:115
                tracing::debug!("Block size {}", self.block_size);

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.

low telemetry production #20cc1ae3d839340a Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v3/src/radix.rs:372
        tracing::debug!("Evicting in search of {n_blocks}");

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.

low telemetry production #6632d998d8568613 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/backends/v3/src/radix.rs:376
            tracing::debug!("Evicting node {node_id:?} ");

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.

first-party (rust): benchmark

rust first-party
expand_more 8 low-confidence finding(s)
low telemetry test-only #fa46c504ffe91ce1 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/benchmark/src/main.rs:138
    tracing::info!("Loading tokenizer");

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.

low telemetry test-only #32211fbc642bd4ac Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/benchmark/src/main.rs:144
            tracing::info!("Found local tokenizer");

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.

low telemetry test-only #ab9f9fd7e9115630 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/benchmark/src/main.rs:147
            tracing::info!("Downloading tokenizer");

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.

low env_fs test-only #383661fdd88c7016 Environment-variable access.
repo/benchmark/src/main.rs:150
            let token = std::env::var("HF_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 test-only #fd84a04f8d97f34c Environment-variable access.
repo/benchmark/src/main.rs:151
                .or_else(|_| std::env::var("HUGGING_FACE_HUB_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 telemetry test-only #5e4b0ef57e2a1df5 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/benchmark/src/main.rs:163
    tracing::info!("Tokenizer loaded");

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.

low telemetry test-only #9e7d181cb29e9c3f Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/benchmark/src/main.rs:172
            tracing::info!("Connect to model server");

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.

low telemetry test-only #56ebb63d7b587756 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/benchmark/src/main.rs:182
            tracing::info!("Connected");

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.

first-party (rust): launcher

rust first-party
expand_more 80 low-confidence finding(s)
low env_fs production #8af529d4f79c72fc Environment-variable access.
repo/launcher/build.rs:16
        if let Ok(sha) = std::env::var("GIT_SHA") {

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

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

low env_fs production #a757ee3b53d112af Environment-variable access.
repo/launcher/build.rs:23
    if let Ok(label) = std::env::var("DOCKER_LABEL") {

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

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

low telemetry production #2d1affa8adcb17cd Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/gpu.rs:12
            tracing::warn!("Ignoring negative GPU compute capabilities: {major}.{minor}");

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.

low telemetry production #ce8b2120b38fc92a Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/gpu.rs:17
            tracing::warn!("Cannot determine GPU compute capability: {}", 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.

low telemetry production #bd1060d1c7996de8 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:33
    tracing::debug!(
        "Max compute {} model compute {}",
        human_size(f16_max_compute as usize, "flop"),
        human_size(model_compute as usize, "flop")
    );

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.

low telemetry production #2769af44158c9fda Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:74
        tracing::debug!(
            "Available vram {}: model needs {}, every tokens requires {}, maximum allocatable tokens {tokens_allowed}",
            human_size(available, "B"),
            human_size(model, "B"),
            human_size(token_vram, "B"),
        );

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.

low telemetry production #f25854e4a135adc2 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:82
        tracing::warn!(
            "Not enough VRAM to run the model: Available: {} - Model {}.",
            human_size(available, "B"),
            human_size(model, "B")
        );

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.

low env_fs production #aa90520c216a119d Environment-variable access.
repo/launcher/src/main.rs:101
        if let Ok(token) = std::env::var("HF_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 #c0b67f87b8302260 Environment-variable access.
repo/launcher/src/main.rs:105
        if let Ok(origin) = env::var("HF_HUB_USER_AGENT_ORIGIN") {

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

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

low env_fs production #6aaedbc6ebff24d7 Filesystem access.
repo/launcher/src/main.rs:124
    let content = std::fs::read_to_string(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 #b4be1c772f1d31d4 Environment-variable access.
repo/launcher/src/main.rs:133
    let mut prefix_caching: Option<String> = std::env::var("PREFIX_CACHING").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 #b7ff50dd4f7e781e Environment-variable access.
repo/launcher/src/main.rs:134
    let mut attention: Option<String> = std::env::var("ATTENTION").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 telemetry production #98f869fc97ea4b13 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:138
                tracing::info!("Disabling prefix caching because of VLM model");

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.

low telemetry production #eafd56b154d40801 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:141
                tracing::info!("Disabling prefix caching because of seq2seq model");

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.

low telemetry production #6e0479d4eec29b50 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:157
                    tracing::info!("Disabling prefix caching because of lora adapters");

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.

low telemetry production #fed682f9d7602505 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:165
                            tracing::info!(
                                "Forcing attention to '{fallback_attention}' because model {} requires it",
                                config.model_type.as_ref().unwrap()
                            );

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.

low telemetry production #237d2b67d1872dba Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:172
                            tracing::info!("Disabling prefix caching because it is not supported with 'paged' attention");

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.

low telemetry production #1a064f78ee7cea67 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:182
                    tracing::info!("Forcing attention to '{fallback_attention}' because head dim is not supported by flashinfer, also disabling prefix caching");

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.

low telemetry production #a193a04225a02e1d Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:192
        tracing::info!("Disabling prefix caching on paged attention");

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.

low env_fs production #ef839c2d51a4c9ab Environment-variable access.
repo/launcher/src/main.rs:1065
    let enable_hf_transfer = env::var("HF_HUB_ENABLE_HF_TRANSFER").unwrap_or("1".to_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 #14aa34af866aedf2 Environment-variable access.
repo/launcher/src/main.rs:1072
    if let Ok(api_token) = env::var("HF_API_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 telemetry production #494de5966219fcd8 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:1149
    tracing::info!("Starting shard");

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.

low telemetry production #0cb1a582beacf23b Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:1163
                tracing::error!("text-generation-server not found in PATH");

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.

low telemetry production #e8fac079c436f3a7 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:1164
                tracing::error!("Please install it with `make install-server`")

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.

low telemetry production #ee183ee908e07a52 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:1167
                tracing::error!("{}", 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.

low telemetry production #03dfc4005eb31439 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:1217
            tracing::error!("Shard complete standard error output:\n{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.

low telemetry production #37d2263e1acddec9 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:1220
                tracing::error!("Shard process was signaled to shutdown with signal {signal}");

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.

low telemetry production #3a97ec588e22e7c0 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:1240
            tracing::info!("Shard ready in {:?}", start_time.elapsed());

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.

low telemetry production #ac47ff98ae5e685e Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:1244
            tracing::info!("Waiting for shard to be ready...");

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.

low telemetry production #a718a3dc5ddabb86 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:1252
    tracing::info!("Shutting down shards");

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.

low env_fs production #27b787db9ba46656 Environment-variable access.
repo/launcher/src/main.rs:1263
    let devices = match env::var("CUDA_VISIBLE_DEVICES") {

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

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

low env_fs production #faf8c0c0020a1991 Environment-variable access.
repo/launcher/src/main.rs:1265
        Err(_) => match env::var("NVIDIA_VISIBLE_DEVICES") {

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

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

low env_fs production #d7c50d87f0c8a77d Environment-variable access.
repo/launcher/src/main.rs:1287
            Err(_) => env::var("ZE_AFFINITY_MASK").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 telemetry production #b70c50ebab39dc39 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:1326
            PythonLogLevelEnum::Debug => tracing::debug!("{}", self.text.trim_end()),

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.

low telemetry production #d19d3d2cf42d94d9 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:1327
            PythonLogLevelEnum::Info => tracing::info!("{}", self.text.trim_end()),

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.

low telemetry production #8090411d552376ca Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:1328
            PythonLogLevelEnum::Success => tracing::info!("{}", self.text.trim_end()),

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.

low telemetry production #027fa4365752d7ee Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:1329
            PythonLogLevelEnum::Warning => tracing::warn!("{}", self.text.trim_end()),

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.

low telemetry production #4e513fb90d168001 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:1330
            PythonLogLevelEnum::Error => tracing::error!("{}", self.text.trim_end()),

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.

low telemetry production #3d6361f7859b41f0 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:1331
            PythonLogLevelEnum::Critical => tracing::error!("{}", self.text.trim_end()),

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.

low telemetry production #9b53a434c2d8c1ff Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:1382
            tracing::info!("Parsing num_shard from CUDA_VISIBLE_DEVICES/NVIDIA_VISIBLE_DEVICES/ZE_AFFINITY_MASK");

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.

low env_fs production #b333e06576e705f6 Environment-variable access.
repo/launcher/src/main.rs:1487
    let enable_hf_transfer = env::var("HF_HUB_ENABLE_HF_TRANSFER").unwrap_or("1".to_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 #2440678f80bd3476 Environment-variable access.
repo/launcher/src/main.rs:1494
    if let Ok(api_token) = env::var("HF_API_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 telemetry production #697e15aabfca8061 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:1508
    tracing::info!("Starting check and download process for {model_id}");

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.

low telemetry production #9514a323afb7fa27 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:1521
                tracing::error!("text-generation-server not found in PATH");

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.

low telemetry production #f742f5d293738e82 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:1522
                tracing::error!("Please install it with `make install-server`")

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.

low telemetry production #ecef7258f4e97514 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:1524
                tracing::error!("{}", 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.

low telemetry production #09576f32d316a39a Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:1550
                tracing::info!("Successfully downloaded weights for {model_id}");

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.

low telemetry production #da1e8d825b671245 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:1560
                tracing::error!(
                    "Download process was signaled to shutdown with signal {signal}: {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.

low telemetry production #6ebfec743743f30c Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:1564
                tracing::error!("Download encountered an error: {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.

low telemetry production #0a960af2ec216923 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:1677
                tracing::error!("Shard {rank} failed to start");

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.

low telemetry production #ccf92b4e80f2e52a Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:1682
                tracing::error!("Shard status channel disconnected");

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.

low telemetry production #2aa21a61d46cbb52 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:1780
                tracing::warn!("Unkown compute for card {card}");

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.

low telemetry production #f83ee61e39a07402 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:1798
            tracing::warn!("Unexpected memory unit {unit}, expected MiB");

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.

low env_fs production #a7468127f8eb25d0 Environment-variable access.
repo/launcher/src/main.rs:1803
        let wiggle_room: f32 = env::var("TGI_WIGGLE_ROOM")

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

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

low telemetry production #c71c7e6505024376 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:1842
    tracing::info!("Starting Webserver");

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.

low env_fs production #a70cf62484c2b9d8 Environment-variable access.
repo/launcher/src/main.rs:1964
    if let Ok(api_token) = env::var("HF_API_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 #31d30c59e178c074 Environment-variable access.
repo/launcher/src/main.rs:1969
    if let Ok(compute_type) = env::var("COMPUTE_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 telemetry production #6a37b3673bc7e0fd Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:1985
            tracing::error!("Failed to start webserver: {}", 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.

low telemetry production #e6ab18b72abb489d Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:1987
                tracing::error!("text-generation-router not found in PATH");

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.

low telemetry production #5ce55f2cfdffbee9 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:1988
                tracing::error!("Please install it with `make install-router`")

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.

low telemetry production #567af81cc3964fb5 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:1990
                tracing::error!("{}", 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.

low telemetry production #0ea5d60fb89dc4fc Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:2016
    tracing::info!("Terminating {process_name}");

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.

low telemetry production #9dba8dfb8ceb08ce Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:2021
    tracing::info!("Waiting for {process_name} to gracefully shutdown");

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.

low telemetry production #5c595467accc664d Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:2024
            tracing::info!("{process_name} terminated");

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.

low telemetry production #745942262166c2db Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:2029
    tracing::info!("Killing {process_name}");

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.

low telemetry production #3592b9c701a11bfa Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:2034
    tracing::info!("{process_name} killed");

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.

low env_fs production #c467177270263226 Environment-variable access.
repo/launcher/src/main.rs:2046
    let env_filter = if let Ok(log_level) = std::env::var(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 telemetry production #67856b01e29cd503 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:2076
        tracing::info!("{}", env_runtime);

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.

low telemetry production #e0953425bf810e90 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:2079
    tracing::info!("{:#?}", args);

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.

low telemetry production #757a8800c93bc377 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:2086
    tracing::info!("Using attention {attention} - Prefix caching {prefix_caching}");

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.

low telemetry production #e22792c3edc91c02 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:2097
        tracing::info!("Sharding model on {num_shard} processes");

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.

low telemetry production #c8b75ae7ee710352 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:2144
                        tracing::warn!("Reducing the max batch prefill from {default} to {vram_maximum} because there is not enough VRAM to support it.");

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.

low telemetry production #027ac32db11ee867 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:2150
                tracing::info!("Default `max_batch_prefill_tokens` to {value}");

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.

low telemetry production #8a9c80e7bb50b22d Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:2166
        tracing::warn!("Bitsandbytes is deprecated, use `eetq` instead, which provides better latencies overall and is drop-in in most cases.");

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.

low telemetry production #b42ff6568290947e Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:2173
            tracing::warn!("Bitsandbytes doesn't work with cuda graphs, deactivating them");

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.

low telemetry production #7f92c562dc99304c Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:2177
            tracing::warn!("Exl2 doesn't work with cuda graphs, deactivating them");

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.

low telemetry production #745e256f2221bfbe Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:2182
            tracing::info!("Using default cuda graphs {cuda_graphs:?}");

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.

low telemetry production #af09ddfb4e3c7a92 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:2193
        tracing::warn!(
            "`trust_remote_code` is set. Trusting that model `{}` do not contain malicious code.",
            args.model_id
        );

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.

low telemetry production #f56f2f8c2a22f97d Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:2335
            tracing::error!("Shard {rank} crashed");

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.

low telemetry production #a0213dbea4c9d7c8 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
repo/launcher/src/main.rs:2342
                tracing::error!("Webserver Crashed");

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.

</> Dependencies

init-tracing-opentelemetry

rust dependency
medium telemetry dependency Excluded from app score #54b4b3d13ab785bf Telemetry/analytics SDK call. This crate transmits usage or event data to a third-party service.
pkgs/rust/[email protected]/src/otlp.rs:28
        "http/protobuf" => opentelemetry_otlp::new_exporter()

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 #750a7b89eb89d518 Telemetry/analytics SDK call. This crate transmits usage or event data to a third-party service.
pkgs/rust/[email protected]/src/otlp.rs:33
        "grpc/tls" => opentelemetry_otlp::new_exporter()

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 #b302df39c151ae0c Telemetry/analytics SDK call. This crate transmits usage or event data to a third-party service.
pkgs/rust/[email protected]/src/otlp.rs:38
        _ => opentelemetry_otlp::new_exporter()

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 18 low-confidence finding(s)
low env_fs dependency Excluded from app score #9d332e1614a4bafc Environment-variable access.
pkgs/rust/[email protected]/src/lib.rs:49
        std::env::var("OTEL_PROPAGATORS").unwrap_or_else(|_| "tracecontext,baggage".to_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 telemetry dependency Excluded from app score #3171ccf6718c7b53 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/lib.rs:63
        tracing::debug!(target: "otel::setup", OTEL_PROPAGATORS = propagators_name.join(","));

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.

low telemetry dependency Excluded from app score #c15b349870a3590f Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/otlp.rs:25
    tracing::debug!(target: "otel::setup", OTEL_EXPORTER_OTLP_TRACES_ENDPOINT = endpoint);

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.

low telemetry dependency Excluded from app score #128344b8f96de738 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/otlp.rs:26
    tracing::debug!(target: "otel::setup", OTEL_EXPORTER_OTLP_TRACES_PROTOCOL = protocol);

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.

low env_fs dependency Excluded from app score #1d99d8562ed4565b Environment-variable access.
pkgs/rust/[email protected]/src/otlp.rs:57
    let maybe_endpoint = std::env::var("OTEL_EXPORTER_OTLP_TRACES_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 #a3604481b5d97d9d Environment-variable access.
pkgs/rust/[email protected]/src/otlp.rs:58
        .or_else(|_| std::env::var("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 #c217f9b0d4977ed7 Environment-variable access.
pkgs/rust/[email protected]/src/otlp.rs:60
    let maybe_protocol = std::env::var("OTEL_EXPORTER_OTLP_TRACES_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 #0926ef612ee8388e Environment-variable access.
pkgs/rust/[email protected]/src/otlp.rs:61
        .or_else(|_| std::env::var("OTEL_EXPORTER_OTLP_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 #f9d14e8df262f5f8 Environment-variable access.
pkgs/rust/[email protected]/src/otlp.rs:69
    let mut name = std::env::var("OTEL_TRACES_SAMPLER")

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

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

low telemetry dependency Excluded from app score #43485e73cb5fc30f Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/otlp.rs:89
    tracing::debug!(target: "otel::setup", OTEL_TRACES_SAMPLER = ?name);

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.

low env_fs dependency Excluded from app score #4c82ef4f8537146b Environment-variable access.
pkgs/rust/[email protected]/src/otlp.rs:98
    let v = std::env::var("OTEL_TRACES_SAMPLER_ARG")

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

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

low telemetry dependency Excluded from app score #88e05c6e8347941b Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/otlp.rs:100
    tracing::debug!(target: "otel::setup", OTEL_TRACES_SAMPLER_ARG = ?v);

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.

low telemetry dependency Excluded from app score #e1218491e504fddd Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/resource.rs:66
        |kv| tracing::debug!(target: "otel::setup::resource", key = %kv.0, value = %kv.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.

low env_fs dependency Excluded from app score #923680d4bd583782 Environment-variable access.
pkgs/rust/[email protected]/src/resource.rs:78
        let service_name = std::env::var("OTEL_SERVICE_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 #a0d53af209173737 Environment-variable access.
pkgs/rust/[email protected]/src/resource.rs:79
            .or_else(|_| std::env::var("SERVICE_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 #6778f717da5bda02 Environment-variable access.
pkgs/rust/[email protected]/src/resource.rs:80
            .or_else(|_| std::env::var("APP_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 #c570f70697c09655 Environment-variable access.
pkgs/rust/[email protected]/src/resource.rs:87
        let service_version = std::env::var("SERVICE_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 dependency Excluded from app score #4ee803855746bcbd Environment-variable access.
pkgs/rust/[email protected]/src/resource.rs:88
            .or_else(|_| std::env::var("APP_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.

tracing-opentelemetry

rust dependency
medium telemetry tooling Excluded from app score unknown #11c45db5947db221 Telemetry/analytics SDK call. This crate transmits usage or event data to a third-party service.
pkgs/rust/[email protected]/examples/opentelemetry-otlp.rs:110
        .with_exporter(opentelemetry_otlp::new_exporter().tonic())

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 14 low-confidence finding(s)
low telemetry dependency Excluded from app score #958720aefa0df273 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/metrics.rs:14
                tracing::info!(key_1 = "va", "msg");

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.

low telemetry dependency Excluded from app score #361928411876a230 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/metrics.rs:25
                tracing::info!(key_1 = "va", "msg");

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.

low telemetry dependency Excluded from app score #8e301e030c35b351 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/metrics.rs:36
                tracing::info!(monotonic_counter.c1 = 1, "msg");

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.

low telemetry dependency Excluded from app score #8142a6821263c976 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/metrics.rs:47
                tracing::info!(monotonic_counter.c1 = 1, monotonic_counter.c2 = 1, "msg");

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.

low telemetry dependency Excluded from app score #3d968bcd93ed4e93 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/metrics.rs:58
                tracing::info!(
                    monotonic_counter.c1 = 1,
                    monotonic_counter.c2 = 1,
                    monotonic_counter.c3 = 1,
                    monotonic_counter.c4 = 1,
                    "msg"
                );

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.

low telemetry dependency Excluded from app score #1a426c9249fcbc20 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/metrics.rs:75
                tracing::info!(
                    monotonic_counter.c1 = 1,
                    monotonic_counter.c2 = 1,
                    monotonic_counter.c3 = 1,
                    monotonic_counter.c4 = 1,
                    monotonic_counter.c5 = 1,
                    monotonic_counter.c6 = 1,
                    monotonic_counter.c7 = 1,
                    monotonic_counter.c8 = 1,
                    "msg"
                );

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.

low telemetry dependency Excluded from app score #6d85af9868e91d82 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/metrics.rs:96
                tracing::info!(monotonic_counter.c1 = 1, key_1 = 1_i64, "msg");

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.

low telemetry dependency Excluded from app score #fdd95ebe9798093f Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/metrics.rs:107
                tracing::info!(
                    monotonic_counter.c1 = 1,
                    key_1 = 1_i64,
                    key_2 = 1_i64,
                    "msg"
                );

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.

low telemetry dependency Excluded from app score #1aa56d2c622e8f30 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/metrics.rs:123
                tracing::info!(
                    monotonic_counter.c1 = 1,
                    key_1 = 1_i64,
                    key_2 = 1_i64,
                    key_3 = 1_i64,
                    key_4 = 1_i64,
                    "msg"
                );

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.

low telemetry dependency Excluded from app score #cb93b952e55ee3d1 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/metrics.rs:141
                tracing::info!(
                    monotonic_counter.c1 = 1,
                    key_1 = 1_i64,
                    key_2 = 1_i64,
                    key_3 = 1_i64,
                    key_4 = 1_i64,
                    key_5 = 1_i64,
                    key_6 = 1_i64,
                    key_7 = 1_i64,
                    key_8 = 1_i64,
                    "msg"
                );

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.

low telemetry tooling Excluded from app score unknown #4dc832379267c214 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/examples/opentelemetry-otlp.rs:153
    tracing::info!(
        monotonic_counter.foo = 1_u64,
        key_1 = "bar",
        key_2 = 10,
        "handle foo",
    );

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.

low telemetry tooling Excluded from app score unknown #b8b73e8b702b904e Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/examples/opentelemetry-otlp.rs:160
    tracing::info!(histogram.baz = 10, "histogram example",);

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.

low telemetry dependency Excluded from app score #848d6c54e20ede12 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/layer.rs:1366
            tracing::error!(
                error = &err as &(dyn std::error::Error + 'static),
                "request error!"
            )

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.

low telemetry dependency Excluded from app score #1767ec6d16028f29 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/metrics.rs:520
            tracing::info!(key = "val", "foo");

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.

anyhow

rust dependency
expand_more 9 low-confidence finding(s)
low env_fs dependency Excluded from app score #c1972deeb407a220 Environment-variable access.
pkgs/rust/[email protected]/build.rs:27
        } else if let Some(rustc_bootstrap) = env::var_os("RUSTC_BOOTSTRAP") {

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

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

low env_fs dependency Excluded from app score #3186aad2d9503aee Environment-variable access.
pkgs/rust/[email protected]/build.rs:117
    if env::var_os("RUSTC_STAGE").is_some() {

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

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

low env_fs dependency Excluded from app score #f95b611ff7a9d558 Environment-variable access.
pkgs/rust/[email protected]/build.rs:140
    let rustc_wrapper = env::var_os("RUSTC_WRAPPER").filter(|wrapper| !wrapper.is_empty());

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

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

low env_fs dependency Excluded from app score #554c67c21066b663 Environment-variable access.
pkgs/rust/[email protected]/build.rs:142
        env::var_os("RUSTC_WORKSPACE_WRAPPER").filter(|wrapper| !wrapper.is_empty());

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

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

low env_fs dependency Excluded from app score #54d17423e6095732 Environment-variable access.
pkgs/rust/[email protected]/build.rs:164
    if let Some(target) = env::var_os("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 #6451c243d7543987 Environment-variable access.
pkgs/rust/[email protected]/build.rs:169
    if let Ok(rustflags) = env::var("CARGO_ENCODED_RUSTFLAGS") {

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

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

low env_fs dependency Excluded from app score #720b2ea3850e8ce5 Environment-variable access.
pkgs/rust/[email protected]/build.rs:207
    env::var_os(key).unwrap_or_else(|| {

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

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

low env_fs dependency Excluded from app score #4195c3a351eed985 Environment-variable access.
pkgs/rust/[email protected]/src/backtrace.rs:200
            let enabled = match env::var_os("RUST_LIB_BACKTRACE") {

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

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

low env_fs dependency Excluded from app score #a835e88038464d88 Environment-variable access.
pkgs/rust/[email protected]/src/backtrace.rs:202
                None => match env::var_os("RUST_BACKTRACE") {

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

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

axum

rust dependency
expand_more 3 low-confidence finding(s)
low env_fs dependency Excluded from app score #89ac9a899ec09339 Environment-variable access.
pkgs/rust/[email protected]/benches/benches.rs:252
    std::env::var("GITHUB_ACTIONS").is_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 egress dependency Excluded from app score #5cbc4203784937b6 Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/src/extract/raw_form.rs:87
        let req = Request::post("http://example.com/test")

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 #6827b13d88fcc4bc Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/src/extract/raw_form.rs:111
        let req = Request::post("http://example.com/test")

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.

base64

rust dependency
expand_more 1 low-confidence finding(s)
low env_fs tooling Excluded from app score unknown #fc8b00057ecd18c8 Filesystem access.
pkgs/rust/[email protected]/examples/base64.rs:69
        Some(f) => Box::new(File::open(f).unwrap()),

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

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

chrono

rust dependency
expand_more 9 low-confidence finding(s)
low env_fs dependency Excluded from app score #72e72926f99a2aa9 Filesystem access.
pkgs/rust/[email protected]/src/offset/local/tz_info/timezone.rs:45
            return Self::from_tz_data(&fs::read("/etc/localtime")?);

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

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

low env_fs dependency Excluded from app score #d0fe8a90ea51f08c Filesystem access.
pkgs/rust/[email protected]/src/offset/local/tz_info/timezone.rs:619
    return Ok(File::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 #46f7de8f80bf3dbc Filesystem access.
pkgs/rust/[email protected]/src/offset/local/tz_info/timezone.rs:625
            return Ok(File::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 #202af63b72bb9fd2 Filesystem access.
pkgs/rust/[email protected]/src/offset/local/tz_info/timezone.rs:629
            if let Ok(file) = File::open(PathBuf::from(folder).join(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 #bb9f5205a344e1b9 Filesystem access.
pkgs/rust/[email protected]/src/offset/local/tz_info/timezone.rs:684
    match File::open(TZDATA_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 #d39d258e3cf4acd2 Environment-variable access.
pkgs/rust/[email protected]/src/offset/local/tz_info/timezone.rs:913
            if let Ok(tz) = std::env::var("TZ") {

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

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

low env_fs dependency Excluded from app score #e6abb95f36e63091 Filesystem access.
pkgs/rust/[email protected]/src/offset/local/unix.rs:83
    let bytes = fs::read(format!("{}/{}", TZDB_LOCATION, tz_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.

low env_fs dependency Excluded from app score #eee4de530728dd7f Environment-variable access.
pkgs/rust/[email protected]/src/offset/local/unix.rs:92
        let env_tz = env::var("TZ").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 #7b6b8ca84323691f Environment-variable access.
pkgs/rust/[email protected]/src/offset/local/unix.rs:118
                let env_tz = env::var("TZ").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.

clap

rust dependency
expand_more 3 low-confidence finding(s)
low env_fs dependency Excluded from app score #4b768596f87e6574 Filesystem access.
pkgs/rust/[email protected]/src/app/parser.rs:133
        let mut file = match File::create(out_dir.join(file_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 #5ef6b63ffc4ac894 Environment-variable access.
pkgs/rust/[email protected]/src/args/arg.rs:3607
        self.v.env = Some((name, env::var_os(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 #430463f00d1ebd9f Environment-variable access.
pkgs/rust/[email protected]/src/fmt.rs:36
    env::var("TERM").ok() == Some(String::from("dumb"))

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

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

csv

rust dependency
expand_more 3 low-confidence finding(s)
low env_fs tooling Excluded from app score unknown #dfe43740e6d8e602 Filesystem access.
pkgs/rust/[email protected]/examples/tutorial-read-01.rs:5
    let file = File::open(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 #dd22bcfccd49403b Filesystem access.
pkgs/rust/[email protected]/src/reader.rs:110
        Ok(Reader::new(self, File::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 #31b13eb744985856 Filesystem access.
pkgs/rust/[email protected]/src/writer.rs:91
        Ok(Writer::new(self, File::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.

cxx

rust dependency
expand_more 3 low-confidence finding(s)
low env_fs dependency Excluded from app score #bccd40eaff5f298a Environment-variable access.
pkgs/rust/[email protected]/build.rs:9
    let manifest_dir_opt = env::var_os("CARGO_MANIFEST_DIR").map(PathBuf::from);

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

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

low env_fs dependency Excluded from app score #9902546ce922301f Environment-variable access.
pkgs/rust/[email protected]/build.rs:66
    let rustc = env::var_os("RUSTC")?;

Reads environment variables or the filesystem — an inventory-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 unknown #97be198b7ee860fa Environment-variable access.
pkgs/rust/[email protected]/tools/cargo/build.rs:65
    if let Some(out_dir) = env::var_os("OUT_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.

hf-hub

rust dependency
expand_more 12 low-confidence finding(s)
low env_fs dependency Excluded from app score #1ebeb82f826cc503 Filesystem access.
pkgs/rust/[email protected]/src/api/sync.rs:326
        let mut file = std::fs::File::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 #b3b3bffa6ea53401 Filesystem access.
pkgs/rust/[email protected]/src/api/sync.rs:560
        let val = Sha256::digest(std::fs::read(&*downloaded_path).unwrap());

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

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

low env_fs dependency Excluded from app score #9f16bb8a9fa55e6b Filesystem access.
pkgs/rust/[email protected]/src/api/sync.rs:593
        let val = Sha256::digest(std::fs::read(&*downloaded_path).unwrap());

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

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

low env_fs dependency Excluded from app score #7eab2eb9b1984c5a Filesystem access.
pkgs/rust/[email protected]/src/api/tokio.rs:645
        let val = Sha256::digest(std::fs::read(&*downloaded_path).unwrap());

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

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

low env_fs dependency Excluded from app score #65f04a805a6912b2 Filesystem access.
pkgs/rust/[email protected]/src/api/tokio.rs:672
        let val = Sha256::digest(std::fs::read(&*downloaded_path).unwrap());

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

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

low env_fs dependency Excluded from app score #1c70b46ca14f094a Filesystem access.
pkgs/rust/[email protected]/src/api/tokio.rs:702
        let val = Sha256::digest(std::fs::read(&*downloaded_path).unwrap());

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

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

low telemetry dependency Excluded from app score #3bc42f3732c5a1b2 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/lib.rs:55
            log::info!("Token file not found {token_filename:?}");

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.

low env_fs dependency Excluded from app score #ccbdb7f17decc1ff Filesystem access.
pkgs/rust/[email protected]/src/lib.rs:57
        match std::fs::read_to_string(token_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 #0fa725b6ef893ebc Filesystem access.
pkgs/rust/[email protected]/src/lib.rs:139
        let commit_hash = std::fs::read_to_string(commit_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 dependency Excluded from app score #341b549124954db2 Environment-variable access.
pkgs/rust/[email protected]/src/lib.rs:194
        let mut path = match std::env::var("HF_HOME") {

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

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

low env_fs dependency Excluded from app score #c216c538b1a3e56f Environment-variable access.
pkgs/rust/[email protected]/src/lib.rs:302
        if let Ok(hf_home) = std::env::var("HF_HOME") {

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

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

low env_fs dependency Excluded from app score #bc4b843e6b973f5e Environment-variable access.
pkgs/rust/[email protected]/src/lib.rs:315
        if let Ok(hf_home) = std::env::var("HF_HOME") {

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

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

image

rust dependency
expand_more 13 low-confidence finding(s)
low env_fs dependency Excluded from app score #e92214f2f2b48e24 Filesystem access.
pkgs/rust/[email protected]/benches/decode.rs:95
        let buf = fs::read(path).unwrap();

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

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

low env_fs dependency Excluded from app score #e6413bf459b5ec2b Filesystem access.
pkgs/rust/[email protected]/benches/encode.rs:79
            let file = File::create("temp.bmp").unwrap();

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

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

low env_fs dependency Excluded from app score #f6add98767f6fee9 Filesystem access.
pkgs/rust/[email protected]/src/codecs/bmp/decoder.rs:1404
            BufReader::new(std::fs::File::open("tests/images/bmp/images/Core_8_Bit.bmp").unwrap());

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

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

low env_fs dependency Excluded from app score #b6d205f5ed30119d Filesystem access.
pkgs/rust/[email protected]/src/codecs/bmp/decoder.rs:1452
            let mut data = std::fs::read(&path).unwrap();

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

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

low env_fs dependency Excluded from app score #fa14cb231211aeb3 Filesystem access.
pkgs/rust/[email protected]/src/codecs/jpeg/decoder.rs:199
        let data = fs::read("tests/images/jpg/portrait_2.jpg").unwrap();

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

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

low env_fs dependency Excluded from app score #909512e12b062ddf Filesystem access.
pkgs/rust/[email protected]/src/codecs/openexr.rs:375
        read_as_rgba_image(BufReader::new(File::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 #9e563a21eee275ce Filesystem access.
pkgs/rust/[email protected]/src/codecs/openexr.rs:380
        read_as_rgb_image(BufReader::new(File::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 #d6a212a0cf83d8d5 Filesystem access.
pkgs/rust/[email protected]/src/codecs/openexr.rs:428
                HdrDecoder::new(BufReader::new(File::open(reference_path).unwrap())).unwrap();

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

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

low env_fs dependency Excluded from app score #fd858595b2d9190a Filesystem access.
pkgs/rust/[email protected]/src/codecs/png.rs:717
            std::fs::File::open("tests/images/png/bugfixes/debug_triangle_corners_widescreen.png")

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

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

low env_fs dependency Excluded from app score #d66d56d55759e620 Filesystem access.
pkgs/rust/[email protected]/src/codecs/png.rs:744
            std::fs::read("tests/images/png/bugfixes/debug_triangle_corners_widescreen.png")

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

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

low env_fs dependency Excluded from app score #9d4094183d8c19a0 Filesystem access.
pkgs/rust/[email protected]/src/codecs/qoi.rs:112
        let decoder = QoiDecoder::new(File::open("tests/images/qoi/basic-test.qoi").unwrap())

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

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

low env_fs dependency Excluded from app score #72e48ee59d4a8a2d Filesystem access.
pkgs/rust/[email protected]/src/image_reader/free_functions.rs:49
    let buffered_file_write = &mut BufWriter::new(File::create(path)?); // always seekable

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

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

low env_fs dependency Excluded from app score #f56699b2f681bb75 Filesystem access.
pkgs/rust/[email protected]/src/image_reader/image_reader_type.rs:304
            inner: BufReader::new(File::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.

jsonschema

rust dependency
expand_more 2 low-confidence finding(s)
low env_fs dependency Excluded from app score #fe8433ed45b26151 Filesystem access.
pkgs/rust/[email protected]/src/retriever.rs:40
                    let file = std::fs::File::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 #a78ece2d8d3de64c Filesystem access.
pkgs/rust/[email protected]/src/validator.rs:290
        let mut file = File::open(path).unwrap();

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

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

minijinja

rust dependency
expand_more 1 low-confidence finding(s)
low env_fs dependency Excluded from app score #44ed89a83e22f7d9 Filesystem access.
pkgs/rust/[email protected]/src/loader.rs:216
        match fs::read_to_string(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.

ngrok

rust dependency
expand_more 6 low-confidence finding(s)
low env_fs tooling Excluded from app score unknown #824d36fefa7aa162 Environment-variable access.
pkgs/rust/[email protected]/examples/connect.rs:17
        .with_env_filter(std::env::var("RUST_LOG").unwrap_or_default())

Reads environment variables or the filesystem — an inventory-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 unknown #a435b7d03953854d Environment-variable access.
pkgs/rust/[email protected]/examples/mingrok.rs:19
        .with_env_filter(std::env::var("RUST_LOG").unwrap_or_else(|_| "info".into()))

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

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

low telemetry dependency Excluded from app score #f1d82435e8fcf478 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/online_tests.rs:379
                tracing::debug!(?status);

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.

low telemetry dependency Excluded from app score #7a4f4f5eb1e74b36 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/online_tests.rs:610
    tracing::debug!(?err_str);

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.

low telemetry dependency Excluded from app score #94498763bda8ba60 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/online_tests.rs:628
    tracing::debug!(?err_str);

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.

low env_fs dependency Excluded from app score #bbda6b08d78b5d6a Environment-variable access.
pkgs/rust/[email protected]/src/session.rs:358
        self.authtoken = env::var("NGROK_AUTHTOKEN").ok().map(From::from);

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

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

num_cpus

rust dependency
expand_more 2 low-confidence finding(s)
low env_fs dependency Excluded from app score #6f2a5841768623b6 Environment-variable access.
pkgs/rust/[email protected]/src/lib.rs:461
        ::std::env::var(name).ok().map(|val| val.parse().unwrap())

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

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

low env_fs dependency Excluded from app score #1afa19f6ac630f7c Filesystem access.
pkgs/rust/[email protected]/src/linux.rs:60
    let file = match File::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.

opentelemetry-otlp

rust dependency
expand_more 11 low-confidence finding(s)
low env_fs dependency Excluded from app score #7dd875f9e8496b8b Environment-variable access.
pkgs/rust/[email protected]/src/exporter/mod.rs:214
        let protocol = match std::env::var(OTEL_EXPORTER_OTLP_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 #0611a8b5e5d231c7 Environment-variable access.
pkgs/rust/[email protected]/src/exporter/mod.rs:225
        let endpoint = match std::env::var(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 #4d13afc2b09453b4 Environment-variable access.
pkgs/rust/[email protected]/src/exporter/mod.rs:231
        let timeout = match std::env::var(OTEL_EXPORTER_OTLP_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 #08c1f6d1d3fe5465 Environment-variable access.
pkgs/rust/[email protected]/src/exporter/tonic.rs:49
    } else if let Ok(compression) = std::env::var(env_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 #8027c4334602975b Environment-variable access.
pkgs/rust/[email protected]/src/exporter/tonic.rs:51
    } else if let Ok(compression) = std::env::var(OTEL_EXPORTER_OTLP_COMPRESSION) {

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

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

low env_fs dependency Excluded from app score #04cdb61862cdb8b0 Environment-variable access.
pkgs/rust/[email protected]/src/metric.rs:351
        let endpoint = match std::env::var(OTEL_EXPORTER_OTLP_METRICS_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 #1e13aab45a2b9359 Environment-variable access.
pkgs/rust/[email protected]/src/metric.rs:356
        let _timeout = match std::env::var(OTEL_EXPORTER_OTLP_METRICS_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 #0f9c97ec46c048c8 Environment-variable access.
pkgs/rust/[email protected]/src/metric.rs:419
        let _endpoint = match std::env::var(OTEL_EXPORTER_OTLP_METRICS_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 #c03e1c592133c24e Environment-variable access.
pkgs/rust/[email protected]/src/metric.rs:429
        let _timeout = match std::env::var(OTEL_EXPORTER_OTLP_METRICS_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 #524326ce083a9542 Environment-variable access.
pkgs/rust/[email protected]/src/span.rs:351
        let endpoint_str = match std::env::var(OTEL_EXPORTER_OTLP_TRACES_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 #d9205ebaa2f62e0a Environment-variable access.
pkgs/rust/[email protected]/src/span.rs:358
        let _timeout = match std::env::var(OTEL_EXPORTER_OTLP_TRACES_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.

ratatui

rust dependency
expand_more 2 low-confidence finding(s)
low env_fs tooling Excluded from app score unknown #f3b79f4402a18392 Environment-variable access.
pkgs/rust/[email protected]/examples/async.rs:64
    let token = std::env::var("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 unknown #1b9faebc1a6d5bcd Filesystem access.
pkgs/rust/[email protected]/examples/tracing.rs:97
    let file = File::create("tracing.log").wrap_err("failed to create tracing.log")?;

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

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

reqwest

rust dependency
expand_more 49 low-confidence finding(s)
low egress tooling Excluded from app score unknown #3708055e72488f50 Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/examples/form.rs:9
    let response = reqwest::Client::new()
        .post("http://www.baidu.com")

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 tooling Excluded from app score unknown #a63558230543411a Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/examples/json_dynamic.rs:12
    let echo_json: serde_json::Value = reqwest::Client::new()
        .post("https://jsonplaceholder.typicode.com/posts")

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 tooling Excluded from app score unknown #a8aaa27e93220ca0 Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/examples/json_typed.rs:30
    let new_post: Post = reqwest::Client::new()
        .post("https://jsonplaceholder.typicode.com/posts")

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 tooling Excluded from app score unknown #217ced9e215c4dec Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/examples/tor_socks.rs:15
    let res = client.get("https://check.torproject.org").send().await?;

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 telemetry dependency Excluded from app score #4da23065c4fc36a3 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/async_impl/client.rs:496
                                    log::warn!(
                                        "rustls failed to parse DER certificate {err:?} {cert:?}"
                                    );

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.

low egress dependency Excluded from app score #ff541f2d650f8eda Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/src/async_impl/request.rs:662
        let r = client.get(some_url);

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 #f4f438fedef83d74 Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/src/async_impl/request.rs:675
        let r = client.get(some_url);

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 #2023a07acf06bbfa Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/src/async_impl/request.rs:693
        let r = client.get(some_url);

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 #bd6e01551c7343c9 Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/src/async_impl/request.rs:714
        let r = client.get(some_url);

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 #3443a9648dd635d7 Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/src/async_impl/request.rs:731
        let req = client
            .get("https://hyper.rs")

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 #c9a88d05149e87c6 Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/src/async_impl/request.rs:753
        let req = client
            .get(some_url)

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 #37e16abd1eab7bce Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/src/async_impl/request.rs:766
        let builder = client
            .post("http://httpbin.org/post")

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 #2604a04064ab0d62 Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/src/async_impl/request.rs:783
        let builder = client.get("http://httpbin.org/get");

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 #18a6b5661a955786 Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/src/async_impl/request.rs:800
        let builder = client
            .get("http://httpbin.org/get")

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 #500cb7e050f430da Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/src/async_impl/request.rs:812
        let req = client.get(some_url).build().expect("request build");

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 #3503670d9df35e04 Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/src/async_impl/request.rs:917
            client.get("http://example.com")

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 #b639e8c6a72b1032 Filesystem access.
pkgs/rust/[email protected]/src/blocking/multipart.rs:225
        let file = File::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 egress dependency Excluded from app score #ff4632c51975ecbd Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/src/blocking/request.rs:675
        let r = client.get(some_url).build().unwrap();

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 #86696bfe1e49efeb Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/src/blocking/request.rs:695
        let r = client.post(some_url).build().unwrap();

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 #2541bb712bb9cd21 Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/src/blocking/request.rs:705
        let r = client.put(some_url).build().unwrap();

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 #664bfc8a4671d525 Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/src/blocking/request.rs:735
        let r = client.post(some_url);

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 #ff4aee959b2bb2cc Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/src/blocking/request.rs:750
        let r = client.post(some_url);

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 #9b5ffcb0951823e5 Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/src/blocking/request.rs:768
        let r = client.post(some_url);

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 #fe49c5eb8c5a7c25 Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/src/blocking/request.rs:792
        let r = client.post(some_url);

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 #c6b03f505808182d Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/src/blocking/request.rs:807
        let mut r = client.get(some_url);

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 #cea5d6d060d3ed88 Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/src/blocking/request.rs:820
        let mut r = client.get(some_url);

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 #57cd0df46cfa01db Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/src/blocking/request.rs:838
        let mut r = client.get(some_url);

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 #67534bbe3839e232 Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/src/blocking/request.rs:859
        let mut r = client.get(some_url);

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 #2e6896b33bdd2d64 Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/src/blocking/request.rs:871
        let r = client.post(some_url);

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 #fabe2021d0a2742d Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/src/blocking/request.rs:895
        let r = client.post(some_url);

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 #2f6a08e6ad7e51b4 Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/src/blocking/request.rs:929
        let r = client.post(some_url);

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 #0945721b8777d634 Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/src/blocking/request.rs:945
        let req = client
            .get("https://hyper.rs")

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 #14af41ee621f2cd2 Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/src/blocking/request.rs:967
        let req = client
            .get(some_url)

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 #c459e9bd6e8cf7bb Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/src/blocking/request.rs:982
        let req = client.get(some_url).build().expect("request build");

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 telemetry dependency Excluded from app score #7ba1d4900e560468 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/connect.rs:320
        log::debug!("proxy({proxy_scheme:?}) intercepts '{dst:?}'");

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.

low telemetry dependency Excluded from app score #90c3d7853f9fb227 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/connect.rs:449
        log::debug!("starting new connection: {dst:?}");

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.

low telemetry dependency Excluded from app score #5dc8f96972e45383 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/connect.rs:694
        log::debug!("tunnel to {host}:{port} using basic auth");

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.

low env_fs dependency Excluded from app score #099137312606a73c Environment-variable access.
pkgs/rust/[email protected]/src/proxy.rs:452
        let raw = env::var("NO_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 #ef29574742c4c5c9 Environment-variable access.
pkgs/rust/[email protected]/src/proxy.rs:453
            .or_else(|_| env::var("no_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 #f8270c81cde888ac Environment-variable access.
pkgs/rust/[email protected]/src/proxy.rs:901
        if log::log_enabled!(log::Level::Warn) && env::var_os("HTTP_PROXY").is_some() {

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

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

low telemetry dependency Excluded from app score #333752d721be293a Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/proxy.rs:902
            log::warn!("HTTP_PROXY environment variable ignored in CGI");

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.

low env_fs dependency Excluded from app score #d99166f063687990 Environment-variable access.
pkgs/rust/[email protected]/src/proxy.rs:923
    if let Ok(val) = env::var(var) {

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

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

low env_fs dependency Excluded from app score #604544732de09c51 Environment-variable access.
pkgs/rust/[email protected]/src/proxy.rs:935
    env::var_os("REQUEST_METHOD").is_some()

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

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

low env_fs dependency Excluded from app score #a3605e86ee4d3b72 Environment-variable access.
pkgs/rust/[email protected]/src/proxy.rs:1629
        let orig_val = env::var(&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.

low egress dependency Excluded from app score #546b3d2ecd5b6ac6 Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/src/wasm/client.rs:351
        let mut req = client
            .get("https://www.example.com")

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 #66f37d577ccb86d0 Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/src/wasm/client.rs:376
        let mut req = client
            .get("https://www.example.com")

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 #e82a0fc97c036f79 Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/src/wasm/client.rs:392
        let mut req2 = client
            .get("https://www.example.com/x")

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 #57a948165d9b68a2 Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/src/wasm/client.rs:414
        let mut req = client
            .get("https://www.example.com")

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 #02c135eff3a626ca Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/src/wasm/client.rs:432
        let mut req2 = client
            .get("https://www.example.com")

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.

serde

rust dependency
expand_more 2 low-confidence finding(s)
low env_fs dependency Excluded from app score #26a5b7356be0f046 Environment-variable access.
pkgs/rust/[email protected]/build.rs:33
    let target = env::var("TARGET").unwrap();

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

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

low env_fs dependency Excluded from app score #01bc4227c48fcd62 Environment-variable access.
pkgs/rust/[email protected]/build.rs:111
    let rustc = env::var_os("RUSTC")?;

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

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

serde_json

rust dependency
expand_more 2 low-confidence finding(s)
low env_fs dependency Excluded from app score #502f5ba31ddd002a Environment-variable access.
pkgs/rust/[email protected]/build.rs:10
    let target_arch = env::var_os("CARGO_CFG_TARGET_ARCH").unwrap();

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

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

low env_fs dependency Excluded from app score #8c852648e5cd2fde Environment-variable access.
pkgs/rust/[email protected]/build.rs:11
    let target_pointer_width = env::var_os("CARGO_CFG_TARGET_POINTER_WIDTH").unwrap();

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

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

sysinfo

rust dependency
expand_more 21 low-confidence finding(s)
low env_fs dependency Excluded from app score #36b331c2d3823411 Environment-variable access.
pkgs/rust/[email protected]/src/lib.rs:487
        if std::env::var("APPLE_CI").is_err() && std::env::var("FREEBSD_CI").is_err() {

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

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

low env_fs dependency Excluded from app score #98a3fcfe9ebe407c Filesystem access.
pkgs/rust/[email protected]/src/unix/groups.rs:36
    let _ = File::open("/etc/group").and_then(|mut f| f.read_to_string(&mut 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 #b2b23e2e16740a25 Filesystem access.
pkgs/rust/[email protected]/src/unix/linux/component.rs:101
    let mut f = File::open(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 #9d610b1cae48c137 Filesystem access.
pkgs/rust/[email protected]/src/unix/linux/component.rs:114
    let mut f = File::open(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 #a944ea79af6b3889 Filesystem access.
pkgs/rust/[email protected]/src/unix/linux/cpu.rs:88
            let f = match File::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 #871ea001ccee1fd3 Filesystem access.
pkgs/rust/[email protected]/src/unix/linux/cpu.rs:417
    if File::open(format!(
        "/sys/devices/system/cpu/cpu{cpu_core_index}/cpufreq/scaling_cur_freq",
    ))

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

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

low env_fs dependency Excluded from app score #40758dffa9597d59 Filesystem access.
pkgs/rust/[email protected]/src/unix/linux/cpu.rs:431
    if File::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 #9e7b70718609334a Filesystem access.
pkgs/rust/[email protected]/src/unix/linux/cpu.rs:453
    if let Err(_e) = File::open("/proc/cpuinfo").and_then(|mut f| f.read_to_string(&mut 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 #9bc5a8b20527e27f Filesystem access.
pkgs/rust/[email protected]/src/unix/linux/cpu.rs:720
    if File::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 #2ab804bfe252a9e2 Filesystem access.
pkgs/rust/[email protected]/src/unix/linux/network.rs:26
    if let Ok(mut f) = File::open(parent.as_ref().join(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 #b1b064dde3eda057 Filesystem access.
pkgs/rust/[email protected]/src/unix/linux/process.rs:362
    let mut file = File::open(path.join("stat")).map_err(|_| ())?;

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

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

low env_fs dependency Excluded from app score #02f4bd3a501e2367 Filesystem access.
pkgs/rust/[email protected]/src/unix/linux/process.rs:589
    let mut file = match File::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 #3e1ef23449e59271 Filesystem access.
pkgs/rust/[email protected]/src/unix/linux/process.rs:793
    match File::open(entry) {

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

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

low env_fs dependency Excluded from app score #7accce223670f79f Filesystem access.
pkgs/rust/[email protected]/src/unix/linux/system.rs:62
    if let Ok(buf) = File::open("/proc/stat").and_then(|mut 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 #b614d42bbfe31fbb Filesystem access.
pkgs/rust/[email protected]/src/unix/linux/system.rs:369
        if File::open("/proc/loadavg")

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

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

low env_fs dependency Excluded from app score #6cb1e76fd0bd9882 Filesystem access.
pkgs/rust/[email protected]/src/unix/linux/system.rs:596
    if let Ok(buf) = File::open(path).and_then(|mut 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 #3e67a5234effcbfe Filesystem access.
pkgs/rust/[email protected]/src/unix/linux/system.rs:618
    let buf = File::open(fallback_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 #9d92c72d3fc0daba Filesystem access.
pkgs/rust/[email protected]/src/unix/linux/system.rs:698
        std::fs::write(
            &tmp1,
            r#"NAME="Ubuntu"
VERSION="20.10 (Groovy Gorilla)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 20.10"
VERSION_ID="20.10"
VERSION_CODENAME=groovy
UBUNTU_CODENAME=groovy
"#,
        )

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

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

low env_fs dependency Excluded from app score #0804bc059b8d0f61 Filesystem access.
pkgs/rust/[email protected]/src/unix/linux/system.rs:713
        std::fs::write(
            &tmp2,
            r#"DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=20.10
DISTRIB_CODENAME=groovy
DISTRIB_DESCRIPTION="Ubuntu 20.10"
"#,
        )

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

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

low env_fs dependency Excluded from app score #636d02d53ff46e67 Filesystem access.
pkgs/rust/[email protected]/src/unix/linux/utils.rs:18
    let mut file = File::open(file_path.as_ref())?;

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

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

low env_fs dependency Excluded from app score #dd0b417a19fe40f0 Filesystem access.
pkgs/rust/[email protected]/src/unix/users.rs:131
    let _ = File::open("/etc/passwd").and_then(|mut f| f.read_to_string(&mut 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.

tabled

rust dependency
expand_more 1 low-confidence finding(s)
low env_fs tooling Excluded from app score unknown #3e423940056b28ae Filesystem access.
pkgs/rust/[email protected]/examples/iter_table.rs:20
    let file = std::fs::File::open(path).unwrap();

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

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

thiserror

rust dependency
expand_more 7 low-confidence finding(s)
low env_fs dependency Excluded from app score #3006e0d4d7d08086 Environment-variable access.
pkgs/rust/[email protected]/build.rs:23
    } else if let Some(rustc_bootstrap) = env::var_os("RUSTC_BOOTSTRAP") {

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

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

low env_fs dependency Excluded from app score #26b4dc5323c4b811 Environment-variable access.
pkgs/rust/[email protected]/build.rs:60
    if env::var_os("RUSTC_STAGE").is_some() {

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

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

low env_fs dependency Excluded from app score #ef76975bcaf85f5c Environment-variable access.
pkgs/rust/[email protected]/build.rs:83
    let rustc_wrapper = env::var_os("RUSTC_WRAPPER").filter(|wrapper| !wrapper.is_empty());

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

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

low env_fs dependency Excluded from app score #bff25ca4ea54702b Environment-variable access.
pkgs/rust/[email protected]/build.rs:85
        env::var_os("RUSTC_WORKSPACE_WRAPPER").filter(|wrapper| !wrapper.is_empty());

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

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

low env_fs dependency Excluded from app score #649f84c6d557b0fe Environment-variable access.
pkgs/rust/[email protected]/build.rs:107
    if let Some(target) = env::var_os("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 #4f360fff0a7cea7a Environment-variable access.
pkgs/rust/[email protected]/build.rs:112
    if let Ok(rustflags) = env::var("CARGO_ENCODED_RUSTFLAGS") {

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

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

low env_fs dependency Excluded from app score #f924f069b6c83668 Environment-variable access.
pkgs/rust/[email protected]/build.rs:139
    env::var_os(key).unwrap_or_else(|| {

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

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

tokenizers

rust dependency
expand_more 22 low-confidence finding(s)
low env_fs dependency Excluded from app score #356e56643a5dd46e Filesystem access.
pkgs/rust/[email protected]/benches/bert_benchmark.rs:54
    for line in BufReader::new(File::open(Path::new("data/big.txt")).unwrap()).lines() {

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

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

low env_fs dependency Excluded from app score #0e41c8c97213e7e6 Filesystem access.
pkgs/rust/[email protected]/benches/bpe_benchmark.rs:39
    for line in BufReader::new(File::open(Path::new("data/big.txt")).unwrap()).lines() {

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

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

low env_fs dependency Excluded from app score #643a0482b078db37 Filesystem access.
pkgs/rust/[email protected]/benches/layout_benchmark.rs:30
    for line in BufReader::new(File::open(Path::new("data/big.txt")).unwrap()).lines() {

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

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

low env_fs dependency Excluded from app score #32a8c080dc588898 Filesystem access.
pkgs/rust/[email protected]/benches/llama3.rs:8
    let data = std::fs::read_to_string("data/big.txt").unwrap();

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

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

low env_fs dependency Excluded from app score #32eca4d2c74a22b9 Filesystem access.
pkgs/rust/[email protected]/benches/unigram_benchmark.rs:20
    let content = read_to_string("data/small.txt").unwrap();

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

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

low env_fs dependency Excluded from app score #7e4637476c1de42d Filesystem access.
pkgs/rust/[email protected]/benches/unigram_benchmark.rs:46
    let content = read_to_string("data/big.txt").unwrap();

Reads environment variables or the filesystem — an inventory-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 unknown #ab9f1dd33c915f0f Filesystem access.
pkgs/rust/[email protected]/examples/encode_batch.rs:6
    let data = std::fs::read_to_string("data/big.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 #d7d66cb058c8d38a Filesystem access.
pkgs/rust/[email protected]/src/models/bpe/model.rs:321
        let vocab_file = File::open(vocab)?;

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

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

low env_fs dependency Excluded from app score #7b6e4716c18ae2d3 Filesystem access.
pkgs/rust/[email protected]/src/models/bpe/model.rs:341
        let merge_file = File::open(merges)?;

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

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

low env_fs dependency Excluded from app score #2a37c58b8ef6636b Filesystem access.
pkgs/rust/[email protected]/src/models/bpe/model.rs:535
        let mut vocab_file = File::create(&vocab_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 #3e8474ffcabc9503 Filesystem access.
pkgs/rust/[email protected]/src/models/bpe/model.rs:549
        let mut merges_file = File::create(&merges_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 #373123bb9cd39fec Filesystem access.
pkgs/rust/[email protected]/src/models/unigram/model.rs:379
        let string = read_to_string(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 #153e8c74726a4872 Filesystem access.
pkgs/rust/[email protected]/src/models/unigram/model.rs:479
        std::fs::write(&fullpath, 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 #3790a08e0670fcfb Filesystem access.
pkgs/rust/[email protected]/src/models/wordlevel/mod.rs:119
        let vocab_file = File::open(vocab_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 #e7788a34b37da77e Filesystem access.
pkgs/rust/[email protected]/src/models/wordlevel/mod.rs:205
        let mut vocab_file = File::create(&vocab_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 #2fff2a74a650cfe5 Filesystem access.
pkgs/rust/[email protected]/src/models/wordpiece/mod.rs:162
        let file = File::open(vocab)?;

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

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

low env_fs dependency Excluded from app score #87bd643adc399780 Filesystem access.
pkgs/rust/[email protected]/src/models/wordpiece/mod.rs:282
        let mut vocab_file = File::create(&vocab_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 #52f84cd8c193ab47 Filesystem access.
pkgs/rust/[email protected]/src/tokenizer/mod.rs:1356
            len += File::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 #b60db495ae761956 Filesystem access.
pkgs/rust/[email protected]/src/tokenizer/mod.rs:1365
                match File::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 #a0be8bd3b0a07c96 Filesystem access.
pkgs/rust/[email protected]/src/tokenizer/mod.rs:1560
        let mut file = File::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 #a2f993315941d28b Environment-variable access.
pkgs/rust/[email protected]/src/utils/parallelism.rs:22
    std::env::var(ENV_VARIABLE).is_ok() || get_override_parallelism().is_some()

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

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

low env_fs dependency Excluded from app score #4b44e22a53256d07 Environment-variable access.
pkgs/rust/[email protected]/src/utils/parallelism.rs:42
    match std::env::var(ENV_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.

tokio

rust dependency
expand_more 6 low-confidence finding(s)
low env_fs dependency Excluded from app score #75862624e2c1632b Filesystem access.
pkgs/rust/[email protected]/src/fs/file.rs:154
        let std = asyncify(|| StdFile::open(path)).await?;

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

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

low env_fs dependency Excluded from app score #4cc7a0e22f73ebaa Filesystem access.
pkgs/rust/[email protected]/src/fs/file.rs:192
        let std_file = asyncify(move || StdFile::create(path)).await?;

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

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

low env_fs dependency Excluded from app score #6a8ef63ddf6a5080 Filesystem access.
pkgs/rust/[email protected]/src/fs/read.rs:48
    asyncify(move || std::fs::read(path)).await

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

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

low env_fs dependency Excluded from app score #a83b321382ed3b17 Filesystem access.
pkgs/rust/[email protected]/src/fs/read_to_string.rs:29
    asyncify(move || std::fs::read_to_string(path)).await

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

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

low env_fs dependency Excluded from app score #6d35592fe5df667c Filesystem access.
pkgs/rust/[email protected]/src/fs/write.rs:30
    asyncify(move || std::fs::write(path, contents)).await

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

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

low env_fs dependency Excluded from app score #ab455bccdb31e8ce Environment-variable access.
pkgs/rust/[email protected]/src/loom/std/mod.rs:95
        match std::env::var(ENV_WORKER_THREADS) {

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

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

tonic

rust dependency
expand_more 2 low-confidence finding(s)
low telemetry dependency Excluded from app score #9ad9127db661b387 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/transport/service/reconnect.rs:105
                                tracing::debug!("reconnect::poll_ready: {:?}", error);

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.

low telemetry dependency Excluded from app score #c62a917be33f26ff Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/transport/service/reconnect.rs:144
            tracing::debug!("error: {}", error);

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.

tower

rust dependency
expand_more 4 low-confidence finding(s)
low telemetry dependency Excluded from app score #8a1fb83789acd336 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/balance/p2c/test.rs:110
                tracing::info!("using {}", c);

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.

low telemetry dependency Excluded from app score #0ce72a0d264cca5d Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/buffer/worker.rs:59
            tracing::debug!("buffer closing; waking pending tasks");

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.

low telemetry dependency Excluded from app score #e32a52bc180591a9 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/buffer/worker.rs:197
                            tracing::debug!(service.ready = true, message = "processing request");

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.

low telemetry dependency Excluded from app score #d6c1452108495246 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/buffer/worker.rs:216
                            tracing::debug!({ %error }, "service failed");

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.

tower-http

rust dependency
expand_more 14 low-confidence finding(s)
low telemetry dependency Excluded from app score #3a514c775478a9e9 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/catch_panic.rs:343
            tracing::error!("Service panicked: {}", s);

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.

low telemetry dependency Excluded from app score #47051321dba99a75 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/catch_panic.rs:345
            tracing::error!("Service panicked: {}", s);

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.

low telemetry dependency Excluded from app score #17fe9299e75dc915 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/catch_panic.rs:347
            tracing::error!(
                "Service panicked but `CatchPanic` was unable to downcast the panic info"
            );

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.

low env_fs dependency Excluded from app score #d5c1f25ba094353d Filesystem access.
pkgs/rust/[email protected]/src/compression/layer.rs:136
        let file = File::open("Cargo.toml").await.expect("file missing");

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

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

low telemetry dependency Excluded from app score #3524b4fa19bb1fe0 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/services/fs/serve_dir/mod.rs:414
                    tracing::error!(error = %err, "Failed to read file");

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.

low env_fs dependency Excluded from app score #aa19a4f0d15ca8e4 Filesystem access.
pkgs/rust/[email protected]/src/services/fs/serve_dir/open_file.rs:209
        match (File::open(&path).await, encoding) {

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

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

low env_fs dependency Excluded from app score #d998d7c3ef73c6a2 Filesystem access.
pkgs/rust/[email protected]/src/services/fs/serve_dir/tests.rs:30
    let contents = std::fs::read_to_string("../README.md").unwrap();

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

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

low env_fs dependency Excluded from app score #a91d39302eafbd5d Filesystem access.
pkgs/rust/[email protected]/src/services/fs/serve_dir/tests.rs:100
    let contents = std::fs::read_to_string("../README.md").unwrap();

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

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

low env_fs dependency Excluded from app score #807a7cfb1df52732 Filesystem access.
pkgs/rust/[email protected]/src/services/fs/serve_dir/tests.rs:270
    let contents = std::fs::read_to_string("Cargo.toml").unwrap();

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

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

low env_fs dependency Excluded from app score #5bb75f305a127295 Filesystem access.
pkgs/rust/[email protected]/src/services/fs/serve_dir/tests.rs:476
    let file_contents = std::fs::read("../README.md").unwrap();

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

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

low env_fs dependency Excluded from app score #03a95d52e5218018 Filesystem access.
pkgs/rust/[email protected]/src/services/fs/serve_dir/tests.rs:516
    let file_contents = std::fs::read("../README.md").unwrap();

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

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

low env_fs dependency Excluded from app score #9d07527479caad21 Filesystem access.
pkgs/rust/[email protected]/src/services/fs/serve_dir/tests.rs:538
    let file_contents = std::fs::read("../README.md").unwrap();

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

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

low env_fs dependency Excluded from app score #8bca5a49f7c65df9 Filesystem access.
pkgs/rust/[email protected]/src/services/fs/serve_dir/tests.rs:555
    let file_contents = std::fs::read("../README.md").unwrap();

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

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

low env_fs dependency Excluded from app score #4ef6a9e1a77cd1cf Filesystem access.
pkgs/rust/[email protected]/src/services/fs/serve_dir/tests.rs:681
    let contents = std::fs::read_to_string("../README.md").unwrap();

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

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

tracing

rust dependency
expand_more 1 low-confidence finding(s)
low telemetry dependency Excluded from app score #d40acfc0c6fd11a3 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/event.rs:7
        b.iter(|| tracing::info!("hello world!"))

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.

tracing-subscriber

rust dependency
expand_more 113 low-confidence finding(s)
low telemetry dependency Excluded from app score #7623fe087514e503 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter.rs:50
                tracing::info!(target: "static_filter", "hi");

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.

low telemetry dependency Excluded from app score #8e65e1e9470eddbc Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter.rs:51
                tracing::debug!(target: "static_filter", "hi");

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.

low telemetry dependency Excluded from app score #9f907923fdeadead Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter.rs:52
                tracing::warn!(target: "static_filter", "hi");

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.

low telemetry dependency Excluded from app score #ca20f6562efd0350 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter.rs:63
                tracing::info!(target: "static_filter", "hi");

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.

low telemetry dependency Excluded from app score #d9592d56ff39ccff Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter.rs:64
                tracing::debug!(target: "static_filter", "hi");

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.

low telemetry dependency Excluded from app score #f70a7fa433cb13a1 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter.rs:65
                tracing::warn!(target: "static_filter", "hi");

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.

low telemetry dependency Excluded from app score #162ea2e19c2b8a44 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter.rs:76
                tracing::info!(target: "static_filter", "hi");

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.

low telemetry dependency Excluded from app score #486d8c221e7d2adc Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter.rs:86
                tracing::info!(target: "static_filter", "hi");

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.

low telemetry dependency Excluded from app score #06e175ef84a299c0 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter.rs:96
                tracing::debug!(target: "static_filter", "hi");

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.

low telemetry dependency Excluded from app score #abf215b4d2864bca Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter.rs:114
                tracing::info!(target: "static_filter", "hi");

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.

low telemetry dependency Excluded from app score #dea7d3d4b5c6f395 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter.rs:124
                tracing::info!(target: "static_filter", "hi");

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.

low telemetry dependency Excluded from app score #d204bb7a1aac434d Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter.rs:136
                        tracing::info!(target: "static_filter", "hi");

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.

low telemetry dependency Excluded from app score #867afed02c9bdace Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter.rs:139
                        tracing::debug!(target: "static_filter", "hi");

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.

low telemetry dependency Excluded from app score #b8e8699d301fed11 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter.rs:142
                        tracing::warn!(target: "static_filter", "hi");

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.

low telemetry dependency Excluded from app score #ce35993f70f875e7 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter.rs:145
                        tracing::warn!(target: "foo", "hi");

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.

low telemetry dependency Excluded from app score #cd41bb1bf1098d35 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter.rs:164
                        tracing::info!(target: "static_filter", "hi");

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.

low telemetry dependency Excluded from app score #475ac490b9e1264e Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter.rs:167
                        tracing::debug!(target: "static_filter", "hi");

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.

low telemetry dependency Excluded from app score #0da8cdb282e091cf Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter.rs:170
                        tracing::warn!(target: "static_filter", "hi");

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.

low telemetry dependency Excluded from app score #534aa7a1c6c157ea Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter.rs:173
                        tracing::warn!(target: "foo", "hi");

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.

low telemetry dependency Excluded from app score #905eab950c1bad94 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter.rs:191
                    tracing::info!("hi");

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.

low telemetry dependency Excluded from app score #28a7f80ecdb42f55 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter.rs:192
                    tracing::debug!("hi");

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.

low telemetry dependency Excluded from app score #896e0ac188765f9d Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter.rs:195
                    tracing::warn!("hi");

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.

low telemetry dependency Excluded from app score #705657fd6dc591f7 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter.rs:206
                    tracing::info!("hi");

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.

low telemetry dependency Excluded from app score #5c34fa8d88f3c50f Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter.rs:207
                    tracing::debug!("hi");

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.

low telemetry dependency Excluded from app score #93b62369d7f944ca Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter.rs:210
                    tracing::warn!("hi");

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.

low telemetry dependency Excluded from app score #1d6a3dc83b5ed69e Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter.rs:226
                        tracing::info!("hi");

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.

low telemetry dependency Excluded from app score #2e9c484fcf6b8a4c Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter.rs:231
                        tracing::debug!("hi");

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.

low telemetry dependency Excluded from app score #d4f4a803adfd88b2 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter.rs:236
                        tracing::debug!("hi");

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.

low telemetry dependency Excluded from app score #331ca2cc3cf0004c Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter.rs:258
                        tracing::info!("hi");

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.

low telemetry dependency Excluded from app score #84b0daf6f2c788ee Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter.rs:263
                        tracing::debug!("hi");

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.

low telemetry dependency Excluded from app score #e0b0e14645f3de0f Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter.rs:268
                        tracing::debug!("hi");

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.

low telemetry dependency Excluded from app score #814583e5e2566435 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter.rs:291
                tracing::info!(target: "static_filter", "hi");

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.

low telemetry dependency Excluded from app score #403592ab8a8dfef7 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter_log.rs:52
                log::info!(target: "static_filter", "hi");

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.

low telemetry dependency Excluded from app score #ac18f119dd7e0bdb Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter_log.rs:53
                log::debug!(target: "static_filter", "hi");

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.

low telemetry dependency Excluded from app score #6edee874e8fcc9a4 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter_log.rs:54
                log::warn!(target: "static_filter", "hi");

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.

low telemetry dependency Excluded from app score #77251922806965ff Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter_log.rs:65
                log::info!(target: "static_filter", "hi");

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.

low telemetry dependency Excluded from app score #5ae86159e55fda2c Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter_log.rs:66
                log::debug!(target: "static_filter", "hi");

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.

low telemetry dependency Excluded from app score #e6622185a2641c1d Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter_log.rs:67
                log::warn!(target: "static_filter", "hi");

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.

low telemetry dependency Excluded from app score #b619d9a1cc3f5eea Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter_log.rs:78
                log::info!(target: "static_filter", "hi");

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.

low telemetry dependency Excluded from app score #bebb548f4f21b7c6 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter_log.rs:88
                log::info!(target: "static_filter", "hi");

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.

low telemetry dependency Excluded from app score #ca62572125d347a0 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter_log.rs:98
                log::debug!(target: "static_filter", "hi");

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.

low telemetry dependency Excluded from app score #31ffd1eddcaf5a2b Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter_log.rs:116
                log::info!(target: "static_filter", "hi");

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.

low telemetry dependency Excluded from app score #a7763c062207bc6e Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter_log.rs:126
                log::info!(target: "static_filter", "hi");

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.

low telemetry dependency Excluded from app score #f5b478e90f17a6ab Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter_log.rs:138
                        log::info!(target: "static_filter", "hi");

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.

low telemetry dependency Excluded from app score #4296f0be7689c432 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter_log.rs:141
                        log::debug!(target: "static_filter", "hi");

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.

low telemetry dependency Excluded from app score #ae85f027bab9c542 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter_log.rs:144
                        log::warn!(target: "static_filter", "hi");

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.

low telemetry dependency Excluded from app score #db6a8b009dd007a6 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter_log.rs:147
                        log::warn!(target: "foo", "hi");

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.

low telemetry dependency Excluded from app score #9fec9c2dbc3aa515 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter_log.rs:166
                        log::info!(target: "static_filter", "hi");

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.

low telemetry dependency Excluded from app score #e0e98c713e489b81 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter_log.rs:169
                        log::debug!(target: "static_filter", "hi");

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.

low telemetry dependency Excluded from app score #ae9648c401a5cdc0 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter_log.rs:172
                        log::warn!(target: "static_filter", "hi");

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.

low telemetry dependency Excluded from app score #128df7bb5613654d Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter_log.rs:175
                        log::warn!(target: "foo", "hi");

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.

low telemetry dependency Excluded from app score #ea2d4febfca5bd26 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter_log.rs:195
                    log::info!("hi");

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.

low telemetry dependency Excluded from app score #4582c3dc545e4480 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter_log.rs:196
                    log::debug!("hi");

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.

low telemetry dependency Excluded from app score #fd9949c968b735e0 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter_log.rs:199
                    log::warn!("hi");

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.

low telemetry dependency Excluded from app score #bee4bab2b88a1edd Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter_log.rs:210
                    log::info!("hi");

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.

low telemetry dependency Excluded from app score #8ff6b623494a973b Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter_log.rs:211
                    log::debug!("hi");

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.

low telemetry dependency Excluded from app score #c3c52ae6a3290df7 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter_log.rs:214
                    log::warn!("hi");

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.

low telemetry dependency Excluded from app score #f36cd0f4a5155075 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter_log.rs:230
                        log::info!("hi");

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.

low telemetry dependency Excluded from app score #5a297d04cf37aac3 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter_log.rs:235
                        log::debug!("hi");

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.

low telemetry dependency Excluded from app score #55bf325a28cae676 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter_log.rs:240
                        log::debug!("hi");

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.

low telemetry dependency Excluded from app score #3e8748f1b0f2a02a Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter_log.rs:262
                        log::info!("hi");

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.

low telemetry dependency Excluded from app score #a8ceb4116faeff5d Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter_log.rs:267
                        log::debug!("hi");

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.

low telemetry dependency Excluded from app score #a77b57b956861d2b Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter_log.rs:272
                        log::debug!("hi");

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.

low telemetry dependency Excluded from app score #fd61db05296d4ffe Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/filter_log.rs:298
                log::info!(target: "static_filter", "hi");

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.

low telemetry dependency Excluded from app score #412c3bb0da89a55f Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/fmt.rs:103
                        tracing::info!(n);

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.

low telemetry dependency Excluded from app score #d557055049ec1637 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/fmt.rs:117
                                tracing::info!(n);

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.

low telemetry dependency Excluded from app score #b0698cc73e025a0f Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/fmt.rs:122
                                tracing::info!(n);

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.

low telemetry dependency Excluded from app score #63b50f171d03798c Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/fmt.rs:127
                                tracing::info!(n);

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.

low telemetry dependency Excluded from app score #fa5d121fd517dea4 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/fmt.rs:132
                                tracing::info!(n);

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.

low telemetry dependency Excluded from app score #88cd29fb9d40eff3 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/fmt.rs:150
                            tracing::info!(n);

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.

low telemetry dependency Excluded from app score #60629af601a7827a Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/fmt.rs:171
                                    tracing::info!(n);

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.

low telemetry dependency Excluded from app score #801b55535804f479 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/fmt.rs:179
                                    tracing::info!(n);

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.

low telemetry dependency Excluded from app score #837cbce67fcc00ee Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/fmt.rs:187
                                    tracing::info!(n);

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.

low telemetry dependency Excluded from app score #771ee3417f862358 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/fmt.rs:195
                                    tracing::info!(n);

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.

low telemetry dependency Excluded from app score #4f09bd8f6f57910f Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/fmt.rs:222
                                tracing::info!(n);

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.

low telemetry dependency Excluded from app score #f9424604f89197b7 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/fmt.rs:230
                                tracing::info!(n);

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.

low telemetry dependency Excluded from app score #0b684e3e7f07894f Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/fmt.rs:238
                                tracing::info!(n);

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.

low telemetry dependency Excluded from app score #c9dc8653d3d078e4 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/fmt.rs:246
                                tracing::info!(n);

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.

low telemetry dependency Excluded from app score #8416583c9fd30c41 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/fmt.rs:276
                                    tracing::info!(n);

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.

low telemetry dependency Excluded from app score #d33bc15250981881 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/fmt.rs:289
                                    tracing::info!(n);

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.

low telemetry dependency Excluded from app score #914b28f19253a390 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/fmt.rs:302
                                    tracing::info!(n);

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.

low telemetry dependency Excluded from app score #474a100470bd89d5 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/benches/fmt.rs:315
                                    tracing::info!(n);

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.

low env_fs dependency Excluded from app score #4520acacd9e325ad Environment-variable access.
pkgs/rust/[email protected]/src/filter/env/builder.rs:169
        let var = env::var(self.env_var_name()).unwrap_or_default();

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

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

low env_fs dependency Excluded from app score #504aff6ebe8133b5 Environment-variable access.
pkgs/rust/[email protected]/src/filter/env/builder.rs:178
        let var = env::var(self.env_var_name()).unwrap_or_default();

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

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

low env_fs dependency Excluded from app score #95c6fec3bf3d2cd6 Environment-variable access.
pkgs/rust/[email protected]/src/filter/env/builder.rs:186
        let var = env::var(self.env_var_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 #25da828b949ceec1 Environment-variable access.
pkgs/rust/[email protected]/src/fmt/fmt_layer.rs:717
        let ansi = cfg!(feature = "ansi") && env::var("NO_COLOR").map_or(true, |v| v.is_empty());

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

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

low telemetry dependency Excluded from app score #a8b141b7afe15b3a Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/fmt/fmt_layer.rs:1325
            tracing::info!(?AlwaysError);

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.

low telemetry dependency Excluded from app score #44b375231cdb005c Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/fmt/fmt_layer.rs:1363
            tracing::info!(?AlwaysError);

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.

low telemetry dependency Excluded from app score #1ef2673a3394d896 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/fmt/fmt_layer.rs:1523
            tracing::info!(target: "writer2", "hello writer2!");

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.

low telemetry dependency Excluded from app score #6ea1eab3f04b35bb Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/fmt/fmt_layer.rs:1526
            tracing::warn!(target: "writer1", "hello writer1!");

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.

low env_fs dependency Excluded from app score #98b0d7ec802ca8ba Environment-variable access.
pkgs/rust/[email protected]/src/fmt/fmt_layer.rs:1566
        let _saved_no_color = RestoreEnvVar(env::var(NO_COLOR));

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

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

low telemetry dependency Excluded from app score #6732002e1f2ff6a6 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/fmt/format/json.rs:586
            tracing::info!("some json test");

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.

low telemetry dependency Excluded from app score #9e8881c144620cec Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/fmt/format/json.rs:614
            tracing::info!("some json test");

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.

low telemetry dependency Excluded from app score #4b9e88765ad657aa Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/fmt/format/json.rs:630
            tracing::info!("some json test");

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.

low telemetry dependency Excluded from app score #743d2f446ca0ecdd Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/fmt/format/json.rs:646
            tracing::info!("some json test");

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.

low telemetry dependency Excluded from app score #5a7af6bdd47d6ad9 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/fmt/format/json.rs:661
            tracing::info!("some json test");

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.

low telemetry dependency Excluded from app score #3309748ab1f9f3f3 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/fmt/format/json.rs:676
            tracing::info!("some json test");

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.

low telemetry dependency Excluded from app score #2148adfc66d2767d Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/fmt/format/json.rs:698
            tracing::info!("some json test");

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.

low telemetry dependency Excluded from app score #5e71e821b1d97b35 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/fmt/format/json.rs:711
            tracing::info!("some json test");

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.

low telemetry dependency Excluded from app score #6bd89ae17670a280 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/fmt/format/json.rs:727
            tracing::info!("an event outside the root span");

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.

low telemetry dependency Excluded from app score #42bd58e201bd4318 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/fmt/format/json.rs:737
            tracing::info!("an event inside the root span");

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.

low telemetry dependency Excluded from app score #bed4d61778b9f716 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/fmt/format/mod.rs:1837
        tracing::info!("hello");

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.

low telemetry dependency Excluded from app score #b12dcf752adf005b Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/fmt/format/mod.rs:1856
        tracing::info!("hello");

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.

low telemetry dependency Excluded from app score #fa5f881c7ac4b442 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/fmt/format/mod.rs:1912
        tracing::info!("hello");

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.

low telemetry dependency Excluded from app score #6d77f4bd39da70c6 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/fmt/format/mod.rs:1926
        tracing::info!("hello");

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.

low telemetry dependency Excluded from app score #49e31c2d50edfd1c Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/fmt/format/mod.rs:1953
            tracing::info!(parent: &span2, "hello");

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.

low telemetry dependency Excluded from app score #8c0ce5c0fd0708ff Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/fmt/format/mod.rs:1980
            tracing::info!("hello");

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.

low telemetry dependency Excluded from app score #219de531922b69c1 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/fmt/format/mod.rs:1983
            tracing::info!(parent: &span2, "hello");

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.

low telemetry dependency Excluded from app score #c47cf9fdedaa0b15 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/fmt/format/mod.rs:1990
        tracing::info!("hello");

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.

low env_fs dependency Excluded from app score #fcff41bcfb238d4b Environment-variable access.
pkgs/rust/[email protected]/src/fmt/mod.rs:1200
        let targets = match env::var("RUST_LOG") {

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

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

low telemetry dependency Excluded from app score #ba8e154d20c1314a Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/layer/tests.rs:143
                tracing::info!("no span");

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.

low telemetry dependency Excluded from app score #3a8e0039757e5731 Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/layer/tests.rs:147
                tracing::info!(parent: &parent, "explicit span");

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.

low telemetry dependency Excluded from app score #5c80d5a678aa406a Log/trace emission. Structured logs can carry PII to sinks/aggregators.
pkgs/rust/[email protected]/src/layer/tests.rs:151
                tracing::info!("contextual span");

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.

ureq

rust dependency
expand_more 11 low-confidence finding(s)
low egress tooling Excluded from app score unknown #23b4f02f3db21dd1 Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/examples/count-bytes.rs:24
    agent.get("https://httpbin.org/bytes/123").call()?;

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 tooling Excluded from app score unknown #9d8373035afb3cbb Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/examples/count-bytes.rs:25
    agent.get("https://httpbin.org/bytes/123").call()?;

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 tooling Excluded from app score unknown #1325e2b08d8ed8fa Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/examples/custom-tls.rs:15
    let _response = agent.get("https://httpbin.org/").call();

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 tooling Excluded from app score unknown #5adeeba0967d5ae4 Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/examples/ipv6.rs:29
    let result = agent.get("https://www.google.com/").call();

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 unknown #1de0027750ab4769 Filesystem access.
pkgs/rust/[email protected]/examples/smoke-test/main.rs:96
    let file = std::fs::File::open(args.nth(1).unwrap())?;

Reads environment variables or the filesystem — 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 unknown #72deed9b6b521fe1 Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/examples/tls_config.rs:37
    let response1 = agent1.get("https://httpbin.org/get").call().unwrap();

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 tooling Excluded from app score unknown #d2522ee52fc060b4 Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/examples/tls_config.rs:55
    let response2 = agent2.get("https://httpbin.org/get").call().unwrap();

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 #86408141bd0bc625 Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/src/lib.rs:578
        let resp = agent.get("http://www.google.com/").call().unwrap();

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 #894fb25dcb59eb18 Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/src/lib.rs:591
        let resp = agent.get("https://www.google.com/").call().unwrap();

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 #e5bcddfb38513daf Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/src/lib.rs:607
        let resp = agent.get("https://www.google.com/").call().unwrap();

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 #be63b441b720a6cb Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/rust/[email protected]/src/request.rs:594
        crate::agent()
            .post("http://example.com")

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.

utoipa-swagger-ui

rust dependency
expand_more 5 low-confidence finding(s)
low env_fs dependency Excluded from app score #8241626e387a6e19 Environment-variable access.
pkgs/rust/[email protected]/build.rs:17
    let target_dir = env::var("OUT_DIR").unwrap();

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

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

low env_fs dependency Excluded from app score #ec1876f02a3f565c Filesystem access.
pkgs/rust/[email protected]/build.rs:19
    let swagger_ui_zip = File::open(
        ["res", &format!("{SWAGGER_UI_DIST_ZIP}.zip")]
            .iter()
            .collect::<PathBuf>(),
    )

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

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

low env_fs dependency Excluded from app score #c58743cf36566d7d Filesystem access.
pkgs/rust/[email protected]/build.rs:92
    let mut swagger_initializer = fs::read_to_string(&path).unwrap();

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

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

low env_fs dependency Excluded from app score #0830c4632c58424f Filesystem access.
pkgs/rust/[email protected]/build.rs:97
    fs::write(&path, replaced_swagger_initializer.as_ref()).unwrap();

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

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

low env_fs dependency Excluded from app score #b1bbd3141b953f3d Filesystem access.
pkgs/rust/[email protected]/build.rs:111
    fs::write(&path, &contents).unwrap();

Reads environment variables or the 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

  • text-generation-client prod — cdn 403
  • text-generation-router prod — cdn 403
  • grpc-metadata prod — cdn 403