Close Open Privacy Scan

bolt Snapshot: commit 9b8c780
science engine v1.22
schedule 2026-07-21T10:07:52.221566+00:00

verified_user No application data leak found

No high-confidence exfiltration was found in application code.

smart_toy AI deps detected: fastmcp — detected in dependencies, not a safety judgment.

App Privacy Score

82 /100
Low privacy risk

Low risk · 334 finding(s)

Dependency score: 62 (Medium risk)

bar_chart Score Breakdown

egress −15
env_fs −3

list Scan Summary

0 high 2 medium 332 low
First-party packages: 1
Dependency packages: 8
Ecosystem: python

swap_horiz External domains

198.0.0.1android.googlesource.comapi.github.comarchive.ubuntu.comarstechnica.comattacker.comblog.famzah.netblog.quarkslab.comblogs.oracle.combootlin.combugs.python.orgburpcollaborator.netchromedevtools.github.iochromedriver.storage.googleapis.comcode.activestate.comcrbug.comcrsrc.orgdebuginfod.debian.netdebuginfod.elfutils.orgdebuginfod.ubuntu.comdev.w3.orgdocs.aiohttp.orgdocs.angr.iodocs.google.comdocs.oracle.comdocs.pwntools.comdocs.python.orgdrafts.csswg.orgen.wikipedia.orgfacelessuser.github.iofedidcg.github.ioflask.palletsprojects.comgit.kernel.orggithub.comgitlab.comgoo.glegooglechromelabs.github.iohtml.spec.whatwg.orghttpbin.orghttpbingo.orgimg.website.comjulianor.tripod.comlaunchpad.netlearn.microsoft.comlibc.riplinuxdevcenter.commail.python.orgman.openbsd.orgman7.orgmanpages.ubuntu.commsdn.microsoft.commsedgedriver.microsoft.comnvd.nist.govpcsclite.apdu.frpeps.python.orgpip.pypa.iopypi.orgpython.orgrce.corefspecs.linuxbase.orgrefspecs.linuxfoundation.orgrequests.readthedocs.ioreveng.sourceforge.ioreverseengineering.stackexchange.comridiculousfish.comrpyc.readthedocs.ioserverfault.comservices.nvd.nist.govsource.chromium.orgsourceware.orgstackoverflow.comstorage.googleapis.comtarget.comtechpatterns.comtools.ietf.orgusers.ece.cmu.eduvincentdary.github.iow3c-fedid.github.iow3c.github.ioweb.devwicg.github.iowww.chromium.orgwww.crummy.comwww.freebsd.orgwww.gnu.orgwww.google.co.inwww.mozilla.orgwww.python.orgwww.rfc-editor.orgwww.sciencedirect.comwww.sco.comwww.selenium.devwww.systutorials.comwww.user-agents.orgwww.w3.orgzsh.sourceforge.io

</> First-Party Code

first-party (python)

python first-party
expand_more 31 low-confidence finding(s)
low egress production #521d4217bf9b8106 Outbound request to a variable or assembled URL on a network client. Review what data is sent to this destination.
repo/hexstrike_mcp.py:169
                    test_response = self.session.get(f"{self.server_url}/health", timeout=5)

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 production #d3d0852c0aff2154 Outbound request to a variable or assembled URL on a network client. Review what data is sent to this destination.
repo/hexstrike_mcp.py:210
            response = self.session.get(url, params=params, timeout=self.timeout)

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 production #cee5233bc9893d96 Outbound request to a variable or assembled URL on a network client. Review what data is sent to this destination.
repo/hexstrike_mcp.py:235
            response = self.session.post(url, json=json_data, timeout=self.timeout)

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 #0484284bd0fd96e5 Environment-variable access.
repo/hexstrike_server.py:98
API_PORT = int(os.environ.get('HEXSTRIKE_PORT', 8888))

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

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

low env_fs production #ebbb7dca72a6e236 Environment-variable access.
repo/hexstrike_server.py:99
API_HOST = os.environ.get('HEXSTRIKE_HOST', '127.0.0.1')

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

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

low egress production #178282019858efef Outbound request to a variable or assembled URL on a network client. Review what data is sent to this destination.
repo/hexstrike_server.py:2355
            response = requests.get(target, timeout=10)

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 production #f00115af3e7eed7b Outbound request to a variable or assembled URL on a network client. Review what data is sent to this destination.
repo/hexstrike_server.py:5988
                response = requests.get(nvd_url, params=params, timeout=30)

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 production #d650f8b9776fbc3c Outbound request to a variable or assembled URL on a network client. Review what data is sent to this destination.
repo/hexstrike_server.py:6098
                    response = requests.get(nvd_url, params=broader_params, timeout=30)

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 production #c8164a695fa4e575 Hardcoded external endpoint. Review what data is sent to this destination.
repo/hexstrike_server.py:6171
                response = requests.get(nvd_url, params=params, timeout=30)

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 production #5ebc7671d54ce34e Hardcoded external endpoint. Review what data is sent to this destination.
repo/hexstrike_server.py:6418
                github_response = requests.get(github_search_url, params=github_params, timeout=15)

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 production #5761f44b18f2dc58 Hardcoded external endpoint. Review what data is sent to this destination.
repo/hexstrike_server.py:6481
                nvd_response = requests.get(nvd_url, params=nvd_params, timeout=20)

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 production #0759817c9780d553 Hardcoded external endpoint. Review what data is sent to this destination.
repo/hexstrike_server.py:6538
                msf_response = requests.get(msf_search_url, params=msf_params, timeout=15)

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 #121fae5e08039cfc Environment-variable access.
repo/hexstrike_server.py:6663
DEBUG_MODE = os.environ.get("DEBUG_MODE", "0").lower() in ("1", "true", "yes", "y")

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

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

low env_fs production #75475a2b60db4495 Filesystem access.
repo/hexstrike_server.py:8946
            with open(file_path, mode) as 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 production #44aa28f21c3c027e Filesystem access.
repo/hexstrike_server.py:8967
            with open(file_path, mode) as 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 production #d510025e5cb17af8 Filesystem access.
repo/hexstrike_server.py:10683
        with open(command_file, "w") as 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 production #c080d3773b0e0ff0 Filesystem access.
repo/hexstrike_server.py:11071
        with open(resource_file, "w") as 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 production #24e4f84c9a88b132 Filesystem access.
repo/hexstrike_server.py:11983
            with open(temp_script, "w") as 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 production #fceaa2108ab2d820 Filesystem access.
repo/hexstrike_server.py:12026
            with open(temp_script, "w") as 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 production #76d4fcb53c08ae33 Filesystem access.
repo/hexstrike_server.py:12315
            with open(script_file, "w") as 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 production #b0c59db06928d5aa Filesystem access.
repo/hexstrike_server.py:12346
            with open(script_file, "w") as 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 production #f77225d1b6c71d06 Filesystem access.
repo/hexstrike_server.py:12471
            with open(temp_script, "w") as 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 production #731f3deb9bbb5e90 Filesystem access.
repo/hexstrike_server.py:12518
            with open(script_file, "w") as 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 production #c48a13915876ebd5 Filesystem access.
repo/hexstrike_server.py:12566
            with open(script_file, "w") as 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 egress production #eac562cf95485c5b Outbound request to a variable or assembled URL on a network client. Review what data is sent to this destination.
repo/hexstrike_server.py:13317
                response = self.session.get(url, params=data, headers=send_headers, timeout=30)

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 production #c181a1ed71514d34 Outbound request to a variable or assembled URL on a network client. Review what data is sent to this destination.
repo/hexstrike_server.py:13319
                response = self.session.post(url, data=data, headers=send_headers, timeout=30)

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 production #8dd3341cf8bfef84 Outbound request to a variable or assembled URL on a network client. Review what data is sent to this destination.
repo/hexstrike_server.py:13321
                response = self.session.put(url, data=data, headers=send_headers, timeout=30)

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 production #d89e4431051c66e2 Outbound request to a variable or assembled URL on a network client. Review what data is sent to this destination.
repo/hexstrike_server.py:13325
                response = self.session.request(method, url, data=data, headers=send_headers, timeout=30)

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 production #cf3a20fa8a66fb24 Outbound request to a variable or assembled URL on a network client. Review what data is sent to this destination.
repo/hexstrike_server.py:13573
                    response = self.session.get(current_url, timeout=10)

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 production #69cf5afa0f26ff47 Outbound request to a variable or assembled URL on a network client. Review what data is sent to this destination.
repo/hexstrike_server.py:13766
            resp = requests.get(page_info.get('url',''), timeout=10, verify=False)

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 production #49d0901a9dcffdc4 Outbound request to a variable or assembled URL on a network client. Review what data is sent to this destination.
repo/hexstrike_server.py:13844
                r = requests.get(test_url, timeout=8, verify=False)

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.

</> Dependencies

angr

python dependency
medium telemetry dependency Excluded from app score #b3f00c13413c94ff Telemetry/analytics SDK usage detected. Confirm user consent and that no PII is sent without a lawful basis.
pkgs/python/[email protected]/angr/misc/telemetry.py:7
    from opentelemetry.trace import Status, StatusCode, Tracer, get_current_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.

medium telemetry dependency Excluded from app score #8fedcd9cfe6ffc2e Telemetry/analytics SDK usage detected. Confirm user consent and that no PII is sent without a lawful basis.
pkgs/python/[email protected]/angr/misc/telemetry.py:8
    from opentelemetry.trace import get_tracer as _get_tracer

A telemetry/analytics SDK 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 48 low-confidence finding(s)
low env_fs dependency Excluded from app score #debccf76bb445be7 Environment-variable access.
pkgs/python/[email protected]/angr/analyses/decompiler/ail_simplifier.py:80
_VERIFY_INCREMENTAL_RD = os.environ.get("VERIFY_INCREMENTAL_RD", "").lower() not in {"", "0", "no", "false"}

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

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

low env_fs dependency Excluded from app score #5fb58d3bc32c57da Filesystem access.
pkgs/python/[email protected]/angr/analyses/decompiler/structured_codegen/dwarf_import.py:86
        with open(local_name, encoding=self._encoding) as fp:

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

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

low env_fs dependency Excluded from app score #7c7dc620b3a4823c Filesystem access.
pkgs/python/[email protected]/angr/analyses/flirt/flirt.py:134
        with open(sig.sig_path, "rb") as sigfile:

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

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

low env_fs dependency Excluded from app score #7d5174e509124413 Filesystem access.
pkgs/python/[email protected]/angr/analyses/identifier/runner.py:22
    with open(flag_loc, "rb") as 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 #ac29c03337cda5d6 Filesystem access.
pkgs/python/[email protected]/angr/angrdb/serializers/loader.py:130
                    with open(obj.binary, "rb") as the_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 #97d272d100fd1eec Filesystem access.
pkgs/python/[email protected]/angr/flirt/__init__.py:38
        with open(sig_path, "rb") as 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 #0a562ac321da4f50 Filesystem access.
pkgs/python/[email protected]/angr/flirt/__init__.py:46
        with open(meta_path) as 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 #a6998f12da1940a0 Filesystem access.
pkgs/python/[email protected]/angr/flirt/build_sig.py:135
    with open(exc_path, encoding="utf-8") as 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 #50844111c25286b9 Filesystem access.
pkgs/python/[email protected]/angr/flirt/build_sig.py:181
    with open(exc_path, "w", encoding="utf-8") as 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 #d2c25d565288df8e Environment-variable access.
pkgs/python/[email protected]/angr/flirt/build_sig.py:214
    elif "pelf_path" in os.environ:

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

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

low env_fs dependency Excluded from app score #31c0b735e68b9dc9 Environment-variable access.
pkgs/python/[email protected]/angr/flirt/build_sig.py:215
        pelf_path = os.environ["PELF_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 #a1fe1ed5b3fc53e4 Environment-variable access.
pkgs/python/[email protected]/angr/flirt/build_sig.py:221
    elif "sigmake_path" in os.environ:

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

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

low env_fs dependency Excluded from app score #2ebc675a0ac97056 Environment-variable access.
pkgs/python/[email protected]/angr/flirt/build_sig.py:222
        sigmake_path = os.environ["SIGMAKE_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 #1a1163959e6119e0 Filesystem access.
pkgs/python/[email protected]/angr/flirt/build_sig.py:288
    with open(meta_path, "w", encoding="utf-8") as 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 #8c928a2b3d5c65fd Environment-variable access.
pkgs/python/[email protected]/angr/knowledge_plugins/cfg/spilling_cfg.py:39
USE_SPILLING_CFGNODE_DICT = os.environ.get("USE_SPILLING_CFGNODE_DICT", "True").lower() not in ("0", "false", "no")

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

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

low env_fs dependency Excluded from app score #c24c495c4315062f Environment-variable access.
pkgs/python/[email protected]/angr/knowledge_plugins/functions/function_manager.py:44
USE_SPILLING_FUNCTION_DICT = os.environ.get("USE_SPILLING_FUNCTION_DICT", "True").lower() not in ("0", "false", "no")

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

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

low env_fs dependency Excluded from app score #c0eaed7c473e8c25 Filesystem access.
pkgs/python/[email protected]/angr/knowledge_plugins/functions/function_manager.py:931
        with open(filepath, "w", encoding="utf-8") as 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 #d1003c067a1aa8d5 Filesystem access.
pkgs/python/[email protected]/angr/knowledge_plugins/patches.py:101
            with open(self._kb._project.loader.main_object.binary, "rb") as 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 #e76995ab67c4c926 Environment-variable access.
pkgs/python/[email protected]/angr/knowledge_plugins/rtdb/rtdb.py:25
RTDB_BASEDIR: str | None = os.environ.get("RTDB_BASE")

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

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

low env_fs dependency Excluded from app score #23a696f8ce9d8286 Environment-variable access.
pkgs/python/[email protected]/angr/misc/bug_report.py:40
    if "VIRTUAL_ENV" in os.environ:

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

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

low env_fs dependency Excluded from app score #1eb5721ca3f70760 Environment-variable access.
pkgs/python/[email protected]/angr/misc/bug_report.py:41
        return os.environ["VIRTUAL_ENV"]

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

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

low env_fs dependency Excluded from app score #5f7ce6641b1d5b54 Filesystem access.
pkgs/python/[email protected]/angr/procedures/definitions/__init__.py:856
        with open(f, "rb") as fp:

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

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

low env_fs dependency Excluded from app score #fa2d39d07eaf717e Filesystem access.
pkgs/python/[email protected]/angr/procedures/definitions/__init__.py:920
                with open(os.path.join(json_dir, f), "rb") as 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 #67eca295fcd6e472 Environment-variable access.
pkgs/python/[email protected]/angr/procedures/definitions/__init__.py:952
    if _EXTERNAL_DEFINITIONS_DIRS is None and "ANGR_EXTERNAL_DEFINITIONS_DIRS" in os.environ:

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

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

low env_fs dependency Excluded from app score #09a7853c1fc29bb7 Environment-variable access.
pkgs/python/[email protected]/angr/procedures/definitions/__init__.py:953
        _EXTERNAL_DEFINITIONS_DIRS = os.environ["ANGR_EXTERNAL_DEFINITIONS_DIRS"].strip('"').split(";")

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

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

low env_fs dependency Excluded from app score #136a9c99a6e97e54 Filesystem access.
pkgs/python/[email protected]/angr/procedures/definitions/parse_glibc.py:49
    with open(sys.argv[1], encoding="utf-8") as 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 #304bfa4e55a0b7e7 Filesystem access.
pkgs/python/[email protected]/angr/procedures/definitions/parse_glibc.py:109
    with open(out_path, "w", encoding="utf-8") as 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 #5cd47cacf03f30b6 Filesystem access.
pkgs/python/[email protected]/angr/procedures/definitions/parse_syscalls_from_local_system.py:16
    with open(header_path) as 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 #27e5e5b1862bdf22 Filesystem access.
pkgs/python/[email protected]/angr/procedures/definitions/parse_win32json.py:229
        with open(file, encoding="utf-8-sig") as 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 #7d48840caed0b5ba Filesystem access.
pkgs/python/[email protected]/angr/procedures/definitions/parse_win32json.py:2555
        with open(os.path.join(full_prefix, filename), "w", encoding="utf-8") as 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 #7647a4afd67c5349 Filesystem access.
pkgs/python/[email protected]/angr/procedures/definitions/parse_win32json.py:2559
    with open(dump_root / "win32/_types_win32.json", "w", encoding="utf-8") as 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 #cd5ca85ad09e7ba7 Filesystem access.
pkgs/python/[email protected]/angr/project.py:854
            with open(container, "wb") as 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 #c41ed6eae8731bd5 Filesystem access.
pkgs/python/[email protected]/angr/project.py:879
                with open(container, "rb") as 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 #cd2f9a0fb0efd185 Filesystem access.
pkgs/python/[email protected]/angr/rust/analyses/type_db_loader.py:297
        type_db_json = json.loads(type_db_path.read_text(encoding="utf-8"))

Reads environment variables or the filesystem — 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 #bc7185f55577b9a9 Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/python/[email protected]/angr/rust/utils/rust_sigs.py:31
        with urllib.request.urlopen(TARBALL_URL) as resp, tarfile.open(fileobj=resp, mode="r|gz") as tar:

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 #fd3105b6694a3434 Filesystem access.
pkgs/python/[email protected]/angr/rust/utils/rust_sigs.py:40
        with open(os.path.join(extracted_root, SENTINEL_FILENAME), "w", encoding="utf-8"):

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

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

low env_fs dependency Excluded from app score #5c7fcb7a056dee4e Filesystem access.
pkgs/python/[email protected]/angr/state_plugins/filesystem.py:432
            with open(path, "rb") as fp:

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

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

low env_fs dependency Excluded from app score #fc180bd5a7d0c492 Filesystem access.
pkgs/python/[email protected]/angr/state_plugins/gdb.py:132
        with open(path, "rb") as 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 #85f9de9b8ad1fa8d Environment-variable access.
pkgs/python/[email protected]/angr/state_plugins/solver.py:84
if os.environ.get("SOLVER_TIMING", False):

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

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

low env_fs dependency Excluded from app score #9c8de817c4b4a5b6 Environment-variable access.
pkgs/python/[email protected]/angr/state_plugins/solver.py:89
break_time = float(os.environ.get("SOLVER_BREAK_TIME", -1))

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

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

low env_fs dependency Excluded from app score #c35872e2f2b6a67e Environment-variable access.
pkgs/python/[email protected]/angr/utils/formatting.py:28
    no_color = os.environ.get("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 env_fs dependency Excluded from app score #b0bf7b98a4b93127 Environment-variable access.
pkgs/python/[email protected]/angr/utils/timing.py:9
TIMING = os.environ.get("TIMING", "").lower() not in {"", "no", "0", "false"}

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

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

low env_fs dependency Excluded from app score #3cc443cc55d9e6f0 Environment-variable access.
pkgs/python/[email protected]/angr/utils/timing.py:10
PRINT = os.environ.get("PRINT", "").lower() not in {"", "no", "0", "false"}

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

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

low env_fs dependency Excluded from app score #906a7ffc0b789ac3 Environment-variable access.
pkgs/python/[email protected]/angr/utils/timing.py:11
TIME_DISTRIBUTION = os.environ.get("TIMING_DIST", "").lower() not in {"", "no", "0", "false"}

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

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

low env_fs dependency Excluded from app score #39117b5b40e5c979 Filesystem access.
pkgs/python/[email protected]/angr/vaults.py:299
        with open(os.path.join(self._dir, i), "wb") as o:

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

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

low env_fs dependency Excluded from app score #edeee6ece4888970 Filesystem access.
pkgs/python/[email protected]/angr/vaults.py:305
            with open(os.path.join(self._dir, i), "rb") as o:

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

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

low env_fs tooling Excluded from app score unreachable #bf3f644b36e0752e Filesystem access.
pkgs/python/[email protected]/native/angr/scripts/gen_vexop_names.py:47
    with open(os.path.normpath(OUT), "w", encoding="utf-8") as 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 #1af3a57c6efa1c4d Environment-variable access.
pkgs/python/[email protected]/setup.py:37
    env = os.environ.copy()

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

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

aiohttp

python dependency
expand_more 30 low-confidence finding(s)
low env_fs dependency Excluded from app score #90cd685bc843126d Filesystem access.
pkgs/python/[email protected]/aiohttp/cookiejar.py:207
        with open(
            file_path,
            mode="w",
            encoding="utf-8",
            opener=lambda path, flags: os.open(path, flags, 0o600),
        ) as 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 #b0debd36d730e4fb Environment-variable access.
pkgs/python/[email protected]/aiohttp/helpers.py:73
NO_EXTENSIONS = bool(os.environ.get("AIOHTTP_NO_EXTENSIONS"))

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

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

low env_fs dependency Excluded from app score #ba4f62c3bc414b9e Environment-variable access.
pkgs/python/[email protected]/aiohttp/helpers.py:82
    not sys.flags.ignore_environment and bool(os.environ.get("PYTHONASYNCIODEBUG"))

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

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

low env_fs dependency Excluded from app score #fe122f3aea401623 Environment-variable access.
pkgs/python/[email protected]/aiohttp/helpers.py:228
    netrc_env = os.environ.get("NETRC")

Reads environment variables or the filesystem — 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 #54705db51bf188c9 Outbound request to a variable or assembled URL on a network client. Review what data is sent to this destination.
pkgs/python/[email protected]/aiohttp/test_utils.py:347
        resp = await self._session.request(method, self.make_url(path), **kwargs)

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 #7bced258bbe5003e Environment-variable access.
pkgs/python/[email protected]/aiohttp/web_fileresponse.py:50
NOSENDFILE: Final[bool] = bool(os.environ.get("AIOHTTP_NOSENDFILE"))

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

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

low egress tooling Excluded from app score unreachable #9032bc86c1d6e2dd Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/python/[email protected]/docs/code/client_middleware_cookbook.py:65
                async with req.session.post(url, data=self.refresh_token) as resp:

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 unreachable #df6f0a556f54182c Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/python/[email protected]/docs/code/client_middleware_cookbook.py:87
                    async with req.session.post(url, data=self.refresh_token) as resp:

Data is sent to a hardcoded external endpoint; review what leaves the process.

Fix: Verify the destination and that only non-sensitive data is sent; pin and audit the dependency.

low env_fs tooling Excluded from app score unreachable #4638a1ec1356dc3c Environment-variable access.
pkgs/python/[email protected]/docs/conf.py:21
    os.getenv("READTHEDOCS", "False") == "True"

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

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

low env_fs tooling Excluded from app score unreachable #a9988700e470c5df Environment-variable access.
pkgs/python/[email protected]/docs/conf.py:22
    and os.environ["READTHEDOCS_VERSION_TYPE"] == "tag"

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

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

low env_fs tooling Excluded from app score unreachable #6ecd604ca3911744 Filesystem access.
pkgs/python/[email protected]/docs/conf.py:31
with open(_version_path, encoding="latin1") as fp:

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

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

low egress tooling Excluded from app score unreachable #df3079bf0bb32b9f Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/python/[email protected]/examples/client_auth.py:9
    async with session.get("http://httpbin.org/basic-auth/andrew/password") as resp:

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 unreachable #da938593fed31350 Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/python/[email protected]/examples/client_json.py:9
    async with session.get("http://httpbin.org/get") as resp:

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 unreachable #a07151f737a329a5 Outbound request to a variable or assembled URL on a network client. Review what data is sent to this destination.
pkgs/python/[email protected]/examples/curl.py:12
        async with session.request("GET", url) as response:

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 unreachable #eb90d7da26aa628a Outbound request to a variable or assembled URL on a network client. Review what data is sent to this destination.
pkgs/python/[email protected]/examples/digest_auth_qop_auth.py:48
            async with session.get(url) as resp:

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 unreachable #5b9b7346037c7570 Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/python/[email protected]/examples/fake_server.py:109
        async with session.get(
            "https://graph.facebook.com/v2.7/me", params={"access_token": token}
        ) as resp:

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 unreachable #f9fde76a8bf0709a Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/python/[email protected]/examples/fake_server.py:114
        async with session.get(
            "https://graph.facebook.com/v2.7/me/friends", params={"access_token": token}
        ) as resp:

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 unreachable #b2deea0a52911031 Outbound request to a variable or assembled URL on a network client. Review what data is sent to this destination.
pkgs/python/[email protected]/examples/logging_middleware.py:147
            coro = session.get(f"http://localhost:8080/hello/User{i}")

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 unreachable #b6b44cf887565f8c Outbound request to a variable or assembled URL on a network client. Review what data is sent to this destination.
pkgs/python/[email protected]/examples/token_refresh_middleware.py:65
            async with session.post(
                self.token_endpoint,
                json={"refresh_token": self.refresh_token},
                middlewares=(),  # Disable middleware for this request
            ) as resp:

Data is sent to a hardcoded external endpoint; review what leaves the process.

Fix: Verify the destination and that only non-sensitive data is sent; pin and audit the dependency.

low env_fs tooling Excluded from app score unreachable #686fc8f160af688c Filesystem access.
pkgs/python/[email protected]/examples/web_ws.py:20
        with open(WS_FILE, "rb") as fp:

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

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

low env_fs dependency Excluded from app score #4b9fd188a7b7704b Filesystem access.
pkgs/python/[email protected]/requirements/sync-direct-runtime-deps.py:12
data = tomllib.loads(Path("pyproject.toml").read_text())

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

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

low env_fs dependency Excluded from app score #341a1d997b67a72e Filesystem access.
pkgs/python/[email protected]/requirements/sync-direct-runtime-deps.py:19
with open(Path("requirements", "runtime-deps.in"), "w") as outfile:

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

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

low env_fs dependency Excluded from app score #815cbb9ddc1a7801 Environment-variable access.
pkgs/python/[email protected]/setup.py:13
    os.environ.get("AIOHTTP_USE_SYSTEM_DEPS", os.environ.get("USE_SYSTEM_DEPS"))

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

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

low env_fs dependency Excluded from app score #410cd6260428a801 Environment-variable access.
pkgs/python/[email protected]/setup.py:15
NO_EXTENSIONS: bool = bool(os.environ.get("AIOHTTP_NO_EXTENSIONS"))

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

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

low env_fs dependency Excluded from app score #9c27900909a1c80f Environment-variable access.
pkgs/python/[email protected]/setup.py:16
CYTHON_TRACING: bool = bool(os.environ.get("AIOHTTP_CYTHON_TRACE"))

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

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

low env_fs tooling Excluded from app score unreachable #14927dde856c5629 Filesystem access.
pkgs/python/[email protected]/tools/check_sum.py:30
        hasher.update(full_src.read_bytes())

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

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

low env_fs tooling Excluded from app score unreachable #4e4a5dcb97d25e02 Filesystem access.
pkgs/python/[email protected]/tools/check_sum.py:37
        dst_hash = dst.read_text()

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

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

low env_fs tooling Excluded from app score unreachable #cc1ac6ece6ee0f06 Filesystem access.
pkgs/python/[email protected]/tools/check_sum.py:41
        dst.write_text(src_hash)

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

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

low env_fs tooling Excluded from app score unreachable #cbe35b4ec119cd13 Filesystem access.
pkgs/python/[email protected]/tools/cleanup_changes.py:30
    changes = (root / "CHANGES.rst").read_text()

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

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

low env_fs tooling Excluded from app score unreachable #7fd20dc545f3e327 Filesystem access.
pkgs/python/[email protected]/tools/gen.py:16
    code = compile(hdrs_file.read_text(), str(hdrs_file), "exec")

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

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

flask

python dependency
expand_more 21 low-confidence finding(s)
low env_fs dependency Excluded from app score #fbafab7516cc997e Filesystem access.
pkgs/python/[email protected]/src/flask/app.py:359
            return open(path, mode)  # pyright: ignore

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

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

low env_fs dependency Excluded from app score #60fef71f8f48ceb0 Filesystem access.
pkgs/python/[email protected]/src/flask/app.py:361
        return open(path, mode, encoding=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 #6833a4413b8ca574 Filesystem access.
pkgs/python/[email protected]/src/flask/app.py:381
            return open(path, mode)

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

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

low env_fs dependency Excluded from app score #c09ddc6a25fe860e Filesystem access.
pkgs/python/[email protected]/src/flask/app.py:383
        return open(path, mode, encoding=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 #2339f7c9c062a4f9 Environment-variable access.
pkgs/python/[email protected]/src/flask/app.py:611
        if os.environ.get("FLASK_RUN_FROM_CLI") == "true":

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

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

low env_fs dependency Excluded from app score #90d35dd34037890a Environment-variable access.
pkgs/python/[email protected]/src/flask/app.py:627
            if "FLASK_DEBUG" in os.environ:

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

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

low env_fs dependency Excluded from app score #ed284f9e8d5ea1b7 Filesystem access.
pkgs/python/[email protected]/src/flask/blueprints.py:126
            return open(path, mode)  # pyright: ignore

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

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

low env_fs dependency Excluded from app score #f6c4004958d086be Filesystem access.
pkgs/python/[email protected]/src/flask/blueprints.py:128
        return open(path, mode, encoding=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 #32d7b67be682bf6b Environment-variable access.
pkgs/python/[email protected]/src/flask/cli.py:481
    os.environ["FLASK_DEBUG"] = "1" if value else "0"

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

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

low env_fs dependency Excluded from app score #4e3f20f45197270e Environment-variable access.
pkgs/python/[email protected]/src/flask/cli.py:675
        os.environ["FLASK_RUN_FROM_CLI"] = "true"

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

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

low env_fs dependency Excluded from app score #af7cb766e9cc7b89 Environment-variable access.
pkgs/python/[email protected]/src/flask/cli.py:766
        if key in os.environ or value is None:

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

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

low env_fs dependency Excluded from app score #f3784cce5826a1d8 Environment-variable access.
pkgs/python/[email protected]/src/flask/cli.py:769
        os.environ[key] = value

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

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

low env_fs dependency Excluded from app score #92c85a09cb11f8db Environment-variable access.
pkgs/python/[email protected]/src/flask/cli.py:1028
    startup = os.environ.get("PYTHONSTARTUP")

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

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

low env_fs dependency Excluded from app score #4abb34b159c29ac5 Filesystem access.
pkgs/python/[email protected]/src/flask/cli.py:1030
        with open(startup) as 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 #c25b9643458051c0 Environment-variable access.
pkgs/python/[email protected]/src/flask/config.py:114
        rv = os.environ.get(variable_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 #48bafb213a74a116 Environment-variable access.
pkgs/python/[email protected]/src/flask/config.py:154
        for key in sorted(os.environ):

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

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

low env_fs dependency Excluded from app score #92afa0f987e99139 Environment-variable access.
pkgs/python/[email protected]/src/flask/config.py:158
            value = os.environ[key]

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

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

low env_fs dependency Excluded from app score #93f9ed93926f58db Filesystem access.
pkgs/python/[email protected]/src/flask/config.py:208
            with open(filename, mode="rb") as config_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 #52c38223f75c5e89 Filesystem access.
pkgs/python/[email protected]/src/flask/config.py:293
            with open(filename, "r" if text else "rb") as 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 #68a1255fbe171981 Environment-variable access.
pkgs/python/[email protected]/src/flask/helpers.py:32
    val = os.environ.get("FLASK_DEBUG")

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

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

low env_fs dependency Excluded from app score #f81cccde5b3ffa0a Environment-variable access.
pkgs/python/[email protected]/src/flask/helpers.py:43
    val = os.environ.get("FLASK_SKIP_DOTENV")

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

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

psutil

python dependency
expand_more 28 low-confidence finding(s)
low env_fs tooling Excluded from app score unreachable #6f96e41dd3edec84 Filesystem access.
pkgs/python/[email protected]/docs/conf.py:39
    with open(INIT) as 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 #1c99d25012e7a759 Environment-variable access.
pkgs/python/[email protected]/psutil/_common.py:34
PSUTIL_DEBUG = bool(os.getenv('PSUTIL_DEBUG'))

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

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

low env_fs dependency Excluded from app score #2020ae943788746b Filesystem access.
pkgs/python/[email protected]/psutil/_common.py:682
    return open(fname, "rb", buffering=FILE_READ_BUFFER_SIZE)

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

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

low env_fs dependency Excluded from app score #f2907a9a9c45e0e6 Filesystem access.
pkgs/python/[email protected]/psutil/_common.py:692
    fobj = open(  # noqa: SIM115
        fname,
        buffering=FILE_READ_BUFFER_SIZE,
        encoding=ENCODING,
        errors=ENCODING_ERRS,
    )

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

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

low env_fs dependency Excluded from app score #6d73c92dfb66ea5f Environment-variable access.
pkgs/python/[email protected]/psutil/_psaix.py:375
        for path in os.environ["PATH"].split(":"):

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

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

low env_fs dependency Excluded from app score #f387f1da6a989199 Filesystem access.
pkgs/python/[email protected]/psutil/_psbsd.py:142
        with open('/proc/meminfo', 'rb') as 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 #3d2234b99e78b12f Filesystem access.
pkgs/python/[email protected]/psutil/_psbsd.py:276
        with open('/proc/stat', 'rb') as 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 #8b8e140adb99a834 Environment-variable access.
pkgs/python/[email protected]/psutil/_pssunos.py:119
            f"PATH=/usr/sbin:/sbin:{os.environ['PATH']}",

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

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

low env_fs tooling Excluded from app score unreachable #a73e3850893f6184 Filesystem access.
pkgs/python/[email protected]/scripts/internal/convert_readme.py:33
    with open(args.file) as 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 tooling Excluded from app score unreachable #8fc213fcd0a3cf01 Filesystem access.
pkgs/python/[email protected]/scripts/internal/download_wheels.py:64
    with open(OUTFILE, 'wb') as 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 tooling Excluded from app score unreachable #39cac928c34f0093 Filesystem access.
pkgs/python/[email protected]/scripts/internal/download_wheels.py:87
        with open(os.path.expanduser(args.tokenfile)) as 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 tooling Excluded from app score unreachable #5094d24788285fed Filesystem access.
pkgs/python/[email protected]/scripts/internal/find_broken_links.py:98
    with open(fname) as 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 tooling Excluded from app score unreachable #d26537f6f03b25fd Filesystem access.
pkgs/python/[email protected]/scripts/internal/find_broken_links.py:113
    with open(fname) as 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 tooling Excluded from app score unreachable #142be415cdad8855 Filesystem access.
pkgs/python/[email protected]/scripts/internal/find_broken_links.py:134
    with open(fname) as 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 tooling Excluded from app score unreachable #8570033d95eb31c1 Filesystem access.
pkgs/python/[email protected]/scripts/internal/find_broken_links.py:164
    with open(fname, errors='ignore') as 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 tooling Excluded from app score unreachable #46299d48f7b2fb69 Filesystem access.
pkgs/python/[email protected]/scripts/internal/find_broken_links.py:178
        with open(fname, errors='ignore') as 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 egress tooling Excluded from app score unreachable #a189271073018980 Outbound request to a variable or assembled URL on a network client. Review what data is sent to this destination.
pkgs/python/[email protected]/scripts/internal/find_broken_links.py:194
            res = requests.get(url, timeout=REQUEST_TIMEOUT)

Data is sent to a hardcoded external endpoint; review what leaves the process.

Fix: Verify the destination and that only non-sensitive data is sent; pin and audit the dependency.

low env_fs tooling Excluded from app score unreachable #2416029509645882 Filesystem access.
pkgs/python/[email protected]/scripts/internal/git_pre_commit.py:156
    with open("MANIFEST.in", encoding="utf8") as 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 egress tooling Excluded from app score unreachable #f3b27fcee8670a26 Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/python/[email protected]/scripts/internal/install_pip.py:34
        req = urlopen(URL, **kwargs)

Data is sent to a hardcoded external endpoint; review what leaves the process.

Fix: Verify the destination and that only non-sensitive data is sent; pin and audit the dependency.

low env_fs tooling Excluded from app score unreachable #6ed6279ac0fa0934 Filesystem access.
pkgs/python/[email protected]/scripts/internal/print_announce.py:81
    with open(HISTORY) as 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 tooling Excluded from app score unreachable #8e9de2d5d108f447 Environment-variable access.
pkgs/python/[email protected]/scripts/internal/print_downloads.py:42
    env = os.environ.copy()

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

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

low env_fs tooling Excluded from app score unreachable #5b7b38f84d344684 Filesystem access.
pkgs/python/[email protected]/scripts/internal/print_hashes.py:18
    with open(file, "rb") as 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 tooling Excluded from app score unreachable #574ca717d9c40961 Filesystem access.
pkgs/python/[email protected]/scripts/internal/purge_installation.py:56
                with open(path) as 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 tooling Excluded from app score unreachable #4380fefc8d5d0f99 Filesystem access.
pkgs/python/[email protected]/scripts/internal/purge_installation.py:64
                    with open(path, "w") as 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 #9a7b70ba98c32694 Environment-variable access.
pkgs/python/[email protected]/setup.py:46
        if "CIBUILDWHEEL" in os.environ:

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

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

low env_fs dependency Excluded from app score #0665450ba0143f3f Filesystem access.
pkgs/python/[email protected]/setup.py:142
    with open(INIT) as 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 #f63e8a4509d5ecc5 Environment-variable access.
pkgs/python/[email protected]/setup.py:258
        if os.getenv('CC'):

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

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

low env_fs dependency Excluded from app score #a20b5e38e842fa98 Environment-variable access.
pkgs/python/[email protected]/setup.py:259
            compiler.set_executable('compiler_so', os.getenv('CC'))

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

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

pwntools

python dependency
expand_more 117 low-confidence finding(s)
low env_fs tooling Excluded from app score unreachable #5f8515363d436244 Environment-variable access.
pkgs/python/[email protected]/docs/source/conf.py:381
    on_rtd = os.environ.get('READTHEDOCS', None) == 'True'

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

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

low env_fs dependency Excluded from app score #7d0a059c9158dae2 Filesystem access.
pkgs/python/[email protected]/pwnlib/adb/adb.py:1335
    with open(Android_mk, 'w+') as 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 #f1348ac25603394f Filesystem access.
pkgs/python/[email protected]/pwnlib/adb/adb.py:1342
    with open(Application_mk, 'w+') as 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 #2d1d7b7129547e71 Environment-variable access.
pkgs/python/[email protected]/pwnlib/adb/adb.py:1376
            ndk = os.environ.get(envvar)

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

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

low env_fs dependency Excluded from app score #a2037648f528680b Filesystem access.
pkgs/python/[email protected]/pwnlib/adb/bootloader.py:99
            with open(imgpath, 'wb+') as 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 #160238f1f9009b99 Filesystem access.
pkgs/python/[email protected]/pwnlib/adb/bootloader.py:125
    b = BootloaderImage(open(sys.argv[1], 'rb').read())

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

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

low env_fs dependency Excluded from app score #f618b0af298a6851 Environment-variable access.
pkgs/python/[email protected]/pwnlib/args.py:185
    if 'READTHEDOCS' in os.environ:

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

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

low env_fs dependency Excluded from app score #231f35f7574a31b7 Environment-variable access.
pkgs/python/[email protected]/pwnlib/args.py:186
        os.environ['PWNLIB_NOTERM'] = '1'

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

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

low env_fs dependency Excluded from app score #e81cf19c0ade64fe Environment-variable access.
pkgs/python/[email protected]/pwnlib/args.py:188
    for k, v in os.environ.items():

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

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

low env_fs dependency Excluded from app score #2d58720fd4972499 Environment-variable access.
pkgs/python/[email protected]/pwnlib/asm.py:240
                for dir in environ['PATH'].split(os.pathsep):

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

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

low env_fs dependency Excluded from app score #68e3d8f049204c30 Filesystem access.
pkgs/python/[email protected]/pwnlib/asm.py:579
        with open(result, 'rb') as io:

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

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

low env_fs dependency Excluded from app score #01fe6cfc6584cd2f Filesystem access.
pkgs/python/[email protected]/pwnlib/asm.py:643
        with open(step1, 'w') as 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 #ac8392dd72dece30 Filesystem access.
pkgs/python/[email protected]/pwnlib/asm.py:668
            with open(step3, 'rb') as 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 #e3e5e70f0a80d629 Filesystem access.
pkgs/python/[email protected]/pwnlib/asm.py:710
    with open(step1, 'w') as fd:

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

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

low env_fs dependency Excluded from app score #9f6e88a1ae75296a Filesystem access.
pkgs/python/[email protected]/pwnlib/asm.py:817
                with open(cache_file, 'rb') as 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 #8dbef042c076e88b Filesystem access.
pkgs/python/[email protected]/pwnlib/asm.py:834
        with open(step1, 'w') as fd:

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

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

low env_fs dependency Excluded from app score #4252dabc6d0eeae3 Filesystem access.
pkgs/python/[email protected]/pwnlib/asm.py:862
        elif open(step2,'rb').read(4) == b'\x7fELF':

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

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

low env_fs dependency Excluded from app score #934dce72ef30a356 Filesystem access.
pkgs/python/[email protected]/pwnlib/asm.py:880
        with open(step4, 'rb') as fd:

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

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

low env_fs dependency Excluded from app score #4f772d6d13178d05 Filesystem access.
pkgs/python/[email protected]/pwnlib/asm.py:890
        with open(cache_file, 'wb') as 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 #84e678278880f58a Filesystem access.
pkgs/python/[email protected]/pwnlib/asm.py:974
        with open(step1, 'wb') as fd:

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

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

low env_fs dependency Excluded from app score #423bffb1a0ad9676 Filesystem access.
pkgs/python/[email protected]/pwnlib/commandline/template.py:52
        dockerfile = open("Dockerfile", "r").read()

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

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

low env_fs dependency Excluded from app score #75e877928f00c4d5 Environment-variable access.
pkgs/python/[email protected]/pwnlib/config.py:58
    xdg_config_home = os.environ.get('XDG_CONFIG_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 #bbdeee14775593ec Environment-variable access.
pkgs/python/[email protected]/pwnlib/config.py:58
    xdg_config_home = os.environ.get('XDG_CONFIG_HOME',
                                     os.path.expanduser("~/.config"))

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

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

low env_fs dependency Excluded from app score #ea0d9fd461593cc4 Environment-variable access.
pkgs/python/[email protected]/pwnlib/context/__init__.py:351
        'cache_dir_base': os.environ.get(

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

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

low env_fs dependency Excluded from app score #be5dfe4ae7c48132 Environment-variable access.
pkgs/python/[email protected]/pwnlib/context/__init__.py:351
        'cache_dir_base': os.environ.get(
            'XDG_CACHE_HOME',
            os.path.join(os.path.expanduser('~'), '.cache')
        ),

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

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

low env_fs dependency Excluded from app score #21a5309388601827 Environment-variable access.
pkgs/python/[email protected]/pwnlib/context/__init__.py:358
        'device': os.getenv('ANDROID_SERIAL', None) or None,

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

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

low env_fs dependency Excluded from app score #223781376d83c82b Filesystem access.
pkgs/python/[email protected]/pwnlib/context/__init__.py:1043
            value = open(filename, mode)

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

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

low env_fs dependency Excluded from app score #7c7f6f832906fb6d Filesystem access.
pkgs/python/[email protected]/pwnlib/context/__init__.py:1087
            stream = open(stream, 'wt')

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

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

low env_fs dependency Excluded from app score #48e0ad16b825098a Environment-variable access.
pkgs/python/[email protected]/pwnlib/context/__init__.py:1353
        ADB_PATH = os.environ.get('ADB_PATH', 'adb')

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

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

low env_fs dependency Excluded from app score #859fbb0a57355922 Environment-variable access.
pkgs/python/[email protected]/pwnlib/context/__init__.py:1679
if 'ANDROID_ADB_SERVER_HOST' in os.environ:

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

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

low env_fs dependency Excluded from app score #1fcb68c0a0387fc9 Environment-variable access.
pkgs/python/[email protected]/pwnlib/context/__init__.py:1680
    context.adb_host = os.environ.get('ANDROID_ADB_SERVER_HOST')

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

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

low env_fs dependency Excluded from app score #38db5ff5a51eea0f Environment-variable access.
pkgs/python/[email protected]/pwnlib/context/__init__.py:1682
if 'ANDROID_ADB_SERVER_PORT' in os.environ:

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

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

low env_fs dependency Excluded from app score #6ee376f338e200ea Environment-variable access.
pkgs/python/[email protected]/pwnlib/context/__init__.py:1683
    context.adb_port = int(os.getenv('ANDROID_ADB_SERVER_PORT'))

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

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

low env_fs dependency Excluded from app score #9e82d938fe54a49a Filesystem access.
pkgs/python/[email protected]/pwnlib/data/includes/generator/load_constants.py:9
python = open(sys.argv[1], "w")

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

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

low env_fs dependency Excluded from app score #619e1e1919cf7e07 Filesystem access.
pkgs/python/[email protected]/pwnlib/data/includes/generator/load_constants.py:10
header = open(sys.argv[2], "w")

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

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

low env_fs dependency Excluded from app score #51821c155fae96a7 Filesystem access.
pkgs/python/[email protected]/pwnlib/data/syscalls/generate.py:290
        with open(os.path.join(target, name + '.asm'), 'wt') as 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 #494c4e48538d27a2 Filesystem access.
pkgs/python/[email protected]/pwnlib/data/syscalls/generate_darwin.py:28
    for line in file.read_text(errors='ignore').split('\n'):

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

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

low env_fs dependency Excluded from app score #12c72293548d9d97 Filesystem access.
pkgs/python/[email protected]/pwnlib/data/useragents/download-useragents.py:12
    with open('useragents.txt') as fd:

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

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

low env_fs dependency Excluded from app score #fc2738c4b7112c26 Filesystem access.
pkgs/python/[email protected]/pwnlib/elf/corefile.py:1362
                stdout=open(os.devnull, 'w'),

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

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

low env_fs dependency Excluded from app score #11885b9c38938801 Filesystem access.
pkgs/python/[email protected]/pwnlib/elf/corefile.py:1404
                with open(filename, 'wb+') as 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 #946c057652ac917e Filesystem access.
pkgs/python/[email protected]/pwnlib/elf/elf.py:221
        self.file = open(path,'rb')

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

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

low env_fs dependency Excluded from app score #b5c4726ba7d99b67 Filesystem access.
pkgs/python/[email protected]/pwnlib/filesystem/ssh.py:462
        return self._s(self.read_bytes())

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

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

low env_fs dependency Excluded from app score #5a99ddd17ed38659 Environment-variable access.
pkgs/python/[email protected]/pwnlib/gdb.py:1276
            os.environ['GDB_FAKETERMINAL'] = '0'

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

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

low env_fs dependency Excluded from app score #843d89902476a220 Environment-variable access.
pkgs/python/[email protected]/pwnlib/gdb_faketerminal.py:12
if environ.get('GDB_FAKETERMINAL') == '0':

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

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

low env_fs dependency Excluded from app score #d9656704543b8920 Environment-variable access.
pkgs/python/[email protected]/pwnlib/libcdb.py:74
if 'DEBUGINFOD_URLS' in os.environ:

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

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

low env_fs dependency Excluded from app score #2f317ae5c1606382 Environment-variable access.
pkgs/python/[email protected]/pwnlib/libcdb.py:75
    urls = os.environ['DEBUGINFOD_URLS'].split(' ')

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

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

low env_fs dependency Excluded from app score #0ccc80d4291bb6ee Environment-variable access.
pkgs/python/[email protected]/pwnlib/libcdb.py:79
LIBC_RIP_URL = os.environ.get("PWN_LIBCRIP_URL", "https://libc.rip").rstrip("/")

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

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

low env_fs dependency Excluded from app score #1e791e7057bb1730 Environment-variable access.
pkgs/python/[email protected]/pwnlib/libcdb.py:80
GITLAB_LIBCDB_URL = os.environ.get("PWN_GITLAB_LIBCDB_URL", "https://gitlab.com").rstrip("/")

Reads environment variables or the filesystem — 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 #35dc874d53b35e6b Outbound request to a variable or assembled URL on a network client. Review what data is sent to this destination.
pkgs/python/[email protected]/pwnlib/libcdb.py:123
        result = requests.post(url, json=params, timeout=20)

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 #a92a6064dd41b096 Environment-variable access.
pkgs/python/[email protected]/pwnlib/libcdb.py:165
    shell_path = os.environ.get('SHELL', None) or '/bin/sh'

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

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

low env_fs dependency Excluded from app score #86e4dab67db19e7a Filesystem access.
pkgs/python/[email protected]/pwnlib/libcdb.py:515
            with open(os.path.join(tempdir, data_filename), 'rb') as tarball:

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

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

low env_fs dependency Excluded from app score #e488f9c7434e08ae Environment-variable access.
pkgs/python/[email protected]/pwnlib/libcdb.py:538
            ubuntu_archive_url = os.environ.get('PWN_UBUNTU_ARCHIVE_URL', 'http://archive.ubuntu.com').rstrip('/')

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

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

low env_fs dependency Excluded from app score #c8a9f57afb4a5b54 Filesystem access.
pkgs/python/[email protected]/pwnlib/libcdb.py:910
    with open(path, "r") as fd:

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

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

low env_fs dependency Excluded from app score #a9e30cdc3b23230a Environment-variable access.
pkgs/python/[email protected]/pwnlib/py2compat.py:48
        columns = int(os.environ['COLUMNS'])

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

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

low env_fs dependency Excluded from app score #b864b846f4eedd18 Environment-variable access.
pkgs/python/[email protected]/pwnlib/py2compat.py:53
        lines = int(os.environ['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 #19df3c3fd0bdbd90 Environment-variable access.
pkgs/python/[email protected]/pwnlib/qemu.py:155
    if 'QEMU_LD_PREFIX' in os.environ:

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

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

low env_fs dependency Excluded from app score #963b7abeae5a308e Environment-variable access.
pkgs/python/[email protected]/pwnlib/qemu.py:156
        return os.environ['QEMU_LD_PREFIX']

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

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

low env_fs dependency Excluded from app score #bbcd3f04454c7851 Filesystem access.
pkgs/python/[email protected]/pwnlib/rop/rop.py:1275
        gadgets = eval(open(filename).read())

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

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

low env_fs dependency Excluded from app score #f366ece580ea04e2 Filesystem access.
pkgs/python/[email protected]/pwnlib/rop/rop.py:1285
        open(filename, 'w+').write(repr(data))

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

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

low env_fs dependency Excluded from app score #d4cb25bbf9da2cbf Filesystem access.
pkgs/python/[email protected]/pwnlib/shellcraft/__init__.py:37
        with open(os.path.join(self._absdir, "__doc__")) as fd:

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

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

low env_fs dependency Excluded from app score #4dfc4c9687819991 Environment-variable access.
pkgs/python/[email protected]/pwnlib/term/text.py:15
        if os.environ.get('PWNLIB_COLOR') == 'always' or when == 'always':

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

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

low env_fs dependency Excluded from app score #c56b3f448929b661 Environment-variable access.
pkgs/python/[email protected]/pwnlib/term/unix_termcap.py:14
    if 'PWNLIB_NOTERM' in os.environ:

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

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

low env_fs dependency Excluded from app score #7c5f98b8fc9d6532 Environment-variable access.
pkgs/python/[email protected]/pwnlib/term/unix_termcap.py:18
    if 'READTHEDOCS' in os.environ:

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

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

low env_fs dependency Excluded from app score #69d4a0d5045347be Environment-variable access.
pkgs/python/[email protected]/pwnlib/term/unix_termcap.py:51
            os.environ['PWNLIB_NOTERM'] = '1'

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

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

low env_fs dependency Excluded from app score #7616d41c287c5c02 Environment-variable access.
pkgs/python/[email protected]/pwnlib/term/unix_termcap.py:52
            os.environ['JUPYTER_DETECTED'] ='yes'

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

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

low env_fs dependency Excluded from app score #a575c48306440d83 Environment-variable access.
pkgs/python/[email protected]/pwnlib/term/unix_termcap.py:56
    if 'PWNLIB_NOTERM' not in os.environ:

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

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

low env_fs dependency Excluded from app score #7359c51fdeda1c63 Environment-variable access.
pkgs/python/[email protected]/pwnlib/term/unix_termcap.py:64
            os.environ['PWNLIB_NOTERM'] = '1'

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

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

low env_fs dependency Excluded from app score #a94035bb32665c5d Environment-variable access.
pkgs/python/[email protected]/pwnlib/term/windows_termcap.py:14
    if 'PWNLIB_NOTERM' in os.environ:

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

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

low env_fs dependency Excluded from app score #6537610f935af704 Environment-variable access.
pkgs/python/[email protected]/pwnlib/term/windows_termcap.py:34
    if 'PWNLIB_NOTERM' not in os.environ:

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

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

low env_fs dependency Excluded from app score #55bfe03d13e5a866 Environment-variable access.
pkgs/python/[email protected]/pwnlib/tubes/process.py:273
                    executable_val = os.environ.get('ComSpec', 'cmd.exe')

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

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

low env_fs dependency Excluded from app score #4409a39c6ca25d9d Environment-variable access.
pkgs/python/[email protected]/pwnlib/tubes/process.py:322
        self.env = {} if ignore_environ else dict(getattr(os, "environb", os.environ))

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

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

low env_fs dependency Excluded from app score #2b94f6c75f0212f0 Environment-variable access.
pkgs/python/[email protected]/pwnlib/tubes/process.py:341
            if original_env not in (os.environ, None):  message += ' env=%r ' % self.env

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

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

low env_fs dependency Excluded from app score #56559dc72a9393d6 Filesystem access.
pkgs/python/[email protected]/pwnlib/tubes/process.py:445
            with open('/proc/self/coredump_filter', 'w') as 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 #da3037a2757994f4 Environment-variable access.
pkgs/python/[email protected]/pwnlib/tubes/process.py:588
            path = os.environ.get('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 #29f84abad69e3e30 Filesystem access.
pkgs/python/[email protected]/pwnlib/tubes/process.py:1463
        with open('/proc/%i/mem' % self.pid, 'rb') as mem:

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

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

low env_fs dependency Excluded from app score #b566b358d9947981 Filesystem access.
pkgs/python/[email protected]/pwnlib/tubes/process.py:1508
        with open('/proc/%i/mem' % self.pid, 'wb') as mem:

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

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

low egress dependency Excluded from app score #c91b61e56563b35a Outbound request to a variable or assembled URL on a network client. Review what data is sent to this destination.
pkgs/python/[email protected]/pwnlib/tubes/server.py:140
                    self.connections.put(r)

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 #df4798c1c3d727db Filesystem access.
pkgs/python/[email protected]/pwnlib/tubes/ssh.py:33
h = logging.StreamHandler(open(os.devnull,'w+'))

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

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

low env_fs dependency Excluded from app score #9ff1baabadf50fa1 Filesystem access.
pkgs/python/[email protected]/pwnlib/tubes/ssh.py:646
                ssh_config.parse(open(config_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 #c36c2103363d8eda Environment-variable access.
pkgs/python/[email protected]/pwnlib/tubes/ssh.py:956
                                                  if (env in (None, getattr(os, "environb", os.environ)))

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

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

low env_fs dependency Excluded from app score #fd03537beb8227b0 Filesystem access.
pkgs/python/[email protected]/pwnlib/tubes/ssh.py:1370
        with open(local, 'wb') as fd:

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

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

low env_fs dependency Excluded from app score #345f7cd1f7d55183 Filesystem access.
pkgs/python/[email protected]/pwnlib/tubes/ssh.py:1424
            with open(self._download_to_cache(remote, p, fingerprint), 'rb') as fd:

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

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

low env_fs dependency Excluded from app score #7eb7793b0b37984d Filesystem access.
pkgs/python/[email protected]/pwnlib/tubes/ssh.py:1566
        with open(filename, 'rb') as fd:

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

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

low env_fs dependency Excluded from app score #0c3e5e9b4ba61c04 Filesystem access.
pkgs/python/[email protected]/pwnlib/tubes/ssh.py:2102
            with open(path, 'w+') as 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 #ad3160fc881b45cb Filesystem access.
pkgs/python/[email protected]/pwnlib/tubes/ssh.py:2105
            with open(path, 'r+') as 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 #b1402004a243a6ae Environment-variable access.
pkgs/python/[email protected]/pwnlib/ui.py:23
    env = dict(os.environ)

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

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

low egress dependency Excluded from app score #11f50404f04bf1c0 Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/python/[email protected]/pwnlib/update.py:81
        response = requests.get("https://pypi.org/simple/pwntools/",
                                headers={"Accept": "application/vnd.pypi.simple.v1+json"},
                                timeout=5)

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 #60ae7c20a68e4d10 Environment-variable access.
pkgs/python/[email protected]/pwnlib/update.py:198
    xdg_config_home = os.environ.get('XDG_CONFIG_HOME') or "~/.config"

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

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

low env_fs dependency Excluded from app score #f0af0ac1a7cba838 Filesystem access.
pkgs/python/[email protected]/pwnlib/useragents.py:17
        with open(os.path.join(os.path.dirname(__file__),
                               'data/useragents/useragents.txt'
                               ), 'r') as fd:

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

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

low env_fs dependency Excluded from app score #7b6d8776cdfc2ec2 Filesystem access.
pkgs/python/[email protected]/pwnlib/util/crc/known.py:16
    with open(path) as fd:

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

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

low env_fs dependency Excluded from app score #daca27a7e7d5a59d Filesystem access.
pkgs/python/[email protected]/pwnlib/util/hashes.py:13
            fd = open(p, 'rb')

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

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

low env_fs dependency Excluded from app score #61670a1ce947932e Filesystem access.
pkgs/python/[email protected]/pwnlib/util/misc.py:130
    with open(path, 'rb') as fd:

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

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

low env_fs dependency Excluded from app score #f11b545b38072bc1 Filesystem access.
pkgs/python/[email protected]/pwnlib/util/misc.py:143
    with open(path, mode) as 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 #d6ea7de3e3afc54b Environment-variable access.
pkgs/python/[email protected]/pwnlib/util/misc.py:174
        pathexts = os.environ.get('PATHEXT', '').split(os.pathsep)

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

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

low env_fs dependency Excluded from app score #f7c17b4aa168b57c Environment-variable access.
pkgs/python/[email protected]/pwnlib/util/misc.py:182
        path = path or os.environ['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 #70f92fd5f5fe9a73 Environment-variable access.
pkgs/python/[email protected]/pwnlib/util/misc.py:313
        elif 'TMUX' in os.environ and which('tmux'):

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

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

low env_fs dependency Excluded from app score #3c7d98e480f5efd7 Environment-variable access.
pkgs/python/[email protected]/pwnlib/util/misc.py:316
        elif 'STY' in os.environ and which('screen'):

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

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

low env_fs dependency Excluded from app score #812c837e10ac31f9 Environment-variable access.
pkgs/python/[email protected]/pwnlib/util/misc.py:319
        elif 'TERM_PROGRAM' in os.environ and os.environ['TERM_PROGRAM'] == "iTerm.app" and which('osascript'):

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

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

low env_fs dependency Excluded from app score #8bbde569e3788205 Environment-variable access.
pkgs/python/[email protected]/pwnlib/util/misc.py:323
        elif 'TERM_PROGRAM' in os.environ and which(os.environ['TERM_PROGRAM']):

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

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

low env_fs dependency Excluded from app score #a0ba11c3d744f0b2 Environment-variable access.
pkgs/python/[email protected]/pwnlib/util/misc.py:324
            terminal = os.environ['TERM_PROGRAM']

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

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

low env_fs dependency Excluded from app score #0b4dc1f9c57fbfa3 Environment-variable access.
pkgs/python/[email protected]/pwnlib/util/misc.py:326
        elif 'DISPLAY' in os.environ and which('x-terminal-emulator'):

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

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

low env_fs dependency Excluded from app score #1e94ca7e1ee41f06 Environment-variable access.
pkgs/python/[email protected]/pwnlib/util/misc.py:329
        elif 'KONSOLE_VERSION' in os.environ and which('qdbus'):

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

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

low env_fs dependency Excluded from app score #d9373099f7b7d9cc Environment-variable access.
pkgs/python/[email protected]/pwnlib/util/misc.py:331
            window_id = os.environ['WINDOWID']

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

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

low env_fs dependency Excluded from app score #e112bbedc4ff2540 Environment-variable access.
pkgs/python/[email protected]/pwnlib/util/misc.py:332
            konsole_dbus_service = os.environ['KONSOLE_DBUS_SERVICE']

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

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

low env_fs dependency Excluded from app score #6c9b3614cf1edea2 Environment-variable access.
pkgs/python/[email protected]/pwnlib/util/misc.py:355
            with subprocess.Popen((qdbus, konsole_dbus_service, os.environ['KONSOLE_DBUS_WINDOW'],

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

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

low env_fs dependency Excluded from app score #67f16938566eed76 Filesystem access.
pkgs/python/[email protected]/pwnlib/util/misc.py:367
                with open('/proc/sys/kernel/osrelease', 'rb') as 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 #fd522509cd1f95e2 Environment-variable access.
pkgs/python/[email protected]/pwnlib/util/misc.py:372
                distro_name = os.getenv('WSL_DISTRO_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 #c4b9c4b8099b3947 Environment-variable access.
pkgs/python/[email protected]/pwnlib/util/misc.py:376
                if 'WT_SESSION' in os.environ and which('wt.exe'):

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

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

low env_fs dependency Excluded from app score #541b0676524aaea9 Filesystem access.
pkgs/python/[email protected]/pwnlib/util/misc.py:452
    stdin = stdout = stderr = open(os.devnull, 'r+b')

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

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

low env_fs dependency Excluded from app score #e9c555ee10271dea Filesystem access.
pkgs/python/[email protected]/pwnlib/util/packing.py:1001
        src = open(src.name, 'rb')

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

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

low env_fs dependency Excluded from app score #d1b2a0566ba63978 Filesystem access.
pkgs/python/[email protected]/pwnlib/util/packing.py:1004
        dst = open(dst.name, 'rb+')

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

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

low env_fs dependency Excluded from app score #81a9a9108e3925f5 Filesystem access.
pkgs/python/[email protected]/pwnlib/util/proc.py:274
    with open('/proc/%d/stat' % pid) as fd:

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

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

low env_fs dependency Excluded from app score #69ae613a7b0d2ccd Filesystem access.
pkgs/python/[email protected]/pwnlib/util/proc.py:311
        with open('/proc/%d/status' % pid) as fd:

Reads environment variables or the filesystem — 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 #c5bbe6dc8f97b46f Outbound request to a variable or assembled URL on a network client. Review what data is sent to this destination.
pkgs/python/[email protected]/pwnlib/util/web.py:43
        response = requests.get(url, stream=True, timeout=timeout, **kwargs)

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 #b1a4e8632109470b Filesystem access.
pkgs/python/[email protected]/pwnlib/util/web.py:76
            with open(save,'wb+') as 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 #f08a28d6d1698f86 Environment-variable access.
pkgs/python/[email protected]/travis/coverage_chdir.py:5
os.environ.setdefault("COVERAGE_PROCESS_START", ".coveragerc")

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

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

low env_fs dependency Excluded from app score #b7f0cede9e856779 Filesystem access.
pkgs/python/[email protected]/travis/coverage_chdir.py:9
with open(__file__) as fp:

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

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

requests

python dependency
expand_more 8 low-confidence finding(s)
low env_fs dependency Excluded from app score #dcabdfe1eb4894eb Environment-variable access.
pkgs/python/[email protected]/src/requests/sessions.py:857
                    os.environ.get("REQUESTS_CA_BUNDLE")

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

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

low env_fs dependency Excluded from app score #bbe5ebf45d528eac Environment-variable access.
pkgs/python/[email protected]/src/requests/sessions.py:858
                    or os.environ.get("CURL_CA_BUNDLE")

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

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

low env_fs dependency Excluded from app score #6ffbfe97f84feaf2 Environment-variable access.
pkgs/python/[email protected]/src/requests/utils.py:239
    netrc_file = os.environ.get("NETRC")

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

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

low env_fs dependency Excluded from app score #9bb1f16e8310be95 Environment-variable access.
pkgs/python/[email protected]/src/requests/utils.py:798
        old_value = os.environ.get(env_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 #f3d3573ef64513d4 Environment-variable access.
pkgs/python/[email protected]/src/requests/utils.py:799
        os.environ[env_name] = value

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

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

low env_fs dependency Excluded from app score #f5d72c49f1cd3b09 Environment-variable access.
pkgs/python/[email protected]/src/requests/utils.py:805
                del os.environ[env_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 #1efa23ae02762f98 Environment-variable access.
pkgs/python/[email protected]/src/requests/utils.py:807
                os.environ[env_name] = old_value

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

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

low env_fs dependency Excluded from app score #0c63bf90728045b8 Environment-variable access.
pkgs/python/[email protected]/src/requests/utils.py:820
        return os.environ.get(key) or os.environ.get(key.upper())

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

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

selenium

python dependency
expand_more 36 low-confidence finding(s)
low env_fs dependency Excluded from app score #d292a310e3ec46a1 Environment-variable access.
pkgs/python/[email protected]/selenium/webdriver/__init__.py:23
if os.environ.get("SE_DEBUG"):

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

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

low env_fs dependency Excluded from app score #c05457ec6c16e5e4 Filesystem access.
pkgs/python/[email protected]/selenium/webdriver/chromium/options.py:83
            with open(extension, "rb") as 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 #65366c3e9c2fceb0 Environment-variable access.
pkgs/python/[email protected]/selenium/webdriver/chromium/service.py:58
        if os.environ.get("SE_DEBUG"):

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

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

low egress dependency Excluded from app score #c83b2fde3cb5b161 Outbound request to a variable or assembled URL on a network client. Review what data is sent to this destination.
pkgs/python/[email protected]/selenium/webdriver/common/api_request_context.py:426
        return self._pool.request(
            method,
            url,
            headers=headers,
            body=body,
            timeout=timeout,
            redirect=follow,
            retries=retries,
            preload_content=True,
        )

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 #1b6ad452fc27b8f7 Filesystem access.
pkgs/python/[email protected]/selenium/webdriver/common/api_request_context.py:568
                    with open(file_path) as 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 #7048de2f274b9e24 Filesystem access.
pkgs/python/[email protected]/selenium/webdriver/common/api_request_context.py:601
                with open(file_path, "w") as 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 #cc4e3a580523d56c Environment-variable access.
pkgs/python/[email protected]/selenium/webdriver/common/bidi/cdp.py:48
    return int(os.environ.get("SE_CDP_MAX_WS_MESSAGE_SIZE", MAX_WS_MESSAGE_SIZE))

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

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

low env_fs dependency Excluded from app score #2622bc97b90d0fc2 Environment-variable access.
pkgs/python/[email protected]/selenium/webdriver/common/selenium_manager.py:81
        if (env_path := os.getenv("SE_MANAGER_PATH")) is not None:

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

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

low env_fs dependency Excluded from app score #04afd3e060597a98 Filesystem access.
pkgs/python/[email protected]/selenium/webdriver/common/service.py:64
            self.log_output = open(log_output, "a+", encoding="utf-8")

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

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

low env_fs dependency Excluded from app score #dfbdd7c05001d1e8 Environment-variable access.
pkgs/python/[email protected]/selenium/webdriver/common/service.py:77
        self.env = env or os.environ

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

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

low egress dependency Excluded from app score #7c4309c5d41f721d Outbound request to a variable or assembled URL on a network client. Review what data is sent to this destination.
pkgs/python/[email protected]/selenium/webdriver/common/service.py:147
            request.urlopen(f"{self.service_url}/shutdown", timeout=10)

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 #4eec0b00727675af Environment-variable access.
pkgs/python/[email protected]/selenium/webdriver/common/service.py:261
            return os.getenv(self.DRIVER_PATH_ENV_KEY, None)

Reads environment variables or the filesystem — 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 #132476828ab50037 Outbound request to a variable or assembled URL on a network client. Review what data is sent to this destination.
pkgs/python/[email protected]/selenium/webdriver/common/utils.py:156
        with opener.open(request, timeout=1) as res:

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 #f0491747d3a35b8a Filesystem access.
pkgs/python/[email protected]/selenium/webdriver/firefox/firefox_profile.py:67
                with open(
                    os.path.join(os.path.dirname(__file__), WEBDRIVER_PREFERENCES), encoding="utf-8"
                ) as default_prefs:

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

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

low env_fs dependency Excluded from app score #66895a5ee44703c8 Filesystem access.
pkgs/python/[email protected]/selenium/webdriver/firefox/firefox_profile.py:91
        with open(user_prefs, "w", encoding="utf-8") as 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 #32997ef30f5e5409 Filesystem access.
pkgs/python/[email protected]/selenium/webdriver/firefox/firefox_profile.py:165
        with open(userjs, encoding="utf-8") as 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 #acfb91afa7077d56 Filesystem access.
pkgs/python/[email protected]/selenium/webdriver/firefox/firefox_profile.py:196
                    with open(os.path.join(tmpdir, name), "wb") as 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 #f07375d1f62a78c8 Filesystem access.
pkgs/python/[email protected]/selenium/webdriver/firefox/firefox_profile.py:287
                    with open(manifest_json_filename, encoding="utf-8") as 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 #35c99176422e369f Filesystem access.
pkgs/python/[email protected]/selenium/webdriver/firefox/firefox_profile.py:290
                with open(os.path.join(addon_path, "install.rdf"), encoding="utf-8") as 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 #eacbec59136d3e6c Environment-variable access.
pkgs/python/[email protected]/selenium/webdriver/firefox/service.py:52
        if os.environ.get("SE_DEBUG"):

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

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

low env_fs dependency Excluded from app score #e03b2fb217dee157 Filesystem access.
pkgs/python/[email protected]/selenium/webdriver/firefox/webdriver.py:134
            with open(path, "rb") as 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 #aa506c00e2f1ab22 Filesystem access.
pkgs/python/[email protected]/selenium/webdriver/firefox/webdriver.py:171
            with open(filename, "wb") as 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 #81b26e5d457fe1c3 Environment-variable access.
pkgs/python/[email protected]/selenium/webdriver/ie/service.py:61
        if os.environ.get("SE_DEBUG"):

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

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

low env_fs dependency Excluded from app score #606e820d094a9a4c Environment-variable access.
pkgs/python/[email protected]/selenium/webdriver/remote/client_config.py:121
            (os.getenv("REQUESTS_CA_BUNDLE") if "REQUESTS_CA_BUNDLE" in os.environ else certifi.where())

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

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

low env_fs dependency Excluded from app score #3d8352e1f747d824 Environment-variable access.
pkgs/python/[email protected]/selenium/webdriver/remote/client_config.py:137
            _no_proxy = os.environ.get("no_proxy", os.environ.get("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 #9b6f42801dcec120 Environment-variable access.
pkgs/python/[email protected]/selenium/webdriver/remote/client_config.py:147
            return os.environ.get(

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

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

low env_fs dependency Excluded from app score #2ca528582364752a Environment-variable access.
pkgs/python/[email protected]/selenium/webdriver/remote/client_config.py:147
            return os.environ.get(
                "https_proxy" if self.remote_server_addr.startswith("https://") else "http_proxy",
                os.environ.get("HTTPS_PROXY" if self.remote_server_addr.startswith("https://") else "HTTP_PROXY"),
            )

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

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

low env_fs dependency Excluded from app score #b15819ead81661c1 Environment-variable access.
pkgs/python/[email protected]/selenium/webdriver/remote/client_config.py:149
                os.environ.get("HTTPS_PROXY" if self.remote_server_addr.startswith("https://") else "HTTP_PROXY"),

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

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

low env_fs dependency Excluded from app score #fdc2989cff87e6bb Environment-variable access.
pkgs/python/[email protected]/selenium/webdriver/remote/remote_connection.py:156
    _ca_certs = os.getenv("REQUESTS_CA_BUNDLE") if "REQUESTS_CA_BUNDLE" in os.environ else certifi.where()

Reads environment variables or the filesystem — 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 #389b34611aced9ad Outbound request to a variable or assembled URL on a network client. Review what data is sent to this destination.
pkgs/python/[email protected]/selenium/webdriver/remote/remote_connection.py:431
            response = self._conn.request(method, url, body=body, headers=headers, timeout=self._client_config.timeout)

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 #8fb11b47c8f06381 Outbound request to a variable or assembled URL on a network client. Review what data is sent to this destination.
pkgs/python/[email protected]/selenium/webdriver/remote/remote_connection.py:436
                response = http.request(method, url, body=body, headers=headers, timeout=self._client_config.timeout)

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 #c7d45fae4f720322 Outbound request to a variable or assembled URL on a network client. Review what data is sent to this destination.
pkgs/python/[email protected]/selenium/webdriver/remote/server.py:163
                urllib.request.urlopen(self.status_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 dependency Excluded from app score #0fa38294bb10c403 Filesystem access.
pkgs/python/[email protected]/selenium/webdriver/remote/webdriver.py:958
            with open(filename, "wb") as 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 egress dependency Excluded from app score #2f78fc78b0ac509a Outbound request to a variable or assembled URL on a network client. Review what data is sent to this destination.
pkgs/python/[email protected]/selenium/webdriver/remote/webdriver.py:1439
        res = http.request("GET", f"http://{debugger_address}/json/version")

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 #07ca03fd370219da Filesystem access.
pkgs/python/[email protected]/selenium/webdriver/remote/webdriver.py:1573
            with open(zip_file, "wb") as 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 #d5b0c020fb975f9c Filesystem access.
pkgs/python/[email protected]/selenium/webdriver/remote/webelement.py:457
            with open(filename, "wb") as 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.

webdriver-manager

python dependency
expand_more 13 low-confidence finding(s)
low env_fs dependency Excluded from app score #24a127872a7a2d34 Environment-variable access.
pkgs/python/[email protected]/webdriver_manager/core/config.py:13
    return str2bool(os.getenv("WDM_SSL_VERIFY", "true"))

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

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

low env_fs dependency Excluded from app score #56264353cd93d7ef Environment-variable access.
pkgs/python/[email protected]/webdriver_manager/core/config.py:17
    return os.getenv("GH_TOKEN", None)

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

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

low env_fs dependency Excluded from app score #5b457fecd50b9c8b Environment-variable access.
pkgs/python/[email protected]/webdriver_manager/core/config.py:21
    return str2bool(os.getenv("WDM_LOCAL", "false"))

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

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

low env_fs dependency Excluded from app score #d360da7f36624962 Environment-variable access.
pkgs/python/[email protected]/webdriver_manager/core/config.py:27
        return int(os.getenv("WDM_LOG", default_level))

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

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

low env_fs dependency Excluded from app score #9115f712fd888d68 Environment-variable access.
pkgs/python/[email protected]/webdriver_manager/core/config.py:35
        return int(os.getenv("WDM_PROGRESS_BAR", default_level))

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

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

low env_fs dependency Excluded from app score #aca462d10cb35c09 Environment-variable access.
pkgs/python/[email protected]/webdriver_manager/core/config.py:41
    return os.getenv("PYTEST_XDIST_WORKER", '')

Reads environment variables or the filesystem — 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 #1cdf2b9801aef5e0 Outbound request to a variable or assembled URL on a network client. Review what data is sent to this destination.
pkgs/python/[email protected]/webdriver_manager/core/download_manager.py:29
        response = self._http_client.get(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 dependency Excluded from app score #84d03c171034c9ac Filesystem access.
pkgs/python/[email protected]/webdriver_manager/core/driver_cache.py:98
        with open(self._drivers_json_path, "w+") as outfile:

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

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

low env_fs dependency Excluded from app score #5ace3035ec16068f Filesystem access.
pkgs/python/[email protected]/webdriver_manager/core/driver_cache.py:183
            with open(self._drivers_json_path, "r") as outfile:

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

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

low env_fs dependency Excluded from app score #4a05719cf82d5c10 Filesystem access.
pkgs/python/[email protected]/webdriver_manager/core/file_manager.py:49
        with open(archive_path, "wb") as code:

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

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

low env_fs dependency Excluded from app score #0ec60cc222b38841 Environment-variable access.
pkgs/python/[email protected]/webdriver_manager/core/utils.py:22
    ignore_errors_cmd_part = " 2>/dev/null" if os.getenv(
        "WDM_LOG_LEVEL") == "0" 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 egress dependency Excluded from app score #e6ecec28fff0f0f2 Outbound request to a variable or assembled URL on a network client. Review what data is sent to this destination.
pkgs/python/[email protected]/webdriver_manager/drivers/chrome.py:170
        response = self._http_client.get(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 #04a7287a9bcb5e15 Hardcoded external endpoint. Review what data is sent to this destination.
pkgs/python/[email protected]/webdriver_manager/drivers/chrome.py:193
        response = self._http_client.get(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.

Skipped dependencies

Production

  • fastmcp prod — sdist exceeds byte cap
  • mitmproxy prod — no sdist (wheels only)