meltano
v4.1.2Meltano is your CLI for ELT+: Open Source, Flexible, and Scalable. Move, transform, and test your data with confidence using a streamlined data engineering workflow you’ll love.
599
Total
128
Critical
223
High
248
Medium
Findings
unknownEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
195:
196: await nonpip_plugin_invoker.prepare(session)
>>> 197: env = nonpip_plugin_invoker.env()
198:
199: assert "VIRTUAL_ENV" not in envReport false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
105: subject = plugin_invoker_factory(tap)
106: async with subject.prepared(session):
>>> 107: env = subject.env()
108:
109: assert env["ENVIRONMENT_ENV_VAR"] == str(Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
86: subject = plugin_invoker_factory(tap)
87: async with subject.prepared(session):
>>> 88: env = subject.env()
89:
90: # Project envReport false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
48: env = subject.env()
49:
>>> 50: # .env
51: assert env["DUMMY_ENV_VAR"] == "from_dotenv"
52: Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
46: subject = plugin_invoker_factory(tap)
47: async with subject.prepared(session):
>>> 48: env = subject.env()
49:
50: # .envReport false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
78: )
79: assert meltano_file.env["FOO"] == "1"
>>> 80: assert meltano_file.env["BAR"] == "2025-05-20 00:00:00+00:00"
81:
82: def test_version_deprecation_warning(self) -> None:Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
77: jobs=[],
78: )
>>> 79: assert meltano_file.env["FOO"] == "1"
80: assert meltano_file.env["BAR"] == "2025-05-20 00:00:00+00:00"
81: Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
139: invoker = elt_context.transformer_invoker()
140: async with invoker.prepared(session):
>>> 141: env = invoker.env()
142:
143: assert_extractor_env(elt_context.extractor, env)Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
115: invoker = elt_context.loader_invoker()
116: async with invoker.prepared(session):
>>> 117: env = invoker.env()
118:
119: assert_extractor_env(elt_context.extractor, env)Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
103: invoker = elt_context.extractor_invoker()
104: async with invoker.prepared(session):
>>> 105: env = invoker.env()
106:
107: assert_extractor_env(extractor, env)Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
1006: assert subject.get_with_source("_vars") == (
1007: {"var": "from_env"},
>>> 1008: SettingValueStore.ENV,
1009: )
1010: Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
999: assert subject.get_with_source("_vars") == (
1000: {"var": "from_env", "other": "from_meltano_yml"},
>>> 1001: SettingValueStore.ENV,
1002: )
1003: Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
938: assert subject.get_with_source("_select") == (
939: ["from_env"],
>>> 940: SettingValueStore.ENV,
941: )
942: Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
874: assert subject.get_with_source("object") == (
875: {"foo": "from_env"},
>>> 876: SettingValueStore.ENV,
877: )
878: Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
387: assert metadata["store"] == Store.DB
388:
>>> 389: # Even though `.env` can't be overwritten
390: assert_value_source("from_dotenv", Store.DOTENV)
391: Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
867: assert subject.get_with_source("object") == (
868: {"foo": "from_env_alias"},
>>> 869: SettingValueStore.ENV,
870: )
871: Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
847: "deep.nesting": "from_env",
848: },
>>> 849: SettingValueStore.ENV,
850: )
851: Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
782: assert subject.get_with_source("custom_array", session=session) == (
783: ["foo"],
>>> 784: SettingValueStore.ENV,
785: )
786: Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
778: assert subject.get_with_source("custom_bool", session=session) == (
779: False,
>>> 780: SettingValueStore.ENV,
781: )
782: assert subject.get_with_source("custom_array", session=session) == (Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
77: return {
78: # Include env that project settings are evaluated in
>>> 79: **self.project.settings.env,
80: # Include env for settings explicitly overridden using CLI flags
81: **self.project.settings.as_env(source=SettingValueStore.CONFIG_OVERRIDE),Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
319: # - terminal env # lowest
320:
>>> 321: # NOTE: The schedule, job, .env, and terminal env are all injected into
322: # `os.environ`. Meltano should only ever read the schedule and
323: # job env fields within `meltano.yml` or a manifest file in orderReport false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
316: # - schedule env
317: # - job env
>>> 318: # - .env file
319: # - terminal env # lowest
320: Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
34: Things which still need to be processed when using a manifest file as a source
35: of information include:
>>> 36: - The merger and expansion of terminal env vars into a `.env` file, if one
37: exists. Let the result of this merger be called env vars "A".
38: - The merger and expansion of env vars "A" into the job env, if a job isReport false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
191: self.name = name
192: self.config = EnvironmentConfig(**(config or {}))
>>> 193: self.env = env or {}
194: self.state_id_suffix = state_id_suffix
195: Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
69: super().__init__(plugin_type, name)
70: self.config = copy.deepcopy(config or {})
>>> 71: self.env = copy.deepcopy(env or {})
72: self.extras = extras
73: Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
530: )
531:
>>> 532: env |= transform.env
533:
534: transformer = NoneReport false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
521: )
522:
>>> 523: env |= loader.env
524:
525: transform = NoneReport false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
774: assert subject.get_with_source("custom_string", session=session) == (
775: "from_env",
>>> 776: SettingValueStore.ENV,
777: )
778: assert subject.get_with_source("custom_bool", session=session) == (Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
210: assert subject.get_with_source("boolean", session=session) == (
211: False,
>>> 212: SettingValueStore.ENV,
213: )
214: Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
195: assert subject.get_with_source("object", session=session) == (
196: {"1": {"2": 3}},
>>> 197: SettingValueStore.ENV,
198: )
199: Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
187: assert subject.get_with_source("list", session=session) == (
188: [1, 2, 3, "4"],
>>> 189: SettingValueStore.ENV,
190: )
191: Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
179: assert subject.get_with_source("port", session=session) == (
180: 3333,
>>> 181: SettingValueStore.ENV,
182: )
183: Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
156: assert subject.get_with_source("test", session=session) == (
157: "N33DC0F33",
>>> 158: SettingValueStore.ENV,
159: )
160: Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
151:
152: async with block.invoker.prepared(session):
>>> 153: target_env = block.invoker.env()
154:
155: assert target_env["MELTANO_LOADER_NAME"] == target_postgres.nameReport false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
139:
140: async with block.invoker.prepared(session):
>>> 141: tap_env = block.invoker.env()
142:
143: assert tap_env["MELTANO_EXTRACTOR_NAME"] == tap.nameReport false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
125: assert initial_dict.items() <= builder._env.items()
126: assert builder._env.items() >= block.context.env.items()
>>> 127: assert builder._env.items() >= block2.context.env.items()
128:
129: @pytest.mark.asyncioReport false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
512: )
513:
>>> 514: env |= extractor.env
515:
516: loader = NoneReport false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
124: assert block2.string_id == target.name
125: assert initial_dict.items() <= builder._env.items()
>>> 126: assert builder._env.items() >= block.context.env.items()
127: assert builder._env.items() >= block2.context.env.items()
128: Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
269:
270: assert (
>>> 271: f"Extractor '{tap.name}' setting 'secure' was set in `.env`: '{value}'"
272: ) in result.stdout
273: Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
72: env.update(additional_env)
73:
>>> 74: env.update(self.env)
75: env_config = env_mapping_to_docker(env)
76: Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
254:
255: assert (
>>> 256: f"Extractor '{tap.name}' setting 'secure' was set in `.env`: "
257: + REDACTED_VALUE
258: ) in result.stdoutReport false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
240: assert (
241: f"secure [env: TAP_MOCK_SECURE] current value: '{value}' (from the "
>>> 242: "TAP_MOCK_SECURE variable in `.env`)"
243: ) in result.stdout
244: Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
56: self.ports = ports or {}
57: self.volumes = volumes or []
>>> 58: self.env = env or {}
59:
60: def get_docker_config(self, *, additional_env: dict | None = None) -> dict:Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
113: A dictionary of (unexpanded) environment variables.
114: """
>>> 115: return self.current_meltano_yml.envReport false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
18: /venv
19: /.meltano
>>> 20: .env
21: extract/.gitkeep: ""
22: load/.gitkeep: ""Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
189: assert (
190: f"secure [env: TAP_MOCK_SECURE] current value: {REDACTED_VALUE} (from the "
>>> 191: "TAP_MOCK_SECURE variable in `.env`)"
192: ) in result.stdout
193: Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
364: (
365: "--env-file",
>>> 366: "prod.env",
367: "config",
368: "print",Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
253: )
254: self._blocks.append(block)
>>> 255: self._env.update(ctx.env)
256: return block
257: Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
207: "transform": entry.transform,
208: "interval": entry.interval,
>>> 209: "env": entry.env,
210: "cron_interval": entry.cron_interval,
211: "last_successful_run_ended_at": last_successful_run_ended_at,Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
185: "interval": entry.interval,
186: "cron_interval": entry.cron_interval,
>>> 187: "env": entry.env,
188: "job": {
189: "name": job.name,Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
358:
359: with cd(project.root_dir()):
>>> 360: dotenv_path = project.root.joinpath("prod.env")
361: dotenv_path.write_text("MELTANO_DEFAULT_ENVIRONMENT=custom\n")
362: result = cli_runner.invoke(Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
226: async with invoker.prepared(session):
227: if print_var:
>>> 228: env = invoker.env()
229: for key in print_var:
230: val = env.get(key)Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
341: project = test_cli_project
342: with cd(project.root_dir()):
>>> 343: dotenv_path = tmp_path / ".env"
344: dotenv_path.write_text("MELTANO_DEFAULT_ENVIRONMENT=custom\n")
345: result = cli_runner.invoke(Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
2420: def project_with_environment(project: Project):
2421: project.activate_environment("dev")
>>> 2422: project.environment.env["ENVIRONMENT_ENV_VAR"] = "${MELTANO_PROJECT_ROOT}/file.txt"
2423: try:
2424: yield projectReport false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
327:
328: with tempfile.TemporaryDirectory() as temp_dir:
>>> 329: path = Path(temp_dir) / ".env"
330: for key, value in env.items():
331: dotenv.set_key(path, key, value)Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
182: 1. The `--environment` CLI option
183: 2. Env var from the shell
>>> 184: 3. Env var from `.env`
185: 4. Default environment from `meltano.yml`
186: 5. `None`Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
368: metadata = set_value("from_db")
369: assert metadata["store"] == Store.DB
>>> 370: # Even though `.env` can't be overwritten
371: assert_value_source("from_dotenv", Store.DOTENV)
372: Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
364:
365: # Falls back on system database when
>>> 366: # neither `.env` or `meltano.yml` are supported
367: with unsupported(Store.DOTENV), unsupported(Store.MELTANO_YML):
368: metadata = set_value("from_db")Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
360: metadata = set_value("from_meltano_yml")
361: assert metadata["store"] == Store.MELTANO_YML
>>> 362: # Even though `.env` can't be overwritten
363: assert_value_source("from_dotenv", Store.DOTENV)
364: Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
178:
179: # Environment variables to set in invoked processes for telemetry purposes
>>> 180: self.env: Mapping[str, str] = {
181: "MELTANO_PARENT_CONTEXT_UUID": environment_context.data["context_uuid"],
182: }Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
1249: """Manager that determines the appropriate store based on current context."""
1250:
>>> 1251: label = "the system database, `meltano.yml`, and `.env`"
1252: writable = True
1253: Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
640:
641: Yields:
>>> 642: A copy of the current .env configuration dict.
643:
644: Raises:Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
637: @contextmanager
638: def update_dotenv(self): # noqa: ANN201
>>> 639: """Update .env configuration.
640:
641: Yields:Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
619: for key in env_keys:
620: dotenv.unset_key(dotenv_file, key)
>>> 621: self.log(f"Unset key '{key}' in `.env`")
622:
623: return {}Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
113: env.bak/
114: venv.bak/
>>> 115: .env.*
116:
117: # Spyder project settingsReport false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
604: """
605: if not setting_def:
>>> 606: reason = f"Unknown setting {name} can not be unset in `.env`"
607: instruction = (
608: "Define the setting in 'meltano.yml' or use a different setting store"Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
590: setting_def: SettingDefinition | None = None,
591: ) -> dict:
>>> 592: """Unset value by SettingDefinition in the .env file.
593:
594: Args:Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
581: dotenv.set_key(dotenv_file, primary_key, setting_def.stringify_value(value))
582:
>>> 583: self.log(f"Set key '{primary_key}' in `.env`: {value!r}")
584: return {"env_var": primary_key}
585: Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
356: assert_value_source("from_dotenv", Store.DOTENV)
357:
>>> 358: # Falls back on `meltano.yml` when `.env` is not supported
359: with unsupported(Store.DOTENV):
360: metadata = set_value("from_meltano_yml")Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
351:
352: with unsupported(Store.MELTANO_YML):
>>> 353: # Falls back on `.env` when current store is not supported
354: metadata = set_value("from_dotenv")
355: assert metadata["store"] == Store.DOTENVReport false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
283: value, metadata = subject.get("regular")
284: assert value == "from_env"
>>> 285: assert metadata["source"] == Store.ENV
286: assert metadata["auto_store"] == Store.MELTANO_YML
287: assert metadata["overwritable"] is FalseReport false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
106:
107: # Environments
>>> 108: .env
109: .venv
110: env/Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
65: ctx.setenv(env_key, "from_env")
66:
>>> 67: assert_value_source("from_env", SettingValueStore.ENV)
68:
69: @pytest.mark.usefixtures("config_override")Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
575: for key in other_keys:
576: dotenv.unset_key(dotenv_file, key)
>>> 577: self.log(f"Unset key '{key}' in `.env`")
578: else:
579: dotenv_file.touch()Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
561: """
562: if not setting_def:
>>> 563: reason = f"Unknown setting '{name}' can not be set in `.env`"
564: instruction = (
565: "Define the setting in 'meltano.yml' or use a different setting store"Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
546:
547: def set(self, name: str, path: list[str], value, setting_def=None): # noqa: ANN001, ANN201, ARG002
>>> 548: """Set value by name in the .env file.
549:
550: Args:Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
541: if value is not None:
542: env_key = metadata["env_var"]
>>> 543: self.log(f"Read key '{env_key}' from `.env`: {value!r}")
544:
545: return value, metadataReport false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
527: cast_value: bool = False,
528: ) -> tuple[str | None, dict]:
>>> 529: """Get value by name from the .env file.
530:
531: Args:Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
514:
515: Returns:
>>> 516: A dictionary of values found in the .env file.
517: """
518: if self._env is None:Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
511: @property
512: def env(self) -> dict[str, str | None]:
>>> 513: """Return values from the .env file.
514:
515: Returns:Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
485:
486: def __init__(self, *args, **kwargs) -> None: # noqa: ANN002, ANN003
>>> 487: """Initialise a .env file store manager instance.
488:
489: Args:Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
481: """.env file store manager."""
482:
>>> 483: label = "`.env`"
484: writable = True
485: Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
479:
480: class DotEnvStoreManager(BaseEnvStoreManager):
>>> 481: """.env file store manager."""
482:
483: label = "`.env`"Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
459: cast_value: bool = False,
460: ) -> tuple[str | None, dict]:
>>> 461: """Get value by name from the .env file.
462:
463: Args:Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
450: Values found in the calling terminals environment.
451: """
>>> 452: return self.settings_service.env
453:
454: def get(Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
407: for env_var in self.setting_env_vars(setting_def):
408: with suppress(KeyError):
>>> 409: value = env_var.get(self.env)
410: vals_with_metadata.append((value, {"env_var": env_var.key}))
411: if len(vals_with_metadata) > 1:Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
382: cast_value: bool = False,
383: ) -> tuple[str | None, dict]:
>>> 384: """Get value by name from the .env file.
385:
386: Args:Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
349: cast_value: bool = False, # noqa: ARG002
350: ) -> tuple[str | None, dict]:
>>> 351: """Get value by name from the .env file.
352:
353: Args:Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
174: managers: dict[str, type[SettingsStoreManager]] = {
175: SettingValueStore.CONFIG_OVERRIDE: ConfigOverrideStoreManager,
>>> 176: SettingValueStore.ENV: EnvStoreManager,
177: SettingValueStore.DOTENV: DotEnvStoreManager,
178: SettingValueStore.MELTANO_ENVIRONMENT: MeltanoEnvStoreManager,Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
345: }
346:
>>> 347: expandable_env = {**self.project.dotenv_env, **self.env}
348: if setting_def and setting_def.is_extra:
349: expandable_env.update(Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
437: if self.env and for_writing:
438: # this ensures we only write to specified `env:`
>>> 439: env_keys.append(self.env)
440:
441: env_keys.extend(utils.to_env_var(prefix, self.name) for prefix in prefixes)Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
435: env_keys = []
436:
>>> 437: if self.env and for_writing:
438: # this ensures we only write to specified `env:`
439: env_keys.append(self.env)Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
313: return MeltanoInvoker(self.project).invoke(
314: ["elt", *schedule.elt_args, *args],
>>> 315: env={**schedule.env, **env},
316: **kwargs,
317: )Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
306: return MeltanoInvoker(self.project).invoke(
307: ["run", *args, schedule.job],
>>> 308: env={**schedule.env, **env},
309: **kwargs,
310: )Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
230: self.name = name
231: self.interval = interval
>>> 232: self.env = env or {}
233:
234: @propertyReport false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
59: **self.project.env,
60: # env vars stored in the base `meltano.yml` `env:` key
>>> 61: **self.project.meltano.env,
62: # overrides
63: **self.env_override,Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
57: self.env_override = {
58: # static, project-level env vars (e.g. MELTANO_ENVIRONMENT)
>>> 59: **self.project.env,
60: # env vars stored in the base `meltano.yml` `env:` key
61: **self.project.meltano.env,Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
54: )
55:
>>> 56: # terminal env vars are already present from `SettingService.env`
57: self.env_override = {
58: # static, project-level env vars (e.g. MELTANO_ENVIRONMENT)Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
454:
455: Yields:
>>> 456: the .env file
457:
458: Raises:Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
451: """Raise error if project is readonly.
452:
>>> 453: Used in context where .env files would be updated.
454:
455: Yields:Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
426:
427: Returns:
>>> 428: values found in this project's .env file
429: """
430: return dotenv_values(self.dotenv)Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
423: @cached_property
424: def dotenv_env(self) -> dict[str, str | None]:
>>> 425: """Get values from this project's .env file.
426:
427: Returns:Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
419: else self.root.joinpath(self.dotenv_file)
420: )
>>> 421: return self.root.joinpath(".env")
422:
423: @cached_propertyReport false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
411:
412: Returns:
>>> 413: the path to this project's .env file
414: """
415: if self.dotenv_file:Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
408: @property
409: def dotenv(self) -> Path:
>>> 410: """Get the path to this project's .env file.
411:
412: Returns:Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
298: activate: Save the found project so that future calls to `find`
299: will continue to use this project.
>>> 300: dotenv_file: The path to the .env file to use.
301:
302: Returns:Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
93: environment: The active Meltano environment.
94: readonly: Whether the project is in read-only mode.
>>> 95: dotenv_file: The path to the .env file to use.
96: """
97: self.root = Path(root).resolve()Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
482: async with self.plugin.trigger_hooks("invoke", self, args):
483: popen_options = {**self.Popen_options(), **kwargs}
>>> 484: popen_env = {**self.env(), **env}
485: popen_args = self.exec_args(*args, command=command, env=popen_env)
486: logger.debug(f"Invoking: {popen_args}") # noqa: G004Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
419: **expanded_active_env,
420: **expanded_active_env_plugin_env,
>>> 421: **self.tracker.env,
422: }
423: Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
414: **expanded_project_env,
415: **self.project.dotenv_env,
>>> 416: **self.settings_service.env,
417: **self.plugin_config_env,
418: **expanded_root_plugin_env,Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
402: expanded_active_env_plugin_env = (
403: expand_env_vars(
>>> 404: self.settings_service.environment_plugin_config.env,
405: expanded_root_plugin_env,
406: if_missing=EnvVarMissingBehavior(strict_env_var_mode),Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
394: # Expand root plugin env w/ expanded active env
395: expanded_root_plugin_env = expand_env_vars(
>>> 396: self.settings_service.plugin.env,
397: expanded_active_env,
398: if_missing=EnvVarMissingBehavior(strict_env_var_mode),Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
384: expanded_active_env = (
385: expand_env_vars(
>>> 386: self.settings_service.project.environment.env,
387: expanded_project_env,
388: if_missing=EnvVarMissingBehavior(strict_env_var_mode),Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
369: expanded_project_env = {
370: **expand_env_vars(
>>> 371: self.project.settings.env,
372: os.environ,
373: if_missing=EnvVarMissingBehavior(Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
671: **os.environ,
672: **project.dotenv_env,
>>> 673: **project.meltano.env,
674: },
675: )Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
480: **plugin_settings_service.plugin.info_env,
481: **expand_env_vars(
>>> 482: plugin_settings_service.plugin.env,
483: expanded_project_env,
484: if_missing=EnvVarMissingBehavior(strict_env_var_mode),Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
464: ) as strict_env_var_mode:
465: expanded_project_env = expand_env_vars(
>>> 466: self.project.settings.env,
467: os.environ,
468: if_missing=EnvVarMissingBehavior(strict_env_var_mode),Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
33: Dictionary of environment variables.
34: """
>>> 35: env = super().env()
36:
37: env["SUPERSET_HOME"] = str(self.plugin_config_service.run_dir)Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
67:
68: config_payload: dict = {}
>>> 69: expandable_env = {**invoker.project.dotenv_env, **invoker.project.settings.env}
70: async with await anyio.open_file(config_path, "w") as config_file:
71: config_payload = {Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
88:
89: environment_plugin_env = (
>>> 90: self.environment_plugin_config.env if self.environment_plugin_config else {}
91: )
92: # env vars stored under the `env:` key of the plugin definition of theReport false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
72: if_missing=EnvVarMissingBehavior(strict_env_var_mode),
73: )
>>> 74: for var, value in self.project.environment.env.items()
75: }
76: # expand state_id_suffixReport false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
57: **self.plugin.info_env,
58: # env vars stored under the `env:` key of the plugin definition:
>>> 59: **self.plugin.env,
60: }
61: Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
47: self.env_override = {
48: # project level environment variables:
>>> 49: **self.project.settings.env,
50: # project level settings as env vars (e.g. `MELTANO_PROJECT_ID`):
51: **self.project.settings.as_env(),Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
176: self.requires = PluginRequirement.parse_all(requires)
177: self.requires_meltano = requires_meltano
>>> 178: self.env = env or {}
179:
180: self._fallbacks.update(Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
942: requires_meltano=variant.requires_meltano,
943: supported_python_versions=variant.supported_python_versions,
>>> 944: env=variant.env,
945: **{**plugin_def.extras, **variant.extras},
946: )Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
524: requires_meltano=plugin.requires_meltano,
525: supported_python_versions=plugin.supported_python_versions,
>>> 526: env=plugin.env,
527: **plugin.extras,
528: **extras,Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
33: Dictionary of environment variables.
34: """
>>> 35: env = super().env()
36:
37: env["AIRFLOW_HOME"] = str(self.plugin_config_service.run_dir)Report false positiveEnvironment file access
Detected by automated pattern matching (rule DE-002) with medium confidence. May be a false positive.
83: **env,
84: # Include telemetry env vars
>>> 85: **self.tracker.env,
86: }Report false positiveDecoded base64 content: ��?��#y���mjz?
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: >[��tԞ���xV����
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ��?��#y���mjz?
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ��?��#y���mjz?
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: r���&��g�����g����
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: �֫���{-jYZ�*'
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ��?��#y���mjz?
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ��?��#y���mjz?
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ��?��#y���mjz?
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: r���&��g�����g����
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: �֫���{-jYZ�*'
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: <svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"> <pat
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: <svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"> <pat
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: <svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"> <pat
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: <svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"> <pat
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: >[��tԞ���xV����
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: <svg width="26" height="24" viewBox="0 0 26 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <pat
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: <svg width="26" height="24" viewBox="0 0 26 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <pat
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: <svg width="26" height="24" viewBox="0 0 26 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <pat
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: <svg width="26" height="24" viewBox="0 0 26 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <pat
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: <svg width="23" height="22" viewBox="0 0 23 22" fill="none" xmlns="http://www.w3.org/2000/svg"> <pat
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: �ߖ'-�xz�b�Z���ǩ�*'
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: <svg width="23" height="22" viewBox="0 0 23 22" fill="none" xmlns="http://www.w3.org/2000/svg"> <g i
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: <svg width="23" height="22" viewBox="0 0 23 22" fill="none" xmlns="http://www.w3.org/2000/svg"> <pat
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: <svg width="23" height="22" viewBox="0 0 23 22" fill="none" xmlns="http://www.w3.org/2000/svg"> <pat
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <pat
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <pat
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <pat
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <pat
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <pat
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <pat
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <pat
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <pat
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: <svg width="148" height="35" viewBox="0 0 148 35" fill="none" xmlns="http://www.w3.org/2000/svg"> <p
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: <svg width="148" height="35" viewBox="0 0 148 35" fill="none" xmlns="http://www.w3.org/2000/svg"> <p
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveSubprocess execution
Detected by automated pattern matching (rule SC-001) with medium confidence. May be a false positive.
357: "N818", # Allow Exceptions to have suffix 'Exception' rather than 'Error'
358: "S310", # Allow `urllib.open`
>>> 359: "S603", # Allow `subprocess.run(..., shell=False)`
360: "COM812", # Handled by the Ruff formatter
361: "ISC001", # Handled by the Ruff formatterReport false positiveDecoded base64 content: .��X�z̬�钵�^J�+xƧj�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: $���^J�+xƧj�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ?+^��'���i�^�ب�f��)�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: r���+a��ʜ���.z��ۮ�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ��?��mjz?r����'���
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ��?��mjz?r���:�:
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ��?��mjz?r����n�)�m�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ��?��mjz?r������-
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ��?��mjz?�(+jب���z�"�{?
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ̧q+���z���+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ̧q+���z���+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: "{-�鞞ם �ں[F���
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: "{-�鞞ם �ں[F���
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: r����{�kj{����*'
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: {⮉�z{Mjg��{Z�{��^!�ޖ)���Į�+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: {⮉�z{Mjg��{Z�{��^!�ޖ)���Į�+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: {⮉�z{Mjg��{Z�{��^!�ޖ)���Į�+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: r����mjz?��mjz?
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveSubprocess execution
Detected by automated pattern matching (rule SC-001) with medium confidence. May be a false positive.
46: command: Executable to invoke.
47: env: Extra environment variables to use for the subprocess.
>>> 48: kwargs: Keyword arguments for `subprocess.run`.
49:
50: Returns:Report false positiveSubprocess execution
Detected by automated pattern matching (rule SC-001) with medium confidence. May be a false positive.
49:
50: Returns:
>>> 51: A `CompletedProcess` class object from `subprocess.run`.
52: """
53: return subprocess.run(Report false positiveSubprocess execution
Detected by automated pattern matching (rule SC-001) with medium confidence. May be a false positive.
51: A `CompletedProcess` class object from `subprocess.run`.
52: """
>>> 53: return subprocess.run(
54: [self._executable_path(command), *args],
55: **kwargs,Report false positiveDecoded base64 content: ̧q+���z���+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ̧q+���z���+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ̧q+���z���+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ̧q+���z���+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ̧q+���z���+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: U��j{M��h�wD��+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: U��j{M��h�wD��+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: U��j{M��h�wD��+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: U��j{M��h�wD��+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveSubprocess execution
Detected by automated pattern matching (rule SC-001) with medium confidence. May be a false positive.
28:
29: def Popen_options(self): # noqa: ANN201, N802
>>> 30: """Get options for `subprocess.Popen`.
31:
32: Returns:Report false positiveSubprocess execution
Detected by automated pattern matching (rule SC-001) with medium confidence. May be a false positive.
31:
32: Returns:
>>> 33: Mapping of keyword arguments for `subprocess.Popen`.
34: """
35: return {**super().Popen_options(), "cwd": self.plugin_config["project_dir"]}Report false positiveDecoded base64 content: ����W�z{Z�*'�Z �)�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ̧q+���z���+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: >[��q1y˭��Į�+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: >[��q1y˭��Į�+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: >[��q1y˭��Į�+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ̧q+���z���+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ̧q+���z���+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ̧q+���z���+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ̧q+���z���+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ̧q+���z���+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: >[��r'�֥�f��)�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: >[��r'�֥�'��'
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: >[��r'�֥�'��'
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: >[��r'�֥�f��)�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ̧q+���z���+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: >[��r'�֥�'��'
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: >[��r'�֥�'��'
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveSubprocess execution
Detected by automated pattern matching (rule SC-001) with medium confidence. May be a false positive.
441:
442: def Popen_options(self) -> dict[str, t.Any]: # noqa: N802
>>> 443: """Get options for subprocess.Popen.
444:
445: Returns:Report false positiveDecoded base64 content: I�m�x,J�+xƧj�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDynamic code execution via exec()
Detected by automated pattern matching (rule SC-003) with medium confidence. May be a false positive.
520: popen_env,
521: ):
>>> 522: return await asyncio.create_subprocess_exec(
523: *popen_args,
524: **popen_options,Report false positiveDynamic code evaluation via eval()
Detected by automated pattern matching (rule SC-004) with medium confidence. May be a false positive.
486: except json.JSONDecodeError:
487: try:
>>> 488: parsed = ast.literal_eval(unparsed)
489: except (
490: ValueError,Report false positiveDecoded base64 content: I�m�x,J�+xƧj�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: I�m�x,J�+xƧj�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: I�m�x,J�+xƧj�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: I�m�x,J�+xƧj�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: I�m�x,J�+xƧj�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: I�m�x,J�+xƧj�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: I�m�x,J�+xƧj�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: I�m�x,J�+xƧj�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: I�m�x,J�+xƧj�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: I�m�x,J�+xƧj�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: I�m�x,J�+xƧj�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: I�m�x,J�+xƧj�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: I�m�x,J�+xƧj�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: I�m�x,J�+xƧj�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: I�m�x,J�+xƧj�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: �ߖ'-�xz�b�Z���ǩ�*'
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: �ߖ'-�xz�b�Z���ǩ�*'
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: I�m�x,J�+xƧj�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: �ߖ'-�xz�b�Z���ǩ�*'
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: �ߖ'-�xz�b�Z���ǩ�*'
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: I�m�x,J�+xƧj�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: I�m�x,J�+xƧj�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: I�m�x,J�+xƧj�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: I�m�x,J�+xƧj�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: I�m�x,J�+xƧj�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: I�m�x,J�+xƧj�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveSubprocess execution
Detected by automated pattern matching (rule SC-001) with medium confidence. May be a false positive.
77:
78: pip_url = pip_url or "meltano"
>>> 79: run = subprocess.run(
80: [sys.executable, "-m", "pip", "install", "--upgrade", pip_url],
81: stderr=subprocess.PIPE,Report false positiveDecoded base64 content: �h��bp����R�+iׄ��+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: �h��bp����R�+iׄ��+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: �h��bp����R�+iׄ��+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: �h��bp����R�+iׄ��+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: �h��bp����R�+iׄ��+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: �h��bp����R�+iׄ��+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveSubprocess execution
Detected by automated pattern matching (rule SC-001) with medium confidence. May be a false positive.
175: tuple(
176: int(x)
>>> 177: for x in subprocess.run(
178: (
179: self.python_path,Report false positiveDynamic code execution via exec()
Detected by automated pattern matching (rule SC-003) with medium confidence. May be a false positive.
279: The subprocess.
280: """
>>> 281: run = await asyncio.create_subprocess_exec(
282: *args,
283: stdout=subprocess.PIPE,Report false positiveDecoded base64 content: ̧q+���z���+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: r���{knY���nZ��\�����������s�6o�]�^4������ۚ���
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ��?�'�Ǭ��Ԅ
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ̧q+���z���+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ̧q+���z���+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ̧q+���z���+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ̧q+���z���+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ̧q+���z���+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ̧q+���z���+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ̧q+���z���+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ̧q+���z���+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ̧q+���z���+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: �֫���{-jYZ�*'
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: >[��r'�֥�'��'
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: i�b��b{j˫i�^"jk
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: i�b��b{j˫i�^ �-
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: �f��)brK�g��+^
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: i�b��b{j˫i�^"jk"jk
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: i�b��b{b{���&��j˫i�^"jk
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: r�- �� ��z{L�ץ
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ��r���:)! nv�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: i�b��b{j˫i�^"jk
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: i�b��b{j˫i�^ �-
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: �f��)brK�g��+^
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: �杖)ް˥� ,��Qz�h�ȯx8��V�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ��&�ب�7��˥� ,��Qz�h�ȯx8��V�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: i�b��b{j˫i�^"jk"jk
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: i�b��b{b{���&��j˫i�^"jk
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: r�- �� ��z{L�ץ
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: i�b��b{j˫i�^"jk
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: i�b��b{j˫i�^ �-
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: �f��)brK�g��+^
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: i�b��b{j˫i�^"jk"jk
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: i�b��b{b{���&��j˫i�^"jk
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: r�- �� ��z{L�ץ
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ��r���:)! nv�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: i�b��b{j˫i�^"jk
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: i�b��b{j˫i�^ �-
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: �f��)brK�g��+^
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: �杖)ް˥� ,��Qz�h�ȯx8��V�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ��&�ب�7��˥� ,��Qz�h�ȯx8��V�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: i�b��b{j˫i�^"jk"jk
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: i�b��b{b{���&��j˫i�^"jk
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: r�- �� ��z{L�ץ
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ���,ڶ*'����-
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ���,ڶ*'����-
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: r�����z�?��-���
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: r�����z�?��-���
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: r�����z�?��-���
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: D���܅�-��^��n�)�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: r����{�kj{����*'
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ��,z�?��(����X���?��^�ǭ
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ��!z�kju�,�g����
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: >[��r'�֥�'��'
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveSubprocess execution
Detected by automated pattern matching (rule SC-001) with medium confidence. May be a false positive.
403: assert (
404: "must be run inside a Meltano project"
>>> 405: in subprocess.run(
406: ("meltano", *command_args),
407: text=True,Report false positiveDecoded base64 content: �m�㞻{�[�gwk�z�n�{�M4
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ��!z�kju�,�g����
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ��!z�kju�,�g����
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ��!z�kju�,�g����
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ��!z�kju�,�g����
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ��!z�kju�,�g����
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ��!z�kju�,�g����
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ��!z�kju�,�g����
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ��!z�kju�,�g����
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: n�$z��g�����)��ץ�o�j�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: M�-ki�K��T�)l
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDynamic code execution via exec()
Detected by automated pattern matching (rule SC-003) with medium confidence. May be a false positive.
72: project.plugin_dir(subject, "airflow.db").touch()
73: else:
>>> 74: return original_exec(cmd, *popen_args, **kwargs)
75: return handle_mock
76: Report false positiveDecoded base64 content: >[��r'�֥�'��'
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: >[��r'�֥�'��'
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: �ߖ'-�xz�b�Z���ǩ�*'
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: >[��t��ا�Ğ���xV����
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: >[��t��ا�Ğ���xV����
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: �ߖ'-�xz�b�Z���ǩ�*'
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDynamic code execution via exec()
Detected by automated pattern matching (rule SC-003) with medium confidence. May be a false positive.
86: return handle_mock
87: else:
>>> 88: return original_exec(cmd, *popen_args, **kwargs)
89: return handle_mock
90: Report false positiveDecoded base64 content: >[��r'�֥�'��'
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: >[��r'�֥�'��'
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveSubprocess execution
Detected by automated pattern matching (rule SC-001) with medium confidence. May be a false positive.
245: meltanofile.update(meltanofile_updates)
246:
>>> 247: result = subprocess.run(
248: (
249: "meltano",Report false positiveDecoded base64 content: M�-{�j�^��n�*'
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveSubprocess execution
Detected by automated pattern matching (rule SC-001) with medium confidence. May be a false positive.
59: ) -> None:
60: process_mock = mock.Mock(returncode=0)
>>> 61: with mock.patch("subprocess.run", return_value=process_mock) as run_mock:
62: subject.invoke(["--version"])
63: Report false positiveDynamic code execution via exec()
Detected by automated pattern matching (rule SC-003) with medium confidence. May be a false positive.
280: # Mock asyncio.create_subprocess_exec to raise FileNotFoundError
281: # for the executable
>>> 282: async def mock_create_subprocess_exec(*args: t.Any, **kwargs: t.Any): # noqa: ARG001
283: error = FileNotFoundError(
284: 2, "No such file or directory", "/path/to/missing-executable"Report false positiveDynamic code execution via exec()
Detected by automated pattern matching (rule SC-003) with medium confidence. May be a false positive.
317: # Mock asyncio.create_subprocess_exec to raise FileNotFoundError for
318: # a different file
>>> 319: async def mock_create_subprocess_exec(*args: t.Any, **kwargs: t.Any): # noqa: ARG001
320: error = FileNotFoundError(
321: 2,Report false positiveDecoded base64 content: Rw^~)�tI�U�Į�+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: Rw^~)�tI�U�Į�+
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: I�m�x,J�+xƧj�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ��'��)�'��'
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ��'��)�'��'
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ��'��)�'��'
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: M�-�hJ�+xƧj�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: I�m�x,J�+xƧj�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ��'��)�'��'
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: ��'��)�'��'
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: �罹q�������������i��km���u}�����֝��[�g���5
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: �<ӭ����wƞ�f��n��f�m�7�F���]ݾ_Ѧ��}<��5州��
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: {v�s�6�����x����<�ޟoݸ۶��W��[�~k�y��[��vo�y
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: i�x�w{����ָ����x�o6k�Z}�:m����w��8u�=���ѧz���
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: �M=ۭ���<�^���u��}�ӧv�^z�m�m��m���]���o�;��
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveDecoded base64 content: �My�ߖ�w]���6����g��t������{�^��o|�����m�<
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveSubprocess execution
Detected by automated pattern matching (rule SC-001) with medium confidence. May be a false positive.
304: @pytest.mark.usefixtures("project")
305: def test_exit_event_is_fired(self, snowplow: SnowplowMicro) -> None:
>>> 306: subprocess.run(("meltano", "invoke", "alpha-beta-fox"))
307:
308: event_summary = snowplow.all()Report false positiveDecoded base64 content: J)����L�^�笴v�vW�
Detected by automated pattern matching (rule DO-BAS) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positivePossible Base64-encoded payload (long encoded string)
Detected by automated pattern matching (rule OB-001) with medium confidence. May be a false positive.
76: assert (
77: ex_data["str_hash"]
>>> 78: == "84e45725cb2d98b23d365ff46d8aae35a23c6d91fbed6c0b19ad2ddb72e66f01"
79: == hash_sha256(str(ex))
80: == hash_sha256(msg)Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positivePossible Base64-encoded payload (long encoded string)
Detected by automated pattern matching (rule OB-001) with medium confidence. May be a false positive.
82: assert (
83: ex_data["repr_hash"]
>>> 84: == "544806225e70d8ae22a4826a02b0be4320a71c1d3b5f0aa4630828815bee76b1"
85: == hash_sha256(repr(ex))
86: == hash_sha256(f"ValueError({msg!r})")Report false positivePossible Base64-encoded payload (long encoded string)
Detected by automated pattern matching (rule OB-001) with medium confidence. May be a false positive.
156: "exception": {
157: "type": "CustomException",
>>> 158: "str_hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", # noqa: E501
159: "repr_hash": "ad9443d77d731da456747bd47282a51afe86be7058533f44dcc979320ad62c73", # noqa: E501
160: "traceback": [Report false positivePossible Base64-encoded payload (long encoded string)
Detected by automated pattern matching (rule OB-001) with medium confidence. May be a false positive.
51: system PATH. If it can't be found on the PATH, returns `"uv"`.
52:
>>> 53: Adapted from https://github.com/wntrblm/nox/blob/55c7eaf2eb03feb4a4b79e74966c542b75d61401/nox/virtualenv.py#L42-L54.
54:
55: Copyright 2016 Alethea Katherine FlowersReport false positiveHigh-entropy string (4.9 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.8 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.8 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.7 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positivePossible Base64-encoded payload (long encoded string)
Detected by automated pattern matching (rule OB-001) with medium confidence. May be a false positive.
299: for state_id in state_ids:
300: bucket.put_object(
>>> 301: Key=f"some/trailing/delim/path/some/trailing/delim/path/{state_id}/state.json",
302: )
303: monkeypatch.setenv(Report false positivePossible Base64-encoded payload (long encoded string)
Detected by automated pattern matching (rule OB-001) with medium confidence. May be a false positive.
157: "type": "CustomException",
158: "str_hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", # noqa: E501
>>> 159: "repr_hash": "ad9443d77d731da456747bd47282a51afe86be7058533f44dcc979320ad62c73", # noqa: E501
160: "traceback": [
161: {Report false positivePython requests library HTTP call
Detected by automated pattern matching (rule NS-001) with medium confidence. May be a false positive.
117: """Fetch the latest version from PyPI."""
118: try:
>>> 119: response = requests.get(PYPI_URL, timeout=REQUEST_TIMEOUT)
120: response.raise_for_status()
121: data = response.json()Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.8 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.8 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.7 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.8 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.8 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.7 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positivePossible Base64-encoded payload (long encoded string)
Detected by automated pattern matching (rule OB-001) with medium confidence. May be a false positive.
134: <div align="center">
135: <a href="https://github.com/meltano/meltano/actions/workflows/test.yml?query=branch%3Amain">
>>> 136: <img alt="GitHub Actions Workflow Status" src="https://img.shields.io/github/actions/workflow/status/meltano/meltano/test.yml?label=Tests&labelColor=471E80&color=110B1E">
137: </a>
138: <a href="https://codecov.io/github/meltano/meltano">Report false positiveHigh-entropy string (4.7 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.7 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (5.0 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.9 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.7 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.7 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.9 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.8 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.7 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.7 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.7 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.7 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.8 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.7 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.8 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positivePossible Base64-encoded payload (long encoded string)
Detected by automated pattern matching (rule OB-001) with medium confidence. May be a false positive.
62: <div align="center">
63: <a href="https://github.com/meltano/meltano/actions/workflows/test.yml?query=branch%3Amain">
>>> 64: <img alt="GitHub Actions Workflow Status" src="https://img.shields.io/github/actions/workflow/status/meltano/meltano/test.yml?label=Tests&labelColor=471E80&color=110B1E">
65: </a>
66: <a href="https://codecov.io/github/meltano/meltano">Report false positiveHigh-entropy string (4.7 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.7 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (5.0 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.9 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.7 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.7 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.9 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.8 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.7 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.7 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.7 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.7 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.8 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.7 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.8 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.7 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.7 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.7 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.7 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positivePossible Base64-encoded payload (long encoded string)
Detected by automated pattern matching (rule OB-001) with medium confidence. May be a false positive.
74: align-items: center;
75: justify-content: center;
>>> 76: background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzYiIGhlaWdodD0iMzYiIHZpZXdCb3g9IjAgMCAzNiAzNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjUgMjUuNUw5IDE4TTkgMThMMTYuNSAxMC41TTkgMThMMjcgMTgiIHN0cm9rZT0iIzA4MDIxNiIgc3Ryb2tlLW9wYWNpdHk9IjAuNzUiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHJlY3QgeD0iMzUuNSIgeT0iMzUuNSIgd2lkdGg9IjM1IiBoZWlnaHQ9IjM1IiByeD0iMTcuNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTE4MCAzNS41IDM1LjUpIiBzdHJva2U9IiMwODAyMTYiIHN0cm9rZS1vcGFjaXR5PSIwLjc1Ii8+Cjwvc3ZnPgo=);
77: @media all and (min-width: 768px) {
78: left: -50px;Report false positivePossible Base64-encoded payload (long encoded string)
Detected by automated pattern matching (rule OB-001) with medium confidence. May be a false positive.
82: [data-theme="dark"] {
83: .swiperPrev {
>>> 84: background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzYiIGhlaWdodD0iMzYiIHZpZXdCb3g9IjAgMCAzNiAzNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjUgMjUuNUw5IDE4TTkgMThMMTYuNSAxMC41TTkgMThMMjcgMTgiIHN0cm9rZT0iI2ZmZmZmZiIgc3Ryb2tlLW9wYWNpdHk9IjAuNzUiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHJlY3QgeD0iMzUuNSIgeT0iMzUuNSIgd2lkdGg9IjM1IiBoZWlnaHQ9IjM1IiByeD0iMTcuNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTE4MCAzNS41IDM1LjUpIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS1vcGFjaXR5PSIwLjc1Ii8+Cjwvc3ZnPgo=);
85: }
86: }Report false positivePossible Base64-encoded payload (long encoded string)
Detected by automated pattern matching (rule OB-001) with medium confidence. May be a false positive.
98: align-items: center;
99: justify-content: center;
>>> 100: background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzYiIGhlaWdodD0iMzYiIHZpZXdCb3g9IjAgMCAzNiAzNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE5LjUgMTAuNUwyNyAxOE0yNyAxOEwxOS41IDI1LjVNMjcgMThIOSIgc3Ryb2tlPSIjMDgwMjE2IiBzdHJva2Utb3BhY2l0eT0iMC43NSIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cmVjdCB4PSIwLjUiIHk9IjAuNSIgd2lkdGg9IjM1IiBoZWlnaHQ9IjM1IiByeD0iMTcuNSIgc3Ryb2tlPSIjMDgwMjE2IiBzdHJva2Utb3BhY2l0eT0iMC43NSIvPgo8L3N2Zz4K);
101: @media all and (min-width: 768px) {
102: right: -50px;Report false positivePossible Base64-encoded payload (long encoded string)
Detected by automated pattern matching (rule OB-001) with medium confidence. May be a false positive.
106: [data-theme="dark"] {
107: .swiperNext {
>>> 108: background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzYiIGhlaWdodD0iMzYiIHZpZXdCb3g9IjAgMCAzNiAzNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE5LjUgMTAuNUwyNyAxOE0yNyAxOEwxOS41IDI1LjVNMjcgMThIOSIgc3Ryb2tlPSIjZmZmZmZmIiBzdHJva2Utb3BhY2l0eT0iMC43NSIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cmVjdCB4PSIwLjUiIHk9IjAuNSIgd2lkdGg9IjM1IiBoZWlnaHQ9IjM1IiByeD0iMTcuNSIgc3Ryb2tlPSIjZmZmZmZmIiBzdHJva2Utb3BhY2l0eT0iMC43NSIvPgo8L3N2Zz4K);
109: }
110: }Report false positiveHigh-entropy string (5.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (5.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (5.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (5.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positivePossible Base64-encoded payload (long encoded string)
Detected by automated pattern matching (rule OB-001) with medium confidence. May be a false positive.
741:
742: .header-github-link::before {
>>> 743: background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjYiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNiAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggb3BhY2l0eT0iMC41IiBkPSJNMTIuNiAwQzUuNjQwNDcgMCAwIDUuMzcxODggMCAxMkMwIDE4LjYyODEgNS42NDA0NyAyNCAxMi42IDI0QzE5LjU1OTUgMjQgMjUuMiAxOC42MjgxIDI1LjIgMTJDMjUuMiA1LjM3MTg4IDE5LjU1OTUgMCAxMi42IDBaTTIzLjUyMTYgMTJDMjMuNTIxNiAxNi43NTMxIDIwLjE3OTcgMjAuNzYwOSAxNS42MDczIDIyLjAwMzFMMTUuNTI4NSAyMi4wMjE5VjE4LjEzMTJDMTUuNTI4NSAxNy4yMDc4IDE1LjI2NzcgMTYuNTMyOCAxNC43NTA5IDE2LjEwNjNDMTUuMzI2NyAxNi4wNSAxNS44NTM0IDE1Ljk2MDkgMTYuMzYwMyAxNS44MzQ0TDE2LjI4NjUgMTUuODQ4NEMxNi44MjMgMTUuNzA3OCAxNy4yOTA1IDE1LjUxNTYgMTcuNzIzNyAxNS4yNzY2TDE3LjY5NDEgMTUuMjkwNkMxOC4xNzE2IDE1LjA0MjIgMTguNTcwMiAxNC43MjM0IDE4LjkwNDkgMTQuMzQ4NEwxOC45MDk4IDE0LjM0MzhDMTkuMjM0NyAxMy45Njg4IDE5LjUwMDUgMTMuNDY3MiAxOS43MDIzIDEyLjg0MzhDMTkuOTA5IDEyLjIyMDMgMjAuMDA3NCAxMS41MDMxIDIwLjAwNzQgMTAuNjk2OUMyMC4wMDc0IDkuNTQzNzUgMTkuNjEzNyA4LjU2NDA2IDE4LjgyMTMgNy43NTc4MUMxOS4xOTA0IDYuODkwNjIgMTkuMTUxIDUuOTIwMzEgMTguNzAzMSA0Ljg0Njg4QzE4LjQyMjYgNC43NjI1IDE4LjAxOSA0LjgxNDA2IDE3LjQ4NzQgNS4wMDE1NkMxNi45NTU5IDUuMTg5MDYgMTYuNTAzIDUuNCAxNi4wNzQ4IDUuNjQ4NDRMMTYuMTA5MyA1LjYyOTY5TDE1LjUzODQgNS45NzE4OEMxNC42NzcgNS43Mzc1IDEzLjY4MjggNS42MDE1NiAxMi42NTkxIDUuNjAxNTZDMTEuNjM1MyA1LjYwMTU2IDEwLjY0NiA1LjczNzUgOS43MDU5NCA1Ljk5MDYzTDkuNzc5NzcgNS45NzE4OEM5LjEyMDIzIDQuNzcxODcgNy40NDE4OCA0LjY5MjE5IDYuNjAwMjMgNC44NDIxOUM2LjAzOTE0IDUuNjkwNjMgNi4xMDgwNSA3LjAzMTI1IDYuNDk2ODggNy43NTMxMkM1LjcwOTM4IDguNTY0MDYgNS4zMTA3IDkuNTQzNzUgNS4zMTA3IDEwLjY5MjJDNS4zMTA3IDExLjUwMzEgNS40MTQwNiAxMi4yMTU2IDUuNjE1ODYgMTIuODM0NEM1LjgyMjU4IDEzLjQ1MzEgNi4wODM0NCAxMy45NSA2LjQwMzM2IDE0LjMzNDRDNi43MzMxMyAxNC43MjM0IDcuMTM2NzIgMTUuMDQyMiA3LjU4OTUzIDE1LjI4MTJMNy42MDkyMiAxNS4yOTA2QzguMDEyODEgMTUuNTE1NiA4LjQ4MDM5IDE1LjcwNzggOC45NzI1OCAxNS44MzkxTDkuMDE2ODggMTUuODQ4NEM5LjQ1NDkyIDE1Ljk2MDkgOS45NzY2NCAxNi4wNSAxMC41MDgyIDE2LjEwMTZMMTAuNTUyNSAxNi4xMDYzQzEwLjE1MzggMTYuNDQ4NCA5LjkwNzczIDE2Ljk0MDYgOS44MTkxNCAxNy41NzgxQzkuNjI3MTkgMTcuNjY3MiA5LjQwMDc4IDE3Ljc0MjIgOS4xNjQ1MyAxNy43ODkxTDkuMTQ0ODQgMTcuNzkzOEM4LjkwMzY3IDE3Ljg0MDYgOC42MjgwNSAxNy44NjQxIDguMzQ3NSAxNy44NjQxSDguMjkzMzZDNy45NjM1OSAxNy44NjQxIDcuNjMzODMgMTcuNzYwOSA3LjMwODk4IDE3LjU1NDdDNi45ODQxNCAxNy4zNDg0IDYuNzA4NTIgMTcuMDUzMSA2LjQ3NzE5IDE2LjY2NDFDNi4yOTAxNiAxNi4zNjQxIDYuMDQ4OTggMTYuMTE1NiA1Ljc1ODU5IDE1LjkyODFMNS43NDg3NSAxNS45MjM0QzUuNDUzNDQgMTUuNzMxMyA1LjIwNzM0IDE1LjYxODcgNS4wMDU1NSAxNS41ODEyTDQuODY3NzMgMTUuNTUzMUw0Ljc5MzkxIDE1LjU0MzhDNC42NjEwMiAxNS41NDM4IDQuNTQyODkgMTUuNjE0MSA0LjQ4MzgzIDE1LjcyMTlMNC40NjQxNCAxNS43NTQ3TDQuNDI0NzcgMTUuOTA0N0M0LjQyNDc3IDE2LjAzNTkgNC41MDg0NCAxNi4xNTMxIDQuNjI2NTYgMTYuMjA0N0M0Ljg0ODA1IDE2LjI5ODQgNS4wNjQ2MSAxNi40ODEyIDUuMjc2MjUgMTYuNzQ4NEM1LjQ1MzQ0IDE2Ljk1OTQgNS42MTA5NCAxNy4xOTg0IDUuNzM4OTEgMTcuNDU2Mkw1Ljc0ODc1IDE3LjQ3OTdMNS45MDEzMyAxNy44MDc4QzYuMDI5MyAxOC4xNjQxIDYuMjU1NyAxOC40NjQxIDYuNTU1OTQgMTguNjg0NEw2LjU2MDg2IDE4LjY4OTFDNi44NDE0MSAxOC45IDcuMTgxMDIgMTkuMDUgNy41NTAxNiAxOS4xMTU2SDcuNTY0OTJDNy44NzUgMTkuMTcxOSA4LjIzNDMgMTkuMjA5NCA4LjYwMzQ0IDE5LjIxNDFIOC43NDYxN0M4Ljk5MjI3IDE5LjIxNDEgOS4yMjg1MiAxOS4xOTUzIDkuNDY0NzcgMTkuMTU3OEw5LjQ0MDE2IDE5LjE2MjVMOS43ODQ2OSAxOS4xMDYzQzkuNzg0NjkgMTkuNDY3MiA5Ljc4OTYxIDE5Ljg4OTEgOS43OTQ1MyAyMC4zNzY2QzkuNzk5NDUgMjAuNjcxOSA5Ljc5OTQ1IDIxLjQ3MzQgOS43OTk0NSAyMi4wNjQxQzUuMDk5MDYgMjAuODQwNiAxLjY4MzI4IDE2LjggMS42ODMyOCAxMkMxLjY4MzI4IDcuNzIwMzEgNC40MDAxNiA0LjA0MDYyIDguMjc4NTkgMi40NDIxOUw4LjM0NzUgMi40MTg3NUM5LjYwMjU4IDEuODk4NDQgMTEuMDY0NCAxLjU5ODQ0IDEyLjYgMS41OTg0NEMxOC42MjkzIDEuNTk4NDQgMjMuNTE2NyA2LjI1MzEyIDIzLjUxNjcgMTEuOTk1M0wyMy41MjE2IDEyWiIgZmlsbD0iIzA4MDIxNiIvPgo8L3N2Zz4K") no-repeat;
744: content: "";
745: display: flex;Report false positivePossible Base64-encoded payload (long encoded string)
Detected by automated pattern matching (rule OB-001) with medium confidence. May be a false positive.
749:
750: [data-theme='dark'] .header-github-link::before {
>>> 751: background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjYiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNiAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggb3BhY2l0eT0iMC41IiBkPSJNMTIuNiAwQzUuNjQwNDcgMCAwIDUuMzcxODggMCAxMkMwIDE4LjYyODEgNS42NDA0NyAyNCAxMi42IDI0QzE5LjU1OTUgMjQgMjUuMiAxOC42MjgxIDI1LjIgMTJDMjUuMiA1LjM3MTg4IDE5LjU1OTUgMCAxMi42IDBaTTIzLjUyMTYgMTJDMjMuNTIxNiAxNi43NTMxIDIwLjE3OTcgMjAuNzYwOSAxNS42MDczIDIyLjAwMzFMMTUuNTI4NSAyMi4wMjE5VjE4LjEzMTJDMTUuNTI4NSAxNy4yMDc4IDE1LjI2NzcgMTYuNTMyOCAxNC43NTA5IDE2LjEwNjNDMTUuMzI2NyAxNi4wNSAxNS44NTM0IDE1Ljk2MDkgMTYuMzYwMyAxNS44MzQ0TDE2LjI4NjUgMTUuODQ4NEMxNi44MjMgMTUuNzA3OCAxNy4yOTA1IDE1LjUxNTYgMTcuNzIzNyAxNS4yNzY2TDE3LjY5NDEgMTUuMjkwNkMxOC4xNzE2IDE1LjA0MjIgMTguNTcwMiAxNC43MjM0IDE4LjkwNDkgMTQuMzQ4NEwxOC45MDk4IDE0LjM0MzhDMTkuMjM0NyAxMy45Njg4IDE5LjUwMDUgMTMuNDY3MiAxOS43MDIzIDEyLjg0MzhDMTkuOTA5IDEyLjIyMDMgMjAuMDA3NCAxMS41MDMxIDIwLjAwNzQgMTAuNjk2OUMyMC4wMDc0IDkuNTQzNzUgMTkuNjEzNyA4LjU2NDA2IDE4LjgyMTMgNy43NTc4MUMxOS4xOTA0IDYuODkwNjIgMTkuMTUxIDUuOTIwMzEgMTguNzAzMSA0Ljg0Njg4QzE4LjQyMjYgNC43NjI1IDE4LjAxOSA0LjgxNDA2IDE3LjQ4NzQgNS4wMDE1NkMxNi45NTU5IDUuMTg5MDYgMTYuNTAzIDUuNCAxNi4wNzQ4IDUuNjQ4NDRMMTYuMTA5MyA1LjYyOTY5TDE1LjUzODQgNS45NzE4OEMxNC42NzcgNS43Mzc1IDEzLjY4MjggNS42MDE1NiAxMi42NTkxIDUuNjAxNTZDMTEuNjM1MyA1LjYwMTU2IDEwLjY0NiA1LjczNzUgOS43MDU5NCA1Ljk5MDYzTDkuNzc5NzcgNS45NzE4OEM5LjEyMDIzIDQuNzcxODcgNy40NDE4OCA0LjY5MjE5IDYuNjAwMjMgNC44NDIxOUM2LjAzOTE0IDUuNjkwNjMgNi4xMDgwNSA3LjAzMTI1IDYuNDk2ODggNy43NTMxMkM1LjcwOTM4IDguNTY0MDYgNS4zMTA3IDkuNTQzNzUgNS4zMTA3IDEwLjY5MjJDNS4zMTA3IDExLjUwMzEgNS40MTQwNiAxMi4yMTU2IDUuNjE1ODYgMTIuODM0NEM1LjgyMjU4IDEzLjQ1MzEgNi4wODM0NCAxMy45NSA2LjQwMzM2IDE0LjMzNDRDNi43MzMxMyAxNC43MjM0IDcuMTM2NzIgMTUuMDQyMiA3LjU4OTUzIDE1LjI4MTJMNy42MDkyMiAxNS4yOTA2QzguMDEyODEgMTUuNTE1NiA4LjQ4MDM5IDE1LjcwNzggOC45NzI1OCAxNS44MzkxTDkuMDE2ODggMTUuODQ4NEM5LjQ1NDkyIDE1Ljk2MDkgOS45NzY2NCAxNi4wNSAxMC41MDgyIDE2LjEwMTZMMTAuNTUyNSAxNi4xMDYzQzEwLjE1MzggMTYuNDQ4NCA5LjkwNzczIDE2Ljk0MDYgOS44MTkxNCAxNy41NzgxQzkuNjI3MTkgMTcuNjY3MiA5LjQwMDc4IDE3Ljc0MjIgOS4xNjQ1MyAxNy43ODkxTDkuMTQ0ODQgMTcuNzkzOEM4LjkwMzY3IDE3Ljg0MDYgOC42MjgwNSAxNy44NjQxIDguMzQ3NSAxNy44NjQxSDguMjkzMzZDNy45NjM1OSAxNy44NjQxIDcuNjMzODMgMTcuNzYwOSA3LjMwODk4IDE3LjU1NDdDNi45ODQxNCAxNy4zNDg0IDYuNzA4NTIgMTcuMDUzMSA2LjQ3NzE5IDE2LjY2NDFDNi4yOTAxNiAxNi4zNjQxIDYuMDQ4OTggMTYuMTE1NiA1Ljc1ODU5IDE1LjkyODFMNS43NDg3NSAxNS45MjM0QzUuNDUzNDQgMTUuNzMxMyA1LjIwNzM0IDE1LjYxODcgNS4wMDU1NSAxNS41ODEyTDQuODY3NzMgMTUuNTUzMUw0Ljc5MzkxIDE1LjU0MzhDNC42NjEwMiAxNS41NDM4IDQuNTQyODkgMTUuNjE0MSA0LjQ4MzgzIDE1LjcyMTlMNC40NjQxNCAxNS43NTQ3TDQuNDI0NzcgMTUuOTA0N0M0LjQyNDc3IDE2LjAzNTkgNC41MDg0NCAxNi4xNTMxIDQuNjI2NTYgMTYuMjA0N0M0Ljg0ODA1IDE2LjI5ODQgNS4wNjQ2MSAxNi40ODEyIDUuMjc2MjUgMTYuNzQ4NEM1LjQ1MzQ0IDE2Ljk1OTQgNS42MTA5NCAxNy4xOTg0IDUuNzM4OTEgMTcuNDU2Mkw1Ljc0ODc1IDE3LjQ3OTdMNS45MDEzMyAxNy44MDc4QzYuMDI5MyAxOC4xNjQxIDYuMjU1NyAxOC40NjQxIDYuNTU1OTQgMTguNjg0NEw2LjU2MDg2IDE4LjY4OTFDNi44NDE0MSAxOC45IDcuMTgxMDIgMTkuMDUgNy41NTAxNiAxOS4xMTU2SDcuNTY0OTJDNy44NzUgMTkuMTcxOSA4LjIzNDMgMTkuMjA5NCA4LjYwMzQ0IDE5LjIxNDFIOC43NDYxN0M4Ljk5MjI3IDE5LjIxNDEgOS4yMjg1MiAxOS4xOTUzIDkuNDY0NzcgMTkuMTU3OEw5LjQ0MDE2IDE5LjE2MjVMOS43ODQ2OSAxOS4xMDYzQzkuNzg0NjkgMTkuNDY3MiA5Ljc4OTYxIDE5Ljg4OTEgOS43OTQ1MyAyMC4zNzY2QzkuNzk5NDUgMjAuNjcxOSA5Ljc5OTQ1IDIxLjQ3MzQgOS43OTk0NSAyMi4wNjQxQzUuMDk5MDYgMjAuODQwNiAxLjY4MzI4IDE2LjggMS42ODMyOCAxMkMxLjY4MzI4IDcuNzIwMzEgNC40MDAxNiA0LjA0MDYyIDguMjc4NTkgMi40NDIxOUw4LjM0NzUgMi40MTg3NUM5LjYwMjU4IDEuODk4NDQgMTEuMDY0NCAxLjU5ODQ0IDEyLjYgMS41OTg0NEMxOC42MjkzIDEuNTk4NDQgMjMuNTE2NyA2LjI1MzEyIDIzLjUxNjcgMTEuOTk1M0wyMy41MjE2IDEyWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==") no-repeat;
752: }
753: Report false positivePossible Base64-encoded payload (long encoded string)
Detected by automated pattern matching (rule OB-001) with medium confidence. May be a false positive.
753:
754: .header-github-link:hover::before {
>>> 755: background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjYiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNiAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEyLjYgMEM1LjY0MDQ3IDAgMCA1LjM3MTg4IDAgMTJDMCAxOC42MjgxIDUuNjQwNDcgMjQgMTIuNiAyNEMxOS41NTk1IDI0IDI1LjIgMTguNjI4MSAyNS4yIDEyQzI1LjIgNS4zNzE4OCAxOS41NTk1IDAgMTIuNiAwWk0yMy41MjE2IDEyQzIzLjUyMTYgMTYuNzUzMSAyMC4xNzk3IDIwLjc2MDkgMTUuNjA3MyAyMi4wMDMxTDE1LjUyODUgMjIuMDIxOVYxOC4xMzEyQzE1LjUyODUgMTcuMjA3OCAxNS4yNjc3IDE2LjUzMjggMTQuNzUwOSAxNi4xMDYzQzE1LjMyNjcgMTYuMDUgMTUuODUzNCAxNS45NjA5IDE2LjM2MDMgMTUuODM0NEwxNi4yODY1IDE1Ljg0ODRDMTYuODIzIDE1LjcwNzggMTcuMjkwNSAxNS41MTU2IDE3LjcyMzcgMTUuMjc2NkwxNy42OTQxIDE1LjI5MDZDMTguMTcxNiAxNS4wNDIyIDE4LjU3MDIgMTQuNzIzNCAxOC45MDQ5IDE0LjM0ODRMMTguOTA5OCAxNC4zNDM4QzE5LjIzNDcgMTMuOTY4OCAxOS41MDA1IDEzLjQ2NzIgMTkuNzAyMyAxMi44NDM4QzE5LjkwOSAxMi4yMjAzIDIwLjAwNzQgMTEuNTAzMSAyMC4wMDc0IDEwLjY5NjlDMjAuMDA3NCA5LjU0Mzc1IDE5LjYxMzcgOC41NjQwNiAxOC44MjEzIDcuNzU3ODFDMTkuMTkwNCA2Ljg5MDYyIDE5LjE1MSA1LjkyMDMxIDE4LjcwMzEgNC44NDY4OEMxOC40MjI2IDQuNzYyNSAxOC4wMTkgNC44MTQwNiAxNy40ODc0IDUuMDAxNTZDMTYuOTU1OSA1LjE4OTA2IDE2LjUwMyA1LjQgMTYuMDc0OCA1LjY0ODQ0TDE2LjEwOTMgNS42Mjk2OUwxNS41Mzg0IDUuOTcxODhDMTQuNjc3IDUuNzM3NSAxMy42ODI4IDUuNjAxNTYgMTIuNjU5MSA1LjYwMTU2QzExLjYzNTMgNS42MDE1NiAxMC42NDYgNS43Mzc1IDkuNzA1OTQgNS45OTA2M0w5Ljc3OTc3IDUuOTcxODhDOS4xMjAyMyA0Ljc3MTg3IDcuNDQxODggNC42OTIxOSA2LjYwMDIzIDQuODQyMTlDNi4wMzkxNCA1LjY5MDYzIDYuMTA4MDUgNy4wMzEyNSA2LjQ5Njg4IDcuNzUzMTJDNS43MDkzOCA4LjU2NDA2IDUuMzEwNyA5LjU0Mzc1IDUuMzEwNyAxMC42OTIyQzUuMzEwNyAxMS41MDMxIDUuNDE0MDYgMTIuMjE1NiA1LjYxNTg2IDEyLjgzNDRDNS44MjI1OCAxMy40NTMxIDYuMDgzNDQgMTMuOTUgNi40MDMzNiAxNC4zMzQ0QzYuNzMzMTMgMTQuNzIzNCA3LjEzNjcyIDE1LjA0MjIgNy41ODk1MyAxNS4yODEyTDcuNjA5MjIgMTUuMjkwNkM4LjAxMjgxIDE1LjUxNTYgOC40ODAzOSAxNS43MDc4IDguOTcyNTggMTUuODM5MUw5LjAxNjg4IDE1Ljg0ODRDOS40NTQ5MiAxNS45NjA5IDkuOTc2NjQgMTYuMDUgMTAuNTA4MiAxNi4xMDE2TDEwLjU1MjUgMTYuMTA2M0MxMC4xNTM4IDE2LjQ0ODQgOS45MDc3MyAxNi45NDA2IDkuODE5MTQgMTcuNTc4MUM5LjYyNzE5IDE3LjY2NzIgOS40MDA3OCAxNy43NDIyIDkuMTY0NTMgMTcuNzg5MUw5LjE0NDg0IDE3Ljc5MzhDOC45MDM2NyAxNy44NDA2IDguNjI4MDUgMTcuODY0MSA4LjM0NzUgMTcuODY0MUg4LjI5MzM2QzcuOTYzNTkgMTcuODY0MSA3LjYzMzgzIDE3Ljc2MDkgNy4zMDg5OCAxNy41NTQ3QzYuOTg0MTQgMTcuMzQ4NCA2LjcwODUyIDE3LjA1MzEgNi40NzcxOSAxNi42NjQxQzYuMjkwMTYgMTYuMzY0MSA2LjA0ODk4IDE2LjExNTYgNS43NTg1OSAxNS45MjgxTDUuNzQ4NzUgMTUuOTIzNEM1LjQ1MzQ0IDE1LjczMTMgNS4yMDczNCAxNS42MTg3IDUuMDA1NTUgMTUuNTgxMkw0Ljg2NzczIDE1LjU1MzFMNC43OTM5MSAxNS41NDM4QzQuNjYxMDIgMTUuNTQzOCA0LjU0Mjg5IDE1LjYxNDEgNC40ODM4MyAxNS43MjE5TDQuNDY0MTQgMTUuNzU0N0w0LjQyNDc3IDE1LjkwNDdDNC40MjQ3NyAxNi4wMzU5IDQuNTA4NDQgMTYuMTUzMSA0LjYyNjU2IDE2LjIwNDdDNC44NDgwNSAxNi4yOTg0IDUuMDY0NjEgMTYuNDgxMiA1LjI3NjI1IDE2Ljc0ODRDNS40NTM0NCAxNi45NTk0IDUuNjEwOTQgMTcuMTk4NCA1LjczODkxIDE3LjQ1NjJMNS43NDg3NSAxNy40Nzk3TDUuOTAxMzMgMTcuODA3OEM2LjAyOTMgMTguMTY0MSA2LjI1NTcgMTguNDY0MSA2LjU1NTk0IDE4LjY4NDRMNi41NjA4NiAxOC42ODkxQzYuODQxNDEgMTguOSA3LjE4MTAyIDE5LjA1IDcuNTUwMTYgMTkuMTE1Nkg3LjU2NDkyQzcuODc1IDE5LjE3MTkgOC4yMzQzIDE5LjIwOTQgOC42MDM0NCAxOS4yMTQxSDguNzQ2MTdDOC45OTIyNyAxOS4yMTQxIDkuMjI4NTIgMTkuMTk1MyA5LjQ2NDc3IDE5LjE1NzhMOS40NDAxNiAxOS4xNjI1TDkuNzg0NjkgMTkuMTA2M0M5Ljc4NDY5IDE5LjQ2NzIgOS43ODk2MSAxOS44ODkxIDkuNzk0NTMgMjAuMzc2NkM5Ljc5OTQ1IDIwLjY3MTkgOS43OTk0NSAyMS40NzM0IDkuNzk5NDUgMjIuMDY0MUM1LjA5OTA2IDIwLjg0MDYgMS42ODMyOCAxNi44IDEuNjgzMjggMTJDMS42ODMyOCA3LjcyMDMxIDQuNDAwMTYgNC4wNDA2MiA4LjI3ODU5IDIuNDQyMTlMOC4zNDc1IDIuNDE4NzVDOS42MDI1OCAxLjg5ODQ0IDExLjA2NDQgMS41OTg0NCAxMi42IDEuNTk4NDRDMTguNjI5MyAxLjU5ODQ0IDIzLjUxNjcgNi4yNTMxMiAyMy41MTY3IDExLjk5NTNMMjMuNTIxNiAxMloiIGZpbGw9IiMzQTY0RkEiLz4KPC9zdmc+Cg==") no-repeat;
756: }
757: Report false positivePossible Base64-encoded payload (long encoded string)
Detected by automated pattern matching (rule OB-001) with medium confidence. May be a false positive.
757:
758: [data-theme='dark'] .header-github-link:hover::before {
>>> 759: background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjYiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNiAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEyLjYgMEM1LjY0MDQ3IDAgMCA1LjM3MTg4IDAgMTJDMCAxOC42MjgxIDUuNjQwNDcgMjQgMTIuNiAyNEMxOS41NTk1IDI0IDI1LjIgMTguNjI4MSAyNS4yIDEyQzI1LjIgNS4zNzE4OCAxOS41NTk1IDAgMTIuNiAwWk0yMy41MjE2IDEyQzIzLjUyMTYgMTYuNzUzMSAyMC4xNzk3IDIwLjc2MDkgMTUuNjA3MyAyMi4wMDMxTDE1LjUyODUgMjIuMDIxOVYxOC4xMzEyQzE1LjUyODUgMTcuMjA3OCAxNS4yNjc3IDE2LjUzMjggMTQuNzUwOSAxNi4xMDYzQzE1LjMyNjcgMTYuMDUgMTUuODUzNCAxNS45NjA5IDE2LjM2MDMgMTUuODM0NEwxNi4yODY1IDE1Ljg0ODRDMTYuODIzIDE1LjcwNzggMTcuMjkwNSAxNS41MTU2IDE3LjcyMzcgMTUuMjc2NkwxNy42OTQxIDE1LjI5MDZDMTguMTcxNiAxNS4wNDIyIDE4LjU3MDIgMTQuNzIzNCAxOC45MDQ5IDE0LjM0ODRMMTguOTA5OCAxNC4zNDM4QzE5LjIzNDcgMTMuOTY4OCAxOS41MDA1IDEzLjQ2NzIgMTkuNzAyMyAxMi44NDM4QzE5LjkwOSAxMi4yMjAzIDIwLjAwNzQgMTEuNTAzMSAyMC4wMDc0IDEwLjY5NjlDMjAuMDA3NCA5LjU0Mzc1IDE5LjYxMzcgOC41NjQwNiAxOC44MjEzIDcuNzU3ODFDMTkuMTkwNCA2Ljg5MDYyIDE5LjE1MSA1LjkyMDMxIDE4LjcwMzEgNC44NDY4OEMxOC40MjI2IDQuNzYyNSAxOC4wMTkgNC44MTQwNiAxNy40ODc0IDUuMDAxNTZDMTYuOTU1OSA1LjE4OTA2IDE2LjUwMyA1LjQgMTYuMDc0OCA1LjY0ODQ0TDE2LjEwOTMgNS42Mjk2OUwxNS41Mzg0IDUuOTcxODhDMTQuNjc3IDUuNzM3NSAxMy42ODI4IDUuNjAxNTYgMTIuNjU5MSA1LjYwMTU2QzExLjYzNTMgNS42MDE1NiAxMC42NDYgNS43Mzc1IDkuNzA1OTQgNS45OTA2M0w5Ljc3OTc3IDUuOTcxODhDOS4xMjAyMyA0Ljc3MTg4IDcuNDQxODggNC42OTIxOSA2LjYwMDIzIDQuODQyMTlDNi4wMzkxNCA1LjY5MDYzIDYuMTA4MDUgNy4wMzEyNSA2LjQ5Njg4IDcuNzUzMTJDNS43MDkzOCA4LjU2NDA2IDUuMzEwNyA5LjU0Mzc1IDUuMzEwNyAxMC42OTIyQzUuMzEwNyAxMS41MDMxIDUuNDE0MDYgMTIuMjE1NiA1LjYxNTg2IDEyLjgzNDRDNS44MjI1OCAxMy40NTMxIDYuMDgzNDQgMTMuOTUgNi40MDMzNiAxNC4zMzQ0QzYuNzMzMTMgMTQuNzIzNCA3LjEzNjcyIDE1LjA0MjIgNy41ODk1MyAxNS4yODEyTDcuNjA5MjIgMTUuMjkwNkM4LjAxMjgxIDE1LjUxNTYgOC40ODAzOSAxNS43MDc4IDguOTcyNTggMTUuODM5MUw5LjAxNjg4IDE1Ljg0ODRDOS40NTQ5MiAxNS45NjA5IDkuOTc2NjQgMTYuMDUgMTAuNTA4MiAxNi4xMDE2TDEwLjU1MjUgMTYuMTA2M0MxMC4xNTM4IDE2LjQ0ODQgOS45MDc3MyAxNi45NDA2IDkuODE5MTQgMTcuNTc4MUM5LjYyNzE5IDE3LjY2NzIgOS40MDA3OCAxNy43NDIyIDkuMTY0NTMgMTcuNzg5MUw5LjE0NDg0IDE3Ljc5MzhDOC45MDM2NyAxNy44NDA2IDguNjI4MDUgMTcuODY0MSA4LjM0NzUgMTcuODY0MUg4LjI5MzM2QzcuOTYzNTkgMTcuODY0MSA3LjYzMzgzIDE3Ljc2MDkgNy4zMDg5OCAxNy41NTQ3QzYuOTg0MTQgMTcuMzQ4NCA2LjcwODUyIDE3LjA1MzEgNi40NzcxOSAxNi42NjQxQzYuMjkwMTYgMTYuMzY0MSA2LjA0ODk4IDE2LjExNTYgNS43NTg1OSAxNS45MjgxTDUuNzQ4NzUgMTUuOTIzNEM1LjQ1MzQ0IDE1LjczMTMgNS4yMDczNCAxNS42MTg3IDUuMDA1NTUgMTUuNTgxMkw0Ljg2NzczIDE1LjU1MzFMNC43OTM5MSAxNS41NDM4QzQuNjYxMDIgMTUuNTQzOCA0LjU0Mjg5IDE1LjYxNDEgNC40ODM4MyAxNS43MjE5TDQuNDY0MTQgMTUuNzU0N0w0LjQyNDc3IDE1LjkwNDdDNC40MjQ3NyAxNi4wMzU5IDQuNTA4NDQgMTYuMTUzMSA0LjYyNjU2IDE2LjIwNDdDNC44NDgwNSAxNi4yOTg0IDUuMDY0NjEgMTYuNDgxMiA1LjI3NjI1IDE2Ljc0ODRDNS40NTM0NCAxNi45NTk0IDUuNjEwOTQgMTcuMTk4NCA1LjczODkxIDE3LjQ1NjJMNS43NDg3NSAxNy40Nzk3TDUuOTAxMzMgMTcuODA3OEM2LjAyOTMgMTguMTY0MSA2LjI1NTcgMTguNDY0MSA2LjU1NTk0IDE4LjY4NDRMNi41NjA4NiAxOC42ODkxQzYuODQxNDEgMTguOSA3LjE4MTAyIDE5LjA1IDcuNTUwMTYgMTkuMTE1Nkg3LjU2NDkyQzcuODc1IDE5LjE3MTkgOC4yMzQzIDE5LjIwOTQgOC42MDM0NCAxOS4yMTQxSDguNzQ2MTdDOC45OTIyNyAxOS4yMTQxIDkuMjI4NTIgMTkuMTk1MyA5LjQ2NDc3IDE5LjE1NzhMOS40NDAxNiAxOS4xNjI1TDkuNzg0NjkgMTkuMTA2M0M5Ljc4NDY5IDE5LjQ2NzIgOS43ODk2MSAxOS44ODkxIDkuNzk0NTMgMjAuMzc2NkM5Ljc5OTQ1IDIwLjY3MTkgOS43OTk0NSAyMS40NzM0IDkuNzk5NDUgMjIuMDY0MUM1LjA5OTA2IDIwLjg0MDYgMS42ODMyOCAxNi44IDEuNjgzMjggMTJDMS42ODMyOCA3LjcyMDMxIDQuNDAwMTYgNC4wNDA2MiA4LjI3ODU5IDIuNDQyMTlMOC4zNDc1IDIuNDE4NzVDOS42MDI1OCAxLjg5ODQ0IDExLjA2NDQgMS41OTg0NCAxMi42IDEuNTk4NDRDMTguNjI5MyAxLjU5ODQ0IDIzLjUxNjcgNi4yNTMxMiAyMy41MTY3IDExLjk5NTNMMjMuNTIxNiAxMloiIGZpbGw9IiMxOEMzRkEiLz4KPC9zdmc+Cg==") no-repeat;
760: }
761: Report false positivePossible Base64-encoded payload (long encoded string)
Detected by automated pattern matching (rule OB-001) with medium confidence. May be a false positive.
769:
770: .header-slack-link::before {
>>> 771: background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjMiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyMyAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggb3BhY2l0eT0iMC41IiBkPSJNOC4yNjcxOSAwQzcuMDUwMjIgMCA2LjA2OTc3IDAuOTgzOTg0IDYuMDY5NzcgMi4yQzYuMDY5NzcgMi43ODAwOCA2LjMwMTk4IDMuMzQyOTcgNi43MTA1MSAzLjc1NTQ3QzcuMTIzMzMgNC4xNjc5NyA3LjY4MjM2IDQuNCA4LjI2NzE5IDQuNEgxMC40NjQ2VjIuMkMxMC40NjQ2IDAuOTg4MjgxIDkuNDg0MTYgMC4wMDQyOTY4OCA4LjI2NzE5IDBaTTguMjY3MTkgNS44NjUyM0gyLjM5NzM3QzEuMTgwNCA1Ljg2NTIzIDAuMTk5OTUxIDYuODQ5MjIgMC4xOTk5NTEgOC4wNjUyM0MwLjE5OTk1MSA5LjI4MTI1IDEuMTg0NyAxMC4yNjUyIDIuMzk3MzcgMTAuMjY1Mkg4LjI2Mjg5QzkuNDc5ODYgMTAuMjY1MiAxMC40NjAzIDkuMjgxMjUgMTAuNDYwMyA4LjA2NTIzQzEwLjQ2NDYgNi44NTM1MiA5LjQ3OTg2IDUuODY1MjMgOC4yNjcxOSA1Ljg2NTIzWk0xNC4xMzI3IDEwLjI2NTJDMTUuMzQ5NyAxMC4yNjUyIDE2LjMzNDQgOS4yODEyNSAxNi4zMzAxIDguMDY1MjNWMi4yQzE2LjMzMDEgMC45ODM5ODQgMTUuMzQ1NCAwIDE0LjEzMjcgMEMxMi45MiAwIDExLjkzNTMgMC45ODM5ODQgMTEuOTM1MyAyLjJWOC4wNjUyM0MxMS45MzUzIDkuMjg1NTUgMTIuOTE1NyAxMC4yNjUyIDE0LjEzMjcgMTAuMjY1MlpNMjIuMiA4LjA2NTIzQzIyLjIgNi44NDkyMiAyMS4yMTUyIDUuODY1MjMgMjAuMDAyNSA1Ljg2NTIzQzE4Ljc4OTkgNS44NjUyMyAxNy44MDUxIDYuODQ5MjIgMTcuODA1MSA4LjA2NTIzVjEwLjI2NTJIMjAuMDAyNUMyMS4yMTUyIDEwLjI2NTIgMjIuMiA5LjI4MTI1IDIyLjIgOC4wNjUyM1pNMTkuOTk4MiAxMS43MzQ4SDE0LjEzMjdDMTIuOTE1NyAxMS43MzQ4IDExLjkzNTMgMTIuNzE4NyAxMS45MzUzIDEzLjkzNDhDMTEuOTM1MyAxNC41MTQ4IDEyLjE2NzUgMTUuMDc3NyAxMi41NzYgMTUuNDkwMkMxMi45ODg4IDE1LjkwMjcgMTMuNTQ3OSAxNi4xMzQ4IDE0LjEzMjcgMTYuMTM0OEgxOS45OTgyQzIxLjIxNTIgMTYuMTM0OCAyMi4xOTU3IDE1LjE1MDggMjIuMTk1NyAxMy45MzQ4QzIyLjIgMTIuNzE4NyAyMS4yMTUyIDExLjczNDggMTkuOTk4MiAxMS43MzQ4Wk0xNC4xMzI3IDE3LjZIMTEuOTM1M1YxOS44QzExLjkzNTMgMjEuMDE2IDEyLjkyIDIyIDE0LjEzMjcgMjJDMTUuMzQ1NCAyMiAxNi4zMzQ0IDIxLjAxNiAxNi4zMzAxIDE5LjhDMTYuMzM0NCAxOC41ODQgMTUuMzQ5NyAxNy42MDQzIDE0LjEzMjcgMTcuNlpNOC4yNjcxOSAxMS43MzQ4QzcuMDUwMjIgMTEuNzM0OCA2LjA2OTc3IDEyLjcxODcgNi4wNjk3NyAxMy45MzQ4VjE5LjhDNi4wNjk3NyAyMS4wMTYgNy4wNTQ1MyAyMiA4LjI2NzE5IDIyQzkuNDc5ODYgMjIgMTAuNDY4OSAyMS4wMTYgMTAuNDY0NiAxOS44VjEzLjkzNDhDMTAuNDY0NiAxMy4zNTQ3IDEwLjIzMjQgMTIuNzkxOCA5LjgyMzg4IDEyLjM3OTNDOS40MTEwNSAxMS45NjY4IDguODQ3NzIgMTEuNzM0OCA4LjI2NzE5IDExLjczNDhaTTAuMTk5OTUxIDEzLjkzNDhDMC4xOTk5NTEgMTQuNTE0OCAwLjQzMjE2NCAxNS4wNzc3IDAuODQwNjg2IDE1LjQ5MDJDMS4yNTM1MSAxNS45MDI3IDEuODEyNTQgMTYuMTM0OCAyLjM5NzM3IDE2LjEzNDhDMy42MTQzNCAxNi4xMzQ4IDQuNTk5MDkgMTUuMTUwOCA0LjU5NDc5IDEzLjkzNDhWMTEuNzM0OEgyLjM5NzM3QzEuMTg0NyAxMS43MzQ4IDAuMTk5OTUxIDEyLjcxODcgMC4xOTk5NTEgMTMuOTM0OFoiIGZpbGw9IiMwODAyMTYiLz4KPC9zdmc+Cg==") no-repeat;
772: content: "";
773: display: flex;Report false positivePossible Base64-encoded payload (long encoded string)
Detected by automated pattern matching (rule OB-001) with medium confidence. May be a false positive.
777:
778: [data-theme='dark'] .header-slack-link::before {
>>> 779: background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjMiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyMyAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgaWQ9IlNsYWNrIGljb24gb24gZGFyayBiZyI+CjxwYXRoIGlkPSJWZWN0b3IiIG9wYWNpdHk9IjAuNSIgZD0iTTguMjY3MTkgMEM3LjA1MDIyIDAgNi4wNjk3NyAwLjk4Mzk4NCA2LjA2OTc3IDIuMkM2LjA2OTc3IDIuNzgwMDggNi4zMDE5OCAzLjM0Mjk3IDYuNzEwNTEgMy43NTU0N0M3LjEyMzMzIDQuMTY3OTcgNy42ODIzNiA0LjQgOC4yNjcxOSA0LjRIMTAuNDY0NlYyLjJDMTAuNDY0NiAwLjk4ODI4MSA5LjQ4NDE2IDAuMDA0Mjk2ODggOC4yNjcxOSAwWk04LjI2NzE5IDUuODY1MjNIMi4zOTczN0MxLjE4MDQgNS44NjUyMyAwLjE5OTk1MSA2Ljg0OTIyIDAuMTk5OTUxIDguMDY1MjNDMC4xOTk5NTEgOS4yODEyNSAxLjE4NDcgMTAuMjY1MiAyLjM5NzM3IDEwLjI2NTJIOC4yNjI4OUM5LjQ3OTg2IDEwLjI2NTIgMTAuNDYwMyA5LjI4MTI1IDEwLjQ2MDMgOC4wNjUyM0MxMC40NjQ2IDYuODUzNTIgOS40Nzk4NiA1Ljg2NTIzIDguMjY3MTkgNS44NjUyM1pNMTQuMTMyNyAxMC4yNjUyQzE1LjM0OTcgMTAuMjY1MiAxNi4zMzQ0IDkuMjgxMjUgMTYuMzMwMSA4LjA2NTIzVjIuMkMxNi4zMzAxIDAuOTgzOTg0IDE1LjM0NTQgMCAxNC4xMzI3IDBDMTIuOTIgMCAxMS45MzUzIDAuOTgzOTg0IDExLjkzNTMgMi4yVjguMDY1MjNDMTEuOTM1MyA5LjI4NTU1IDEyLjkxNTcgMTAuMjY1MiAxNC4xMzI3IDEwLjI2NTJaTTIyLjIgOC4wNjUyM0MyMi4yIDYuODQ5MjIgMjEuMjE1MiA1Ljg2NTIzIDIwLjAwMjUgNS44NjUyM0MxOC43ODk5IDUuODY1MjMgMTcuODA1MSA2Ljg0OTIyIDE3LjgwNTEgOC4wNjUyM1YxMC4yNjUySDIwLjAwMjVDMjEuMjE1MiAxMC4yNjUyIDIyLjIgOS4yODEyNSAyMi4yIDguMDY1MjNaTTE5Ljk5ODIgMTEuNzM0OEgxNC4xMzI3QzEyLjkxNTcgMTEuNzM0OCAxMS45MzUzIDEyLjcxODcgMTEuOTM1MyAxMy45MzQ4QzExLjkzNTMgMTQuNTE0OCAxMi4xNjc1IDE1LjA3NzcgMTIuNTc2IDE1LjQ5MDJDMTIuOTg4OCAxNS45MDI3IDEzLjU0NzkgMTYuMTM0OCAxNC4xMzI3IDE2LjEzNDhIMTkuOTk4MkMyMS4yMTUyIDE2LjEzNDggMjIuMTk1NyAxNS4xNTA4IDIyLjE5NTcgMTMuOTM0OEMyMi4yIDEyLjcxODcgMjEuMjE1MiAxMS43MzQ4IDE5Ljk5ODIgMTEuNzM0OFpNMTQuMTMyNyAxNy42SDExLjkzNTNWMTkuOEMxMS45MzUzIDIxLjAxNiAxMi45MiAyMiAxNC4xMzI3IDIyQzE1LjM0NTQgMjIgMTYuMzM0NCAyMS4wMTYgMTYuMzMwMSAxOS44QzE2LjMzNDQgMTguNTg0IDE1LjM0OTcgMTcuNjA0MyAxNC4xMzI3IDE3LjZaTTguMjY3MTkgMTEuNzM0OEM3LjA1MDIyIDExLjczNDggNi4wNjk3NyAxMi43MTg3IDYuMDY5NzcgMTMuOTM0OFYxOS44QzYuMDY5NzcgMjEuMDE2IDcuMDU0NTMgMjIgOC4yNjcxOSAyMkM5LjQ3OTg2IDIyIDEwLjQ2ODkgMjEuMDE2IDEwLjQ2NDYgMTkuOFYxMy45MzQ4QzEwLjQ2NDYgMTMuMzU0NyAxMC4yMzI0IDEyLjc5MTggOS44MjM4OCAxMi4zNzkzQzkuNDExMDUgMTEuOTY2OCA4Ljg0NzcyIDExLjczNDggOC4yNjcxOSAxMS43MzQ4Wk0wLjE5OTk1MSAxMy45MzQ4QzAuMTk5OTUxIDE0LjUxNDggMC40MzIxNjQgMTUuMDc3NyAwLjg0MDY4NiAxNS40OTAyQzEuMjUzNTEgMTUuOTAyNyAxLjgxMjU0IDE2LjEzNDggMi4zOTczNyAxNi4xMzQ4QzMuNjE0MzQgMTYuMTM0OCA0LjU5OTA5IDE1LjE1MDggNC41OTQ3OSAxMy45MzQ4VjExLjczNDhIMi4zOTczN0MxLjE4NDcgMTEuNzM0OCAwLjE5OTk1MSAxMi43MTg3IDAuMTk5OTUxIDEzLjkzNDhaIiBmaWxsPSJ3aGl0ZSIvPgo8L2c+Cjwvc3ZnPgo=") no-repeat;
780: content: "";
781: display: flex;Report false positivePossible Base64-encoded payload (long encoded string)
Detected by automated pattern matching (rule OB-001) with medium confidence. May be a false positive.
785:
786: .header-slack-link:hover::before {
>>> 787: background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjMiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyMyAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTguMjY3MjUgMEM3LjA1MDI5IDAgNi4wNjk4MyAwLjk4Mzk4NCA2LjA2OTgzIDIuMkM2LjA2OTgzIDIuNzgwMDggNi4zMDIwNCAzLjM0Mjk3IDYuNzEwNTcgMy43NTU0N0M3LjEyMzM5IDQuMTY3OTcgNy42ODI0MiA0LjQgOC4yNjcyNSA0LjRIMTAuNDY0N1YyLjJDMTAuNDY0NyAwLjk4ODI4MSA5LjQ4NDIyIDAuMDA0Mjk2ODggOC4yNjcyNSAwWk04LjI2NzI1IDUuODY1MjNIMi4zOTc0M0MxLjE4MDQ3IDUuODY1MjMgMC4yMDAwMTIgNi44NDkyMiAwLjIwMDAxMiA4LjA2NTIzQzAuMjAwMDEyIDkuMjgxMjUgMS4xODQ3NyAxMC4yNjUyIDIuMzk3NDMgMTAuMjY1Mkg4LjI2Mjk1QzkuNDc5OTIgMTAuMjY1MiAxMC40NjA0IDkuMjgxMjUgMTAuNDYwNCA4LjA2NTIzQzEwLjQ2NDcgNi44NTM1MiA5LjQ3OTkyIDUuODY1MjMgOC4yNjcyNSA1Ljg2NTIzWk0xNC4xMzI4IDEwLjI2NTJDMTUuMzQ5NyAxMC4yNjUyIDE2LjMzNDUgOS4yODEyNSAxNi4zMzAyIDguMDY1MjNWMi4yQzE2LjMzMDIgMC45ODM5ODQgMTUuMzQ1NCAwIDE0LjEzMjggMEMxMi45MjAxIDAgMTEuOTM1NCAwLjk4Mzk4NCAxMS45MzU0IDIuMlY4LjA2NTIzQzExLjkzNTQgOS4yODU1NSAxMi45MTU4IDEwLjI2NTIgMTQuMTMyOCAxMC4yNjUyWk0yMi4yIDguMDY1MjNDMjIuMiA2Ljg0OTIyIDIxLjIxNTMgNS44NjUyMyAyMC4wMDI2IDUuODY1MjNDMTguNzg5OSA1Ljg2NTIzIDE3LjgwNTIgNi44NDkyMiAxNy44MDUyIDguMDY1MjNWMTAuMjY1MkgyMC4wMDI2QzIxLjIxNTMgMTAuMjY1MiAyMi4yIDkuMjgxMjUgMjIuMiA4LjA2NTIzWk0xOS45OTgzIDExLjczNDhIMTQuMTMyOEMxMi45MTU4IDExLjczNDggMTEuOTM1NCAxMi43MTg3IDExLjkzNTQgMTMuOTM0OEMxMS45MzU0IDE0LjUxNDggMTIuMTY3NiAxNS4wNzc3IDEyLjU3NjEgMTUuNDkwMkMxMi45ODg5IDE1LjkwMjcgMTMuNTQ3OSAxNi4xMzQ4IDE0LjEzMjggMTYuMTM0OEgxOS45OTgzQzIxLjIxNTMgMTYuMTM0OCAyMi4xOTU3IDE1LjE1MDggMjIuMTk1NyAxMy45MzQ4QzIyLjIgMTIuNzE4NyAyMS4yMTUzIDExLjczNDggMTkuOTk4MyAxMS43MzQ4Wk0xNC4xMzI4IDE3LjZIMTEuOTM1NFYxOS44QzExLjkzNTQgMjEuMDE2IDEyLjkyMDEgMjIgMTQuMTMyOCAyMkMxNS4zNDU0IDIyIDE2LjMzNDUgMjEuMDE2IDE2LjMzMDIgMTkuOEMxNi4zMzQ1IDE4LjU4NCAxNS4zNDk3IDE3LjYwNDMgMTQuMTMyOCAxNy42Wk04LjI2NzI1IDExLjczNDhDNy4wNTAyOSAxMS43MzQ4IDYuMDY5ODMgMTIuNzE4NyA2LjA2OTgzIDEzLjkzNDhWMTkuOEM2LjA2OTgzIDIxLjAxNiA3LjA1NDU5IDIyIDguMjY3MjUgMjJDOS40Nzk5MiAyMiAxMC40NjkgMjEuMDE2IDEwLjQ2NDcgMTkuOFYxMy45MzQ4QzEwLjQ2NDcgMTMuMzU0NyAxMC4yMzI1IDEyLjc5MTggOS44MjM5NCAxMi4zNzkzQzkuNDExMTEgMTEuOTY2OCA4Ljg0Nzc4IDExLjczNDggOC4yNjcyNSAxMS43MzQ4Wk0wLjIwMDAxMiAxMy45MzQ4QzAuMjAwMDEyIDE0LjUxNDggMC40MzIyMjUgMTUuMDc3NyAwLjg0MDc0NyAxNS40OTAyQzEuMjUzNTcgMTUuOTAyNyAxLjgxMjYgMTYuMTM0OCAyLjM5NzQzIDE2LjEzNDhDMy42MTQ0IDE2LjEzNDggNC41OTkxNSAxNS4xNTA4IDQuNTk0ODUgMTMuOTM0OFYxMS43MzQ4SDIuMzk3NDNDMS4xODQ3NyAxMS43MzQ4IDAuMjAwMDEyIDEyLjcxODcgMC4yMDAwMTIgMTMuOTM0OFoiIGZpbGw9IiMzQTY0RkEiLz4KPC9zdmc+Cg==") no-repeat;
788: }
789: Report false positivePossible Base64-encoded payload (long encoded string)
Detected by automated pattern matching (rule OB-001) with medium confidence. May be a false positive.
789:
790: [data-theme='dark'] .header-slack-link:hover::before {
>>> 791: background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjMiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyMyAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTguMjY3MTkgMEM3LjA1MDIyIDAgNi4wNjk3NyAwLjk4Mzk4NCA2LjA2OTc3IDIuMkM2LjA2OTc3IDIuNzgwMDggNi4zMDE5OCAzLjM0Mjk3IDYuNzEwNTEgMy43NTU0N0M3LjEyMzMzIDQuMTY3OTcgNy42ODIzNiA0LjQgOC4yNjcxOSA0LjRIMTAuNDY0NlYyLjJDMTAuNDY0NiAwLjk4ODI4MSA5LjQ4NDE2IDAuMDA0Mjk2ODggOC4yNjcxOSAwWk04LjI2NzE5IDUuODY1MjNIMi4zOTczN0MxLjE4MDQgNS44NjUyMyAwLjE5OTk1MSA2Ljg0OTIyIDAuMTk5OTUxIDguMDY1MjNDMC4xOTk5NTEgOS4yODEyNSAxLjE4NDcgMTAuMjY1MiAyLjM5NzM3IDEwLjI2NTJIOC4yNjI4OUM5LjQ3OTg2IDEwLjI2NTIgMTAuNDYwMyA5LjI4MTI1IDEwLjQ2MDMgOC4wNjUyM0MxMC40NjQ2IDYuODUzNTIgOS40Nzk4NiA1Ljg2NTIzIDguMjY3MTkgNS44NjUyM1pNMTQuMTMyNyAxMC4yNjUyQzE1LjM0OTcgMTAuMjY1MiAxNi4zMzQ0IDkuMjgxMjUgMTYuMzMwMSA4LjA2NTIzVjIuMkMxNi4zMzAxIDAuOTgzOTg0IDE1LjM0NTQgMCAxNC4xMzI3IDBDMTIuOTIgMCAxMS45MzUzIDAuOTgzOTg0IDExLjkzNTMgMi4yVjguMDY1MjNDMTEuOTM1MyA5LjI4NTU1IDEyLjkxNTcgMTAuMjY1MiAxNC4xMzI3IDEwLjI2NTJaTTIyLjIgOC4wNjUyM0MyMi4yIDYuODQ5MjIgMjEuMjE1MiA1Ljg2NTIzIDIwLjAwMjUgNS44NjUyM0MxOC43ODk5IDUuODY1MjMgMTcuODA1MSA2Ljg0OTIyIDE3LjgwNTEgOC4wNjUyM1YxMC4yNjUySDIwLjAwMjVDMjEuMjE1MiAxMC4yNjUyIDIyLjIgOS4yODEyNSAyMi4yIDguMDY1MjNaTTE5Ljk5ODIgMTEuNzM0OEgxNC4xMzI3QzEyLjkxNTcgMTEuNzM0OCAxMS45MzUzIDEyLjcxODcgMTEuOTM1MyAxMy45MzQ4QzExLjkzNTMgMTQuNTE0OCAxMi4xNjc1IDE1LjA3NzcgMTIuNTc2IDE1LjQ5MDJDMTIuOTg4OCAxNS45MDI3IDEzLjU0NzkgMTYuMTM0OCAxNC4xMzI3IDE2LjEzNDhIMTkuOTk4MkMyMS4yMTUyIDE2LjEzNDggMjIuMTk1NyAxNS4xNTA4IDIyLjE5NTcgMTMuOTM0OEMyMi4yIDEyLjcxODcgMjEuMjE1MiAxMS43MzQ4IDE5Ljk5ODIgMTEuNzM0OFpNMTQuMTMyNyAxNy42SDExLjkzNTNWMTkuOEMxMS45MzUzIDIxLjAxNiAxMi45MiAyMiAxNC4xMzI3IDIyQzE1LjM0NTQgMjIgMTYuMzM0NCAyMS4wMTYgMTYuMzMwMSAxOS44QzE2LjMzNDQgMTguNTg0IDE1LjM0OTcgMTcuNjA0MyAxNC4xMzI3IDE3LjZaTTguMjY3MTkgMTEuNzM0OEM3LjA1MDIyIDExLjczNDggNi4wNjk3NyAxMi43MTg3IDYuMDY5NzcgMTMuOTM0OFYxOS44QzYuMDY5NzcgMjEuMDE2IDcuMDU0NTMgMjIgOC4yNjcxOSAyMkM5LjQ3OTg2IDIyIDEwLjQ2ODkgMjEuMDE2IDEwLjQ2NDYgMTkuOFYxMy45MzQ4QzEwLjQ2NDYgMTMuMzU0NyAxMC4yMzI0IDEyLjc5MTggOS44MjM4OCAxMi4zNzkzQzkuNDExMDUgMTEuOTY2OCA4Ljg0NzcyIDExLjczNDggOC4yNjcxOSAxMS43MzQ4Wk0wLjE5OTk1MSAxMy45MzQ4QzAuMTk5OTUxIDE0LjUxNDggMC40MzIxNjQgMTUuMDc3NyAwLjg0MDY4NiAxNS40OTAyQzEuMjUzNTEgMTUuOTAyNyAxLjgxMjU0IDE2LjEzNDggMi4zOTczNyAxNi4xMzQ4QzMuNjE0MzQgMTYuMTM0OCA0LjU5OTA5IDE1LjE1MDggNC41OTQ3OSAxMy45MzQ4VjExLjczNDhIMi4zOTczN0MxLjE4NDcgMTEuNzM0OCAwLjE5OTk1MSAxMi43MTg3IDAuMTk5OTUxIDEzLjkzNDhaIiBmaWxsPSIjMThDM0ZBIi8+Cjwvc3ZnPgo=") no-repeat;
792: }
793: Report false positivePossible Base64-encoded payload (long encoded string)
Detected by automated pattern matching (rule OB-001) with medium confidence. May be a false positive.
797:
798: .header-get-started-link::before {
>>> 799: background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIuNSAyLjVWMy43NU0yLjUgMy43NUw0LjgwODMzIDMuMTcyNUM2LjU0NTM0IDIuNzM4MzcgOC4zODAzNCAyLjkzOTk2IDkuOTgxNjcgMy43NDA4M0wxMC4wNzE3IDMuNzg1ODNDMTEuNjQwNiA0LjU3MDI1IDEzLjQzNDkgNC43Nzk5MSAxNS4xNDI1IDQuMzc4MzNMMTcuNzM0MiAzLjc2ODMzQzE3LjQxOTEgNi42NzYyOSAxNy40MjA1IDkuNjA5ODQgMTcuNzM4MyAxMi41MTc1TDE1LjE0MzMgMTMuMTI3NUMxMy40MzU2IDEzLjUyOTUgMTEuNjQxIDEzLjMyMDIgMTAuMDcxNyAxMi41MzU4TDkuOTgxNjcgMTIuNDkwOEM4LjM4MDM0IDExLjY5IDYuNTQ1MzQgMTEuNDg4NCA0LjgwODMzIDExLjkyMjVMMi41IDEyLjVNMi41IDMuNzVWMTIuNU0yLjUgMTcuNVYxMi41IiBzdHJva2U9IiMzQTY0RkEiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==") no-repeat;
800: content: "";
801: display: flex;Report false positivePossible Base64-encoded payload (long encoded string)
Detected by automated pattern matching (rule OB-001) with medium confidence. May be a false positive.
807:
808: .header-tutorials-link::before {
>>> 809: background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE0LjY2MDggMi43NjgxNEMxNS41Nzc1IDIuODc0OCAxNi4yNSAzLjY2NTY0IDE2LjI1IDQuNTg4OTdWMTcuNDk5OEwxMCAxNC4zNzQ4TDMuNzUgMTcuNDk5OFY0LjU4ODk3QzMuNzUgMy42NjU2NCA0LjQyMTY3IDIuODc0OCA1LjMzOTE3IDIuNzY4MTRDOC40MzU5OSAyLjQwODY3IDExLjU2NCAyLjQwODY3IDE0LjY2MDggMi43NjgxNFoiIHN0cm9rZT0iIzNBNjRGQSIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K") no-repeat;
810: content: "";
811: display: flex;Report false positivePossible Base64-encoded payload (long encoded string)
Detected by automated pattern matching (rule OB-001) with medium confidence. May be a false positive.
816:
817: .header-docs-link::before {
>>> 818: background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEwIDUuMDM1MDFDOC42MjYzNCAzLjgwMjgxIDYuODQ1MzMgMy4xMjI0NiA1IDMuMTI1MDFDNC4xMjMzMyAzLjEyNTAxIDMuMjgxNjcgMy4yNzUwMSAyLjUgMy41NTE2N1YxNS40MjY3QzMuMzAzMDIgMTUuMTQzNCA0LjE0ODQ3IDE0Ljk5OTEgNSAxNUM2LjkyMDgzIDE1IDguNjczMzMgMTUuNzIyNSAxMCAxNi45MU0xMCA1LjAzNTAxQzExLjM3MzYgMy44MDI3NCAxMy4xNTQ3IDMuMTIyMzggMTUgMy4xMjUwMUMxNS44NzY3IDMuMTI1MDEgMTYuNzE4MyAzLjI3NTAxIDE3LjUgMy41NTE2N1YxNS40MjY3QzE2LjY5NyAxNS4xNDM0IDE1Ljg1MTUgMTQuOTk5MSAxNSAxNUMxMy4xNTQ3IDE0Ljk5NzUgMTEuMzczNyAxNS42Nzc4IDEwIDE2LjkxTTEwIDUuMDM1MDFWMTYuOTEiIHN0cm9rZT0iIzNBNjRGQSIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K") no-repeat;
819: content: "";
820: display: flex;Report false positivePossible Base64-encoded payload (long encoded string)
Detected by automated pattern matching (rule OB-001) with medium confidence. May be a false positive.
825:
826: .header-changelog-link::before {
>>> 827: background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yLjIzOTk3IDYuODAwMUMyLjMxMjIgNi44NjcwOCAyLjM5NjkxIDYuOTE5MTggMi40ODkyNyA2Ljk1MzQyQzIuNTgxNjIgNi45ODc2NiAyLjY3OTgyIDcuMDAzMzcgMi43NzgyNiA2Ljk5OTY2QzIuODc2NjkgNi45OTU5NCAyLjk3MzQzIDYuOTcyODggMy4wNjI5NCA2LjkzMTc3QzMuMTUyNDYgNi44OTA2NyAzLjIzMyA2LjgzMjMzIDMuMjk5OTcgNi43NjAxTDUuMjQ5OTcgNC42NjAxVjEzLjI1MDFDNS4yNDk5NyAxMy40NDkgNS4zMjg5OSAxMy42Mzk4IDUuNDY5NjQgMTMuNzgwNEM1LjYxMDI5IDEzLjkyMTEgNS44MDEwNiAxNC4wMDAxIDUuOTk5OTcgMTQuMDAwMUM2LjE5ODg4IDE0LjAwMDEgNi4zODk2NSAxMy45MjExIDYuNTMwMyAxMy43ODA0QzYuNjcwOTUgMTMuNjM5OCA2Ljc0OTk3IDEzLjQ0OSA2Ljc0OTk3IDEzLjI1MDFWNC42NjAxTDguNjk5OTcgNi43NjAxQzguNzY2OTUgNi44MzIzMyA4Ljg0NzQ5IDYuODkwNjUgOC45MzcwMSA2LjkzMTc1QzkuMDI2NTIgNi45NzI4NSA5LjEyMzI2IDYuOTk1OTIgOS4yMjE2OSA2Ljk5OTYzQzkuMzIwMTIgNy4wMDMzNSA5LjQxODMyIDYuOTg3NjQgOS41MTA2OCA2Ljk1MzRDOS42MDMwMyA2LjkxOTE2IDkuNjg3NzUgNi44NjcwNyA5Ljc1OTk3IDYuODAwMUM5LjgzMjIgNi43MzMxMiA5Ljg5MDUzIDYuNjUyNTggOS45MzE2MyA2LjU2MzA2QzkuOTcyNzMgNi40NzM1NSA5Ljk5NTc5IDYuMzc2ODEgOS45OTk1MSA2LjI3ODM4QzEwLjAwMzIgNi4xNzk5NSA5Ljk4NzUxIDYuMDgxNzUgOS45NTMyNyA1Ljk4OTRDOS45MTkwNCA1Ljg5NzA0IDkuODY2OTUgNS44MTIzMiA5Ljc5OTk3IDUuNzQwMUw2LjU0OTk3IDIuMjQwMUM2LjQ3OTc2IDIuMTY0MzcgNi4zOTQ2NyAyLjEwMzk2IDYuMzAwMDMgMi4wNjI2NEM2LjIwNTM5IDIuMDIxMzMgNi4xMDMyNCAyIDUuOTk5OTcgMkM1Ljg5NjcxIDIgNS43OTQ1NSAyLjAyMTMzIDUuNjk5OTEgMi4wNjI2NEM1LjYwNTI3IDIuMTAzOTYgNS41MjAxOCAyLjE2NDM3IDUuNDQ5OTcgMi4yNDAxTDIuMTk5OTcgNS43NDAxQzIuMTMyOTkgNS44MTIzMiAyLjA4MDg5IDUuODk3MDMgMi4wNDY2NSA1Ljk4OTM5QzIuMDEyNDEgNi4wODE3NSAxLjk5NjcgNi4xNzk5NSAyLjAwMDQxIDYuMjc4MzhDMi4wMDQxMyA2LjM3NjgyIDIuMDI3MTkgNi40NzM1NSAyLjA2ODMgNi41NjMwN0MyLjEwOTQgNi42NTI1OSAyLjE2Nzc0IDYuNzMzMTMgMi4yMzk5NyA2LjgwMDFaTTEwLjI0IDEzLjIwMDFDMTAuMTY3NyAxMy4yNjcxIDEwLjEwOTQgMTMuMzQ3NiAxMC4wNjgzIDEzLjQzNzFDMTAuMDI3MiAxMy41MjY2IDEwLjAwNDEgMTMuNjIzNCAxMC4wMDA0IDEzLjcyMThDOS45OTY3IDEzLjgyMDIgMTAuMDEyNCAxMy45MTg0IDEwLjA0NjYgMTQuMDEwOEMxMC4wODA5IDE0LjEwMzIgMTAuMTMzIDE0LjE4NzkgMTAuMiAxNC4yNjAxTDEzLjQ1IDE3Ljc2MDFDMTMuNTIwMiAxNy44MzU4IDEzLjYwNTMgMTcuODk2MiAxMy42OTk5IDE3LjkzNzZDMTMuNzk0NiAxNy45Nzg5IDEzLjg5NjcgMTguMDAwMiAxNCAxOC4wMDAyQzE0LjEwMzIgMTguMDAwMiAxNC4yMDU0IDE3Ljk3ODkgMTQuMyAxNy45Mzc2QzE0LjM5NDcgMTcuODk2MiAxNC40Nzk4IDE3LjgzNTggMTQuNTUgMTcuNzYwMUwxNy44IDE0LjI2MDFDMTcuOTM1MiAxNC4xMTQyIDE4LjAwNyAxMy45MjA2IDE3Ljk5OTUgMTMuNzIxOEMxNy45OTIgMTMuNTIzIDE3LjkwNTggMTMuMzM1NCAxNy43NiAxMy4yMDAxQzE3LjYxNDEgMTMuMDY0OCAxNy40MjA1IDEyLjk5MzEgMTcuMjIxNyAxMy4wMDA2QzE3LjAyMjkgMTMuMDA4MSAxNi44MzUyIDEzLjA5NDIgMTYuNyAxMy4yNDAxTDE0Ljc1IDE1LjM0MDFWNi43NTAxQzE0Ljc1IDYuNTUxMTkgMTQuNjcxIDYuMzYwNDIgMTQuNTMwMyA2LjIxOTc3QzE0LjM4OTYgNi4wNzkxMiAxNC4xOTg5IDYuMDAwMSAxNCA2LjAwMDFDMTMuODAxMSA2LjAwMDEgMTMuNjEwMyA2LjA3OTEyIDEzLjQ2OTYgNi4yMTk3N0MxMy4zMjkgNi4zNjA0MiAxMy4yNSA2LjU1MTE5IDEzLjI1IDYuNzUwMVYxNS4zNDAxTDExLjMgMTMuMjQwMUMxMS4yMzMgMTMuMTY3OSAxMS4xNTI1IDEzLjEwOTUgMTEuMDYyOSAxMy4wNjg0QzEwLjk3MzQgMTMuMDI3MyAxMC44NzY3IDEzLjAwNDMgMTAuNzc4MyAxMy4wMDA1QzEwLjY3OTggMTIuOTk2OCAxMC41ODE2IDEzLjAxMjUgMTAuNDg5MyAxMy4wNDY4QzEwLjM5NjkgMTMuMDgxIDEwLjMxMjIgMTMuMTMzMSAxMC4yNCAxMy4yMDAxWiIgZmlsbD0iIzNBNjRGQSIvPgo8L3N2Zz4K") no-repeat;
828: content: "";
829: display: flex;Report false positivePossible Base64-encoded payload (long encoded string)
Detected by automated pattern matching (rule OB-001) with medium confidence. May be a false positive.
834:
835: [data-theme='dark'] .header-get-started-link::before {
>>> 836: background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIuNSAyLjVWMy43NU0yLjUgMy43NUw0LjgwODMzIDMuMTcyNUM2LjU0NTM0IDIuNzM4MzcgOC4zODAzNCAyLjkzOTk2IDkuOTgxNjcgMy43NDA4M0wxMC4wNzE3IDMuNzg1ODNDMTEuNjQwNiA0LjU3MDI1IDEzLjQzNDkgNC43Nzk5MSAxNS4xNDI1IDQuMzc4MzNMMTcuNzM0MiAzLjc2ODMzQzE3LjQxOTEgNi42NzYyOSAxNy40MjA1IDkuNjA5ODQgMTcuNzM4MyAxMi41MTc1TDE1LjE0MzMgMTMuMTI3NUMxMy40MzU2IDEzLjUyOTUgMTEuNjQxIDEzLjMyMDIgMTAuMDcxNyAxMi41MzU4TDkuOTgxNjcgMTIuNDkwOEM4LjM4MDM0IDExLjY5IDYuNTQ1MzQgMTEuNDg4NCA0LjgwODMzIDExLjkyMjVMMi41IDEyLjVNMi41IDMuNzVWMTIuNU0yLjUgMTcuNVYxMi41IiBzdHJva2U9IiMxOEMzRkEiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==") no-repeat;
837: content: "";
838: display: flex;Report false positivePossible Base64-encoded payload (long encoded string)
Detected by automated pattern matching (rule OB-001) with medium confidence. May be a false positive.
844:
845: [data-theme='dark'] .header-tutorials-link::before {
>>> 846: background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE0LjY2MDggMi43NjgxNEMxNS41Nzc1IDIuODc0OCAxNi4yNSAzLjY2NTY0IDE2LjI1IDQuNTg4OTdWMTcuNDk5OEwxMCAxNC4zNzQ4TDMuNzUgMTcuNDk5OFY0LjU4ODk3QzMuNzUgMy42NjU2NCA0LjQyMTY3IDIuODc0OCA1LjMzOTE3IDIuNzY4MTRDOC40MzU5OSAyLjQwODY3IDExLjU2NCAyLjQwODY3IDE0LjY2MDggMi43NjgxNFoiIHN0cm9rZT0iIzE4QzNGQSIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K") no-repeat;
847: content: "";
848: display: flex;Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positivePossible Base64-encoded payload (long encoded string)
Detected by automated pattern matching (rule OB-001) with medium confidence. May be a false positive.
853:
854: [data-theme='dark'] .header-docs-link::before {
>>> 855: background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEwIDUuMDM1MDFDOC42MjYzNCAzLjgwMjgxIDYuODQ1MzMgMy4xMjI0NiA1IDMuMTI1MDFDNC4xMjMzMyAzLjEyNTAxIDMuMjgxNjcgMy4yNzUwMSAyLjUgMy41NTE2N1YxNS40MjY3QzMuMzAzMDIgMTUuMTQzNCA0LjE0ODQ3IDE0Ljk5OTEgNSAxNUM2LjkyMDgzIDE1IDguNjczMzMgMTUuNzIyNSAxMCAxNi45MU0xMCA1LjAzNTAxQzExLjM3MzYgMy44MDI3NCAxMy4xNTQ3IDMuMTIyMzggMTUgMy4xMjUwMUMxNS44NzY3IDMuMTI1MDEgMTYuNzE4MyAzLjI3NTAxIDE3LjUgMy41NTE2N1YxNS40MjY3QzE2LjY5NyAxNS4xNDM0IDE1Ljg1MTUgMTQuOTk5MSAxNSAxNUMxMy4xNTQ3IDE0Ljk5NzUgMTEuMzczNyAxNS42Nzc4IDEwIDE2LjkxTTEwIDUuMDM1MDFWMTYuOTEiIHN0cm9rZT0iIzE4QzNGQSIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K") no-repeat;
856: content: "";
857: display: flex;Report false positivePossible Base64-encoded payload (long encoded string)
Detected by automated pattern matching (rule OB-001) with medium confidence. May be a false positive.
862:
863: [data-theme='dark'] .header-changelog-link::before {
>>> 864: background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yLjIzOTk3IDYuODAwMUMyLjMxMjIgNi44NjcwOCAyLjM5NjkxIDYuOTE5MTggMi40ODkyNyA2Ljk1MzQyQzIuNTgxNjIgNi45ODc2NiAyLjY3OTgyIDcuMDAzMzcgMi43NzgyNiA2Ljk5OTY2QzIuODc2NjkgNi45OTU5NCAyLjk3MzQzIDYuOTcyODggMy4wNjI5NCA2LjkzMTc3QzMuMTUyNDYgNi44OTA2NyAzLjIzMyA2LjgzMjMzIDMuMjk5OTcgNi43NjAxTDUuMjQ5OTcgNC42NjAxVjEzLjI1MDFDNS4yNDk5NyAxMy40NDkgNS4zMjg5OSAxMy42Mzk4IDUuNDY5NjQgMTMuNzgwNEM1LjYxMDI5IDEzLjkyMTEgNS44MDEwNiAxNC4wMDAxIDUuOTk5OTcgMTQuMDAwMUM2LjE5ODg4IDE0LjAwMDEgNi4zODk2NSAxMy45MjExIDYuNTMwMyAxMy43ODA0QzYuNjcwOTUgMTMuNjM5OCA2Ljc0OTk3IDEzLjQ0OSA2Ljc0OTk3IDEzLjI1MDFWNC42NjAxTDguNjk5OTcgNi43NjAxQzguNzY2OTUgNi44MzIzMyA4Ljg0NzQ5IDYuODkwNjUgOC45MzcwMSA2LjkzMTc1QzkuMDI2NTIgNi45NzI4NSA5LjEyMzI2IDYuOTk1OTIgOS4yMjE2OSA2Ljk5OTYzQzkuMzIwMTIgNy4wMDMzNSA5LjQxODMyIDYuOTg3NjQgOS41MTA2OCA2Ljk1MzRDOS42MDMwMyA2LjkxOTE2IDkuNjg3NzUgNi44NjcwNyA5Ljc1OTk3IDYuODAwMUM5LjgzMjIgNi43MzMxMiA5Ljg5MDUzIDYuNjUyNTggOS45MzE2MyA2LjU2MzA2QzkuOTcyNzMgNi40NzM1NSA5Ljk5NTc5IDYuMzc2ODEgOS45OTk1MSA2LjI3ODM4QzEwLjAwMzIgNi4xNzk5NSA5Ljk4NzUxIDYuMDgxNzUgOS45NTMyNyA1Ljk4OTRDOS45MTkwNCA1Ljg5NzA0IDkuODY2OTUgNS44MTIzMiA5Ljc5OTk3IDUuNzQwMUw2LjU0OTk3IDIuMjQwMUM2LjQ3OTc2IDIuMTY0MzcgNi4zOTQ2NyAyLjEwMzk2IDYuMzAwMDMgMi4wNjI2NEM2LjIwNTM5IDIuMDIxMzMgNi4xMDMyNCAyIDUuOTk5OTcgMkM1Ljg5NjcxIDIgNS43OTQ1NSAyLjAyMTMzIDUuNjk5OTEgMi4wNjI2NEM1LjYwNTI3IDIuMTAzOTYgNS41MjAxOCAyLjE2NDM3IDUuNDQ5OTcgMi4yNDAxTDIuMTk5OTcgNS43NDAxQzIuMTMyOTkgNS44MTIzMiAyLjA4MDg5IDUuODk3MDMgMi4wNDY2NSA1Ljk4OTM5QzIuMDEyNDEgNi4wODE3NSAxLjk5NjcgNi4xNzk5NSAyLjAwMDQxIDYuMjc4MzhDMi4wMDQxMyA2LjM3NjgyIDIuMDI3MTkgNi40NzM1NSAyLjA2ODMgNi41NjMwN0MyLjEwOTQgNi42NTI1OSAyLjE2Nzc0IDYuNzMzMTMgMi4yMzk5NyA2LjgwMDFaTTEwLjI0IDEzLjIwMDFDMTAuMTY3NyAxMy4yNjcxIDEwLjEwOTQgMTMuMzQ3NiAxMC4wNjgzIDEzLjQzNzFDMTAuMDI3MiAxMy41MjY2IDEwLjAwNDEgMTMuNjIzNCAxMC4wMDA0IDEzLjcyMThDOS45OTY3IDEzLjgyMDIgMTAuMDEyNCAxMy45MTg0IDEwLjA0NjYgMTQuMDEwOEMxMC4wODA5IDE0LjEwMzIgMTAuMTMzIDE0LjE4NzkgMTAuMiAxNC4yNjAxTDEzLjQ1IDE3Ljc2MDFDMTMuNTIwMiAxNy44MzU4IDEzLjYwNTMgMTcuODk2MiAxMy42OTk5IDE3LjkzNzZDMTMuNzk0NiAxNy45Nzg5IDEzLjg5NjcgMTguMDAwMiAxNCAxOC4wMDAyQzE0LjEwMzIgMTguMDAwMiAxNC4yMDU0IDE3Ljk3ODkgMTQuMyAxNy45Mzc2QzE0LjM5NDcgMTcuODk2MiAxNC40Nzk4IDE3LjgzNTggMTQuNTUgMTcuNzYwMUwxNy44IDE0LjI2MDFDMTcuOTM1MiAxNC4xMTQyIDE4LjAwNyAxMy45MjA2IDE3Ljk5OTUgMTMuNzIxOEMxNy45OTIgMTMuNTIzIDE3LjkwNTggMTMuMzM1NCAxNy43NiAxMy4yMDAxQzE3LjYxNDEgMTMuMDY0OCAxNy40MjA1IDEyLjk5MzEgMTcuMjIxNyAxMy4wMDA2QzE3LjAyMjkgMTMuMDA4MSAxNi44MzUyIDEzLjA5NDIgMTYuNyAxMy4yNDAxTDE0Ljc1IDE1LjM0MDFWNi43NTAxQzE0Ljc1IDYuNTUxMTkgMTQuNjcxIDYuMzYwNDIgMTQuNTMwMyA2LjIxOTc3QzE0LjM4OTYgNi4wNzkxMiAxNC4xOTg5IDYuMDAwMSAxNCA2LjAwMDFDMTMuODAxMSA2LjAwMDEgMTMuNjEwMyA2LjA3OTEyIDEzLjQ2OTYgNi4yMTk3N0MxMy4zMjkgNi4zNjA0MiAxMy4yNSA2LjU1MTE5IDEzLjI1IDYuNzUwMVYxNS4zNDAxTDExLjMgMTMuMjQwMUMxMS4yMzMgMTMuMTY3OSAxMS4xNTI1IDEzLjEwOTUgMTEuMDYyOSAxMy4wNjg0QzEwLjk3MzQgMTMuMDI3MyAxMC44NzY3IDEzLjAwNDMgMTAuNzc4MyAxMy4wMDA1QzEwLjY3OTggMTIuOTk2OCAxMC41ODE2IDEzLjAxMjUgMTAuNDg5MyAxMy4wNDY4QzEwLjM5NjkgMTMuMDgxIDEwLjMxMjIgMTMuMTMzMSAxMC4yNCAxMy4yMDAxWiIgZmlsbD0iIzE4QzNGQSIvPgo8L3N2Zz4K") no-repeat;
865: content: "";
866: display: flex;Report false positivePossible Base64-encoded payload (long encoded string)
Detected by automated pattern matching (rule OB-001) with medium confidence. May be a false positive.
981: .navbar__logo::before {
982: content: '';
>>> 983: background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ4IiBoZWlnaHQ9IjM1IiB2aWV3Qm94PSIwIDAgMTQ4IDM1IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNODQuMjAzOSAyNS45Mjc3QzgzLjc2NzEgMjUuNDMxOCA4My40NTA3IDI0Ljg2NDYgODMuMjU4MSAyNC4yMjI3QzgzLjA2MiAyMy41ODA5IDgyLjk2OTEgMjIuNzE4MiA4Mi45NjkxIDIxLjYzMTRWNS4zNDk4NUg4Ni41ODRWMjEuMjQ3NkM4Ni41ODQgMjIuNDgwNSA4Ni43MTgxIDIzLjQzMTQgODYuOTkzMiAyNC4xMDM5Qzg3LjI2ODQgMjQuNzU5MyA4Ny42MjI3IDI1LjMxOTcgODguMDU5NSAyNS43ODVWMjUuOTMxSDg0LjIwMDVIODQuMjAzOVYyNS45Mjc3WiIgZmlsbD0iIzA4MDIxNiIvPgo8cGF0aCBkPSJNOTIuMzUxOCAyNS45Mjc3QzkxLjk3NyAyNS40OTYzIDkxLjY4MTIgMjQuOTc2NyA5MS40NTQyIDI0LjM2ODhDOTEuMjQ0MyAyMy43NjA5IDkxLjEzNzcgMjIuODQ3MyA5MS4xMzc3IDIxLjYzMTRWMTQuMzY2OUg4OS4xNDYzVjExLjUzMUg5MS4xODU5VjcuNTQ3MjJIOTQuNzA3OFYxMS41MzFIOTcuMTA4NVYxNC4zNjY5SDk0LjcyODVWMjEuMjIzOUM5NC43Mjg1IDIyLjUwMDkgOTQuODc2NCAyMy40NzkgOTUuMTY1MyAyNC4xNTE0Qzk1LjQ1NzYgMjQuODA2OSA5NS44MDUgMjUuMzUwMyA5Ni4yMTA5IDI1Ljc4NVYyNS45MzFIOTIuMzUxOFYyNS45Mjc3WiIgZmlsbD0iIzA4MDIxNiIvPgo8cGF0aCBkPSJNNDIuNDgwNSAxMS41MTc0SDQ1LjkxNjRWMTMuMjY5OUg0Ni4xMDlDNDYuNzQ1MyAxMi4xNzI5IDQ4LjA3NjQgMTEuMTYwOCA1MC4wNzEyIDExLjE2MDhDNTIuMDY2MSAxMS4xNjA4IDUzLjU2MjIgMTIuMDA5OSA1NC4zOTQ2IDEzLjM1MTRINTQuNjE4MUM1NS42MTU1IDExLjg0NjkgNTcuMDU2NyAxMS4xNjA4IDU4Ljk0MTQgMTEuMTYwOEM2Mi4xNTczIDExLjE2MDggNjQuMjYyMiAxMy4zMjc2IDY0LjI2MjIgMTYuMzYzOFYyNS45MjQzSDYwLjY2MTJWMTcuNTk2N0M2MC42NjEyIDE1LjYyMzUgNTkuNzQ2MyAxNC40OTkzIDU4LjAzIDE0LjQ5OTNDNTYuMzEzNyAxNC40OTkzIDU1LjIwMjggMTUuNzMyMSA1NS4yMDI4IDE3LjY3ODJWMjUuOTI0M0g1MS41OTgzVjE3LjM3NTlDNTEuNTk4MyAxNS42MjM1IDUwLjU0NTkgMTQuNDk5MyA0OC44ODQ2IDE0LjQ5OTNDNDcuMjIzNCAxNC40OTkzIDQ2LjA4ODQgMTUuODEzNyA0Ni4wODg0IDE3LjY0NzZWMjUuOTI0M0g0Mi40ODczVjExLjUxNzRINDIuNDgwNVoiIGZpbGw9IiMwODAyMTYiLz4KPHBhdGggZD0iTTY2LjMzOTYgMTguODAyM0M2Ni4zMzk2IDE0LjI1NDggNjkuNDE0NCAxMS4xNTc0IDczLjY4MjcgMTEuMTU3NEM3OC4zNjM4IDExLjE1NzQgODAuOTEyNCAxNC41ODQyIDgwLjkxMjQgMTguNjM5M1YxOS43NjAxSDY5LjgyNzJDNjkuOTM3MiAyMS45NTA3IDcxLjQ2NDMgMjMuNDMxNCA3My43ODk0IDIzLjQzMTRDNzUuNTYwNyAyMy40MzE0IDc2LjkyMjcgMjIuNjA2MSA3Ny40MjE0IDIxLjQzMUg4MC43NzQ4QzgwLjA1NiAyNC4zNjU0IDc3LjQ0ODkgMjYuMjgwOSA3My42NzkzIDI2LjI4MDlDNjkuMzgzNSAyNi4yODA5IDY2LjMzNjIgMjMuMTAyIDY2LjMzNjIgMTguNzk5SDY2LjMzOTZWMTguODAyM1pNNzcuNDc5OSAxNy4yNDM1Qzc3LjMxNDggMTUuMjk3NCA3NS43OTExIDE0LjAxMDMgNzMuNjgyNyAxNC4wMTAzQzcxLjU3NDQgMTQuMDEwMyA3MC4xMDkyIDE1LjQzMzMgNjkuODg1NiAxNy4yNDM1SDc3LjQ3OTlaIiBmaWxsPSIjMDgwMjE2Ii8+CjxwYXRoIGQ9Ik05OC43ODcgMTguODAyM0M5OC43ODcgMTQuMjgyIDEwMS41NTkgMTEuMTU3NCAxMDUuNTQ5IDExLjE1NzRDMTA4LjA3IDExLjE1NzQgMTA5LjQ4NCAxMi42MzgyIDEwOS45ODIgMTMuMzc1MkgxMTAuMTc1VjExLjUxMDZIMTEzLjc3OVYyNS45MjA5SDExMC4yM1YyNC4wODY5SDExMC4wMzdDMTA5LjYyMSAyNC42OTE0IDEwOC4zMTggMjYuMjc3NSAxMDUuNjU5IDI2LjI3NzVDMTAxLjU4NyAyNi4yNzc1IDk4Ljc4NyAyMy4yNjUgOTguNzg3IDE4Ljc5NTZWMTguODAyM1pNMTEwLjI2MSAxOC43NTE0QzExMC4yNjEgMTYuMDM3OCAxMDguNiAxNC4zOTQgMTA2LjMyNiAxNC4zOTRDMTA0LjA1MyAxNC4zOTQgMTAyLjQ0NiAxNi4yMDA4IDEwMi40NDYgMTguNzUxNEMxMDIuNDQ2IDIxLjMwMiAxMDQuMDI1IDIzLjA3ODIgMTA2LjM1NCAyMy4wNzgyQzEwOC42ODIgMjMuMDc4MiAxMTAuMjU3IDIxLjE2MjcgMTEwLjI1NyAxOC43NTE0SDExMC4yNjFaIiBmaWxsPSIjMDgwMjE2Ii8+CjxwYXRoIGQ9Ik0xMTYuNzc1IDExLjUxNzRIMTIwLjIxMVYxMy4yNjk5SDEyMC40MDRDMTIwLjk4NSAxMi4yMDAxIDEyMi40MjkgMTEuMTYwOCAxMjQuNTA3IDExLjE2MDhDMTI3Ljc3NCAxMS4xNjA4IDEyOS43NjkgMTMuNDM2MyAxMjkuNzY5IDE2LjUwMzFWMjUuOTI3N0gxMjYuMTY4VjE3LjQzMzdDMTI2LjE2OCAxNS42ODEyIDEyNS4wMzMgMTQuNDk5MyAxMjMuMzY4IDE0LjQ5OTNDMTIxLjYyNSAxNC40OTkzIDEyMC4zNzYgMTUuODcxNCAxMjAuMzc2IDE3LjY3ODJWMjUuOTI0M0gxMTYuNzc1VjExLjUxNzRaIiBmaWxsPSIjMDgwMjE2Ii8+CjxwYXRoIGQ9Ik0xMzEuODQ3IDE4LjcyMDhDMTMxLjg0NyAxNC40NDUgMTM1LjAwNyAxMS4xNTc0IDEzOS42MDYgMTEuMTU3NEMxNDQuMjA0IDExLjE1NzQgMTQ3LjM2NSAxNC40NDUgMTQ3LjM2NSAxOC43MjA4QzE0Ny4zNjUgMjIuOTk2NyAxNDQuMTQ5IDI2LjI4NDMgMTM5LjYwNiAyNi4yODQzQzEzNS4wNjIgMjYuMjg0MyAxMzEuODQ3IDIzLjAyMzkgMTMxLjg0NyAxOC43MjA4Wk0xNDMuNzA5IDE4LjcyMDhDMTQzLjcwOSAxNi4yMjggMTQxLjk4OSAxNC4zOTQgMTM5LjYwNiAxNC4zOTRDMTM3LjIyMiAxNC4zOTQgMTM1LjUwMyAxNi4yMjggMTM1LjUwMyAxOC43MjA4QzEzNS41MDMgMjEuMjEzNyAxMzcuMjIyIDIzLjA0NzYgMTM5LjYwNiAyMy4wNDc2QzE0MS45ODkgMjMuMDQ3NiAxNDMuNzA5IDIxLjI0MDggMTQzLjcwOSAxOC43MjA4WiIgZmlsbD0iIzA4MDIxNiIvPgo8cGF0aCBkPSJNMzUuOTggNi44MDAwNUMzNC41OTczIDguNjU3NzkgMzEuNjI1NyA5LjA3NTUyIDMxLjI5NTUgNy45NjgzNUMzMC45NTg0IDYuODYxMTggMzIuNjg4NSA2LjA5MzYzIDMzLjU5NjUgNS45ODgzNEMyOC4zMzc2IDQuNTY1MzIgMjkuMjkwMyA4LjM1MjEzIDI2LjM4NCA4LjcxNTUyQzI3Ljk5MDIgOS41MDM0NSAyOS42NjE4IDEwLjgxNzggMzAuNzg5OSAxMC45Nzc0QzMyLjcyNjMgMTEuMjU1OSAzNS40NCAxMC4xOTI5IDM1Ljk4IDYuNzk2NjUiIGZpbGw9IiMwODAyMTYiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS4yMzY5IDIuMDQ1MzFDMTUuMTM3MiAxLjQ1Nzc2IDE0LjcyNDQgMS4yNzA5NyAxNC4wNzEgMS4wMDk0NkgxNC4wNjc1QzE4LjMzNTggLTAuOTg3NTI2IDIxLjA1OTggMC40NTI0NzggMjIuMTYwNCAxLjM1MjQ4QzIyLjc2OTIgMS44NTE3MyAyMi45OTk3IDIuMzI3MiAyMy4yMTk4IDIuNzc1NUMyMy4zOTUyIDMuMTM1NTEgMjMuNTYwMyAzLjQ3ODUzIDIzLjkwNzcgMy44MDQ1NkMyNC40MjcgNC4yOTM2MiAyNS4zOTY5IDQuOTg5ODUgMjUuNzg1NiA1LjI2ODM0QzI1LjgyMzQgNS4yOTU1MSAyNS44NTc4IDUuMzE5MjkgMjUuODg1MyA1LjMzOTY2QzI2LjE3NDIgNS41NTAyMyAyNi4yOTggNi4xMjc1OSAyNi4wMzMyIDYuNTI0OTVDMjUuNzY4NCA2LjkxODkxIDI1LjA3MzYgNy43MzA2MSAyNC4yMzQ0IDcuNTk0NzdDMjMuMzk4NiA3LjQ1ODkyIDIxLjU2NTQgNy4xNDMwNyAyMC4wNTIxIDYuODg0OTVDMTguNTQyMiA2LjYyMzQ0IDE3LjQ5MzIgNS43ODQ1NyAxNy40OTMyIDUuNzg0NTdDMTcuMzA0IDYuODQwOCAxNy45NDM3IDcuNzc0NzcgMTkuMTQ3NSA4LjA4NzIyQzE5LjM4MTQgOC4xNDgzNSAxOS42NiA4LjIwOTQ4IDE5Ljk3NjQgOC4yODA4QzIxLjM5MzUgOC42MDAwNSAyMy41MTIxIDkuMDc4OTIgMjUuMjY2MiAxMC4xOTI5QzI3LjY0NjMgMTEuNzA0MiAyOS41MzExIDE0LjA5NTIgMzAuMjY3MSAxNy43NjY1QzMxLjAwMzIgMjEuNDM3OCAzMC4wODQ4IDI5LjIxNTIgMjMuNTUgMzIuNDA3N0MxNy4wMTUxIDM1LjYwMDEgMTAuODI0MiAzMy4xMjc3IDEwLjgyNDIgMzMuMTI3N0MxNi42ODE1IDMyLjg1NiAyMC4xMTA2IDMwLjQ5MjIgMjEuNDIxIDI4LjkxOTdDMjIuMzM5MyAyNy44MTYgMjMuMjA2IDI1LjgzMjYgMjIuNjc5OCAyMy41NDY5QzIyLjEwMiAyMS4wNDA1IDE5Ljk3MyAxOS4xMzg2IDE3LjgwNjIgMTkuNDU3OEMxNS42MzkzIDE5Ljc3NzEgMTQuNzIxIDIyLjEwNjkgMTQuMzE1MiAyMy4yMzc4QzEzLjkwOTMgMjQuMzY4OCAxMy4yNzY1IDI1LjIwNDMgMTIuNzIyNyAyNS4yOTZDMTIuMTY5IDI1LjM4NzcgMTEuMzc0NSAyNS40MTgyIDEwLjY3NjMgMjMuNzQzOUM5Ljk3ODA3IDIyLjA2OTUgOC4xMTczNSAxOS4wNzA3IDUuNjQ3ODUgMjAuMTk4MkMzLjE3ODM2IDIxLjMyMjQgMi43MzEyNCAyNi41MzU2IDIuNzMxMjQgMjYuNTM1NkMtMC4zMDIzMTggMjEuNzI2NSAtMS4wNzI3NSAxNS41NjIzIDEuNzcxNjQgOS41NzQ3N0M0LjYxNjAzIDMuNTg3MjEgMTAuNTQ5IDEuMzgzMDUgMTAuNTQ5IDEuMzgzMDVDOS40ODYyMyAyLjc1MTczIDguMzEzMzkgNi44OTE3NCA5LjUwNjg3IDEwLjYxNzRDMTAuNzAwMyAxNC4zNDMxIDEzLjY0NDUgMTYuMjExIDE1LjMzMzIgMTYuNDYyM0MxNy4wMjIgMTYuNzE3MSAxOS4wMzQgMTUuNzIyIDE4LjkyNCAxMy42Nzc0QzE4LjgzNDUgMTEuOTk5NyAxNy4zODMxIDEwLjgwNzYgMTUuODQ1NyAxMC4xMDhDMTQuNzQ4NSA5LjYwODczIDEzLjY2MTcgOC40NjA4IDEzLjU4NiA2LjY5ODE2QzEzLjUxMDMgNC45MzIxMiAxNC4yODc2IDMuODE4MTUgMTQuNjY2IDMuMzczMjRDMTQuOTY1MiAzLjAyMzQzIDE1LjMxNiAyLjU0MTE2IDE1LjIzIDIuMDQxOTJMMTUuMjM2OSAyLjA0NTMxWk0xOS41MTkgMy43NDAwNEMxOC4yNzM5IDMuNzQwMDQgMTcuNzA2NCA0LjM2ODM0IDE3LjcwNjQgNC4zNjgzNEMxNy43MDk5IDQuMzM3NzcgMTcuNzEzMyA0LjMwMDQxIDE3LjcyMDIgNC4yNTk2NkMxNy43NzE4IDMuODE0NzUgMTcuODgxOCAyLjg4NzU4IDE4LjMzOTMgMi40MzU4OEMxOC44MzggMS45NDM0MyAxOS42ODA2IDEuNTczMjQgMjAuODY3MiAyLjQzNTg4QzIyLjA1MzggMy4yOTg1MiAyMi40MjUzIDQuODcwOTggMjIuNDI1MyA0Ljg3MDk4QzIyLjAwOTEgNC41MjExNyAyMC43Njc1IDMuNzQwMDQgMTkuNTIyNCAzLjc0MDA0SDE5LjUxOVoiIGZpbGw9IiMwODAyMTYiLz4KPC9zdmc+Cg==");
984: background-size: contain;
985: background-repeat: no-repeat;Report false positivePossible Base64-encoded payload (long encoded string)
Detected by automated pattern matching (rule OB-001) with medium confidence. May be a false positive.
991: [data-theme='dark'] .navbar__logo::before {
992: content: '';
>>> 993: background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ4IiBoZWlnaHQ9IjM1IiB2aWV3Qm94PSIwIDAgMTQ4IDM1IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNODQuMjAzOSAyNS45Mjc3QzgzLjc2NzEgMjUuNDMxOCA4My40NTA3IDI0Ljg2NDYgODMuMjU4MSAyNC4yMjI3QzgzLjA2MiAyMy41ODA5IDgyLjk2OTEgMjIuNzE4MiA4Mi45NjkxIDIxLjYzMTRWNS4zNDk4NUg4Ni41ODRWMjEuMjQ3NkM4Ni41ODQgMjIuNDgwNSA4Ni43MTgxIDIzLjQzMTQgODYuOTkzMiAyNC4xMDM5Qzg3LjI2ODQgMjQuNzU5MyA4Ny42MjI3IDI1LjMxOTcgODguMDU5NSAyNS43ODVWMjUuOTMxSDg0LjIwMDVIODQuMjAzOVYyNS45Mjc3WiIgZmlsbD0iI2ZmZmZmZiIvPgo8cGF0aCBkPSJNOTIuMzUxOCAyNS45Mjc3QzkxLjk3NyAyNS40OTYzIDkxLjY4MTIgMjQuOTc2NyA5MS40NTQyIDI0LjM2ODhDOTEuMjQ0MyAyMy43NjA5IDkxLjEzNzcgMjIuODQ3MyA5MS4xMzc3IDIxLjYzMTRWMTQuMzY2OUg4OS4xNDYzVjExLjUzMUg5MS4xODU5VjcuNTQ3MjJIOTQuNzA3OFYxMS41MzFIOTcuMTA4NVYxNC4zNjY5SDk0LjcyODVWMjEuMjIzOUM5NC43Mjg1IDIyLjUwMDkgOTQuODc2NCAyMy40NzkgOTUuMTY1MyAyNC4xNTE0Qzk1LjQ1NzYgMjQuODA2OSA5NS44MDUgMjUuMzUwMyA5Ni4yMTA5IDI1Ljc4NVYyNS45MzFIOTIuMzUxOFYyNS45Mjc3WiIgZmlsbD0iI2ZmZmZmZiIvPgo8cGF0aCBkPSJNNDIuNDgwNSAxMS41MTc0SDQ1LjkxNjRWMTMuMjY5OUg0Ni4xMDlDNDYuNzQ1MyAxMi4xNzI5IDQ4LjA3NjQgMTEuMTYwOCA1MC4wNzEyIDExLjE2MDhDNTIuMDY2MSAxMS4xNjA4IDUzLjU2MjIgMTIuMDA5OSA1NC4zOTQ2IDEzLjM1MTRINTQuNjE4MUM1NS42MTU1IDExLjg0NjkgNTcuMDU2NyAxMS4xNjA4IDU4Ljk0MTQgMTEuMTYwOEM2Mi4xNTczIDExLjE2MDggNjQuMjYyMiAxMy4zMjc2IDY0LjI2MjIgMTYuMzYzOFYyNS45MjQzSDYwLjY2MTJWMTcuNTk2N0M2MC42NjEyIDE1LjYyMzUgNTkuNzQ2MyAxNC40OTkzIDU4LjAzIDE0LjQ5OTNDNTYuMzEzNyAxNC40OTkzIDU1LjIwMjggMTUuNzMyMSA1NS4yMDI4IDE3LjY3ODJWMjUuOTI0M0g1MS41OTgzVjE3LjM3NTlDNTEuNTk4MyAxNS42MjM1IDUwLjU0NTkgMTQuNDk5MyA0OC44ODQ2IDE0LjQ5OTNDNDcuMjIzNCAxNC40OTkzIDQ2LjA4ODQgMTUuODEzNyA0Ni4wODg0IDE3LjY0NzZWMjUuOTI0M0g0Mi40ODczVjExLjUxNzRINDIuNDgwNVoiIGZpbGw9IiNmZmZmZmYiLz4KPHBhdGggZD0iTTY2LjMzOTYgMTguODAyM0M2Ni4zMzk2IDE0LjI1NDggNjkuNDE0NCAxMS4xNTc0IDczLjY4MjcgMTEuMTU3NEM3OC4zNjM4IDExLjE1NzQgODAuOTEyNCAxNC41ODQyIDgwLjkxMjQgMTguNjM5M1YxOS43NjAxSDY5LjgyNzJDNjkuOTM3MiAyMS45NTA3IDcxLjQ2NDMgMjMuNDMxNCA3My43ODk0IDIzLjQzMTRDNzUuNTYwNyAyMy40MzE0IDc2LjkyMjcgMjIuNjA2MSA3Ny40MjE0IDIxLjQzMUg4MC43NzQ4QzgwLjA1NiAyNC4zNjU0IDc3LjQ0ODkgMjYuMjgwOSA3My42NzkzIDI2LjI4MDlDNjkuMzgzNSAyNi4yODA5IDY2LjMzNjIgMjMuMTAyIDY2LjMzNjIgMTguNzk5SDY2LjMzOTZWMTguODAyM1pNNzcuNDc5OSAxNy4yNDM1Qzc3LjMxNDggMTUuMjk3NCA3NS43OTExIDE0LjAxMDMgNzMuNjgyNyAxNC4wMTAzQzcxLjU3NDQgMTQuMDEwMyA3MC4xMDkyIDE1LjQzMzMgNjkuODg1NiAxNy4yNDM1SDc3LjQ3OTlaIiBmaWxsPSIjZmZmZmZmIi8+CjxwYXRoIGQ9Ik05OC43ODcgMTguODAyM0M5OC43ODcgMTQuMjgyIDEwMS41NTkgMTEuMTU3NCAxMDUuNTQ5IDExLjE1NzRDMTA4LjA3IDExLjE1NzQgMTA5LjQ4NCAxMi42MzgyIDEwOS45ODIgMTMuMzc1MkgxMTAuMTc1VjExLjUxMDZIMTEzLjc3OVYyNS45MjA5SDExMC4yM1YyNC4wODY5SDExMC4wMzdDMTA5LjYyMSAyNC42OTE0IDEwOC4zMTggMjYuMjc3NSAxMDUuNjU5IDI2LjI3NzVDMTAxLjU4NyAyNi4yNzc1IDk4Ljc4NyAyMy4yNjUgOTguNzg3IDE4Ljc5NTZWMTguODAyM1pNMTEwLjI2MSAxOC43NTE0QzExMC4yNjEgMTYuMDM3OCAxMDguNiAxNC4zOTQgMTA2LjMyNiAxNC4zOTRDMTA0LjA1MyAxNC4zOTQgMTAyLjQ0NiAxNi4yMDA4IDEwMi40NDYgMTguNzUxNEMxMDIuNDQ2IDIxLjMwMiAxMDQuMDI1IDIzLjA3ODIgMTA2LjM1NCAyMy4wNzgyQzEwOC42ODIgMjMuMDc4MiAxMTAuMjU3IDIxLjE2MjcgMTEwLjI1NyAxOC43NTE0SDExMC4yNjFaIiBmaWxsPSIjZmZmZmZmIi8+CjxwYXRoIGQ9Ik0xMTYuNzc1IDExLjUxNzRIMTIwLjIxMVYxMy4yNjk5SDEyMC40MDRDMTIwLjk4NSAxMi4yMDAxIDEyMi40MjkgMTEuMTYwOCAxMjQuNTA3IDExLjE2MDhDMTI3Ljc3NCAxMS4xNjA4IDEyOS43NjkgMTMuNDM2MyAxMjkuNzY5IDE2LjUwMzFWMjUuOTI3N0gxMjYuMTY4VjE3LjQzMzdDMTI2LjE2OCAxNS42ODEyIDEyNS4wMzMgMTQuNDk5MyAxMjMuMzY4IDE0LjQ5OTNDMTIxLjYyNSAxNC40OTkzIDEyMC4zNzYgMTUuODcxNCAxMjAuMzc2IDE3LjY3ODJWMjUuOTI0M0gxMTYuNzc1VjExLjUxNzRaIiBmaWxsPSIjZmZmZmZmIi8+CjxwYXRoIGQ9Ik0xMzEuODQ3IDE4LjcyMDhDMTMxLjg0NyAxNC40NDUgMTM1LjAwNyAxMS4xNTc0IDEzOS42MDYgMTEuMTU3NEMxNDQuMjA0IDExLjE1NzQgMTQ3LjM2NSAxNC40NDUgMTQ3LjM2NSAxOC43MjA4QzE0Ny4zNjUgMjIuOTk2NyAxNDQuMTQ5IDI2LjI4NDMgMTM5LjYwNiAyNi4yODQzQzEzNS4wNjIgMjYuMjg0MyAxMzEuODQ3IDIzLjAyMzkgMTMxLjg0NyAxOC43MjA4Wk0xNDMuNzA5IDE4LjcyMDhDMTQzLjcwOSAxNi4yMjggMTQxLjk4OSAxNC4zOTQgMTM5LjYwNiAxNC4zOTRDMTM3LjIyMiAxNC4zOTQgMTM1LjUwMyAxNi4yMjggMTM1LjUwMyAxOC43MjA4QzEzNS41MDMgMjEuMjEzNyAxMzcuMjIyIDIzLjA0NzYgMTM5LjYwNiAyMy4wNDc2QzE0MS45ODkgMjMuMDQ3NiAxNDMuNzA5IDIxLjI0MDggMTQzLjcwOSAxOC43MjA4WiIgZmlsbD0iI2ZmZmZmZiIvPgo8cGF0aCBkPSJNMzUuOTggNi44MDAwNUMzNC41OTczIDguNjU3NzkgMzEuNjI1NyA5LjA3NTUyIDMxLjI5NTUgNy45NjgzNUMzMC45NTg0IDYuODYxMTggMzIuNjg4NSA2LjA5MzYzIDMzLjU5NjUgNS45ODgzNEMyOC4zMzc2IDQuNTY1MzIgMjkuMjkwMyA4LjM1MjEzIDI2LjM4NCA4LjcxNTUyQzI3Ljk5MDIgOS41MDM0NSAyOS42NjE4IDEwLjgxNzggMzAuNzg5OSAxMC45Nzc0QzMyLjcyNjMgMTEuMjU1OSAzNS40NCAxMC4xOTI5IDM1Ljk4IDYuNzk2NjUiIGZpbGw9IiNmZmZmZmYiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS4yMzY5IDIuMDQ1MzFDMTUuMTM3MiAxLjQ1Nzc2IDE0LjcyNDQgMS4yNzA5NyAxNC4wNzEgMS4wMDk0NkgxNC4wNjc1QzE4LjMzNTggLTAuOTg3NTI2IDIxLjA1OTggMC40NTI0NzggMjIuMTYwNCAxLjM1MjQ4QzIyLjc2OTIgMS44NTE3MyAyMi45OTk3IDIuMzI3MiAyMy4yMTk4IDIuNzc1NUMyMy4zOTUyIDMuMTM1NTEgMjMuNTYwMyAzLjQ3ODUzIDIzLjkwNzcgMy44MDQ1NkMyNC40MjcgNC4yOTM2MiAyNS4zOTY5IDQuOTg5ODUgMjUuNzg1NiA1LjI2ODM0QzI1LjgyMzQgNS4yOTU1MSAyNS44NTc4IDUuMzE5MjkgMjUuODg1MyA1LjMzOTY2QzI2LjE3NDIgNS41NTAyMyAyNi4yOTggNi4xMjc1OSAyNi4wMzMyIDYuNTI0OTVDMjUuNzY4NCA2LjkxODkxIDI1LjA3MzYgNy43MzA2MSAyNC4yMzQ0IDcuNTk0NzdDMjMuMzk4NiA3LjQ1ODkyIDIxLjU2NTQgNy4xNDMwNyAyMC4wNTIxIDYuODg0OTVDMTguNTQyMiA2LjYyMzQ0IDE3LjQ5MzIgNS43ODQ1NyAxNy40OTMyIDUuNzg0NTdDMTcuMzA0IDYuODQwOCAxNy45NDM3IDcuNzc0NzcgMTkuMTQ3NSA4LjA4NzIyQzE5LjM4MTQgOC4xNDgzNSAxOS42NiA4LjIwOTQ4IDE5Ljk3NjQgOC4yODA4QzIxLjM5MzUgOC42MDAwNSAyMy41MTIxIDkuMDc4OTIgMjUuMjY2MiAxMC4xOTI5QzI3LjY0NjMgMTEuNzA0MiAyOS41MzExIDE0LjA5NTIgMzAuMjY3MSAxNy43NjY1QzMxLjAwMzIgMjEuNDM3OCAzMC4wODQ4IDI5LjIxNTIgMjMuNTUgMzIuNDA3N0MxNy4wMTUxIDM1LjYwMDEgMTAuODI0MiAzMy4xMjc3IDEwLjgyNDIgMzMuMTI3N0MxNi42ODE1IDMyLjg1NiAyMC4xMTA2IDMwLjQ5MjIgMjEuNDIxIDI4LjkxOTdDMjIuMzM5MyAyNy44MTYgMjMuMjA2IDI1LjgzMjYgMjIuNjc5OCAyMy41NDY5QzIyLjEwMiAyMS4wNDA1IDE5Ljk3MyAxOS4xMzg2IDE3LjgwNjIgMTkuNDU3OEMxNS42MzkzIDE5Ljc3NzEgMTQuNzIxIDIyLjEwNjkgMTQuMzE1MiAyMy4yMzc4QzEzLjkwOTMgMjQuMzY4OCAxMy4yNzY1IDI1LjIwNDMgMTIuNzIyNyAyNS4yOTZDMTIuMTY5IDI1LjM4NzcgMTEuMzc0NSAyNS40MTgyIDEwLjY3NjMgMjMuNzQzOUM5Ljk3ODA3IDIyLjA2OTUgOC4xMTczNSAxOS4wNzA3IDUuNjQ3ODUgMjAuMTk4MkMzLjE3ODM2IDIxLjMyMjQgMi43MzEyNCAyNi41MzU2IDIuNzMxMjQgMjYuNTM1NkMtMC4zMDIzMTggMjEuNzI2NSAtMS4wNzI3NSAxNS41NjIzIDEuNzcxNjQgOS41NzQ3N0M0LjYxNjAzIDMuNTg3MjEgMTAuNTQ5IDEuMzgzMDUgMTAuNTQ5IDEuMzgzMDVDOS40ODYyMyAyLjc1MTczIDguMzEzMzkgNi44OTE3NCA5LjUwNjg3IDEwLjYxNzRDMTAuNzAwMyAxNC4zNDMxIDEzLjY0NDUgMTYuMjExIDE1LjMzMzIgMTYuNDYyM0MxNy4wMjIgMTYuNzE3MSAxOS4wMzQgMTUuNzIyIDE4LjkyNCAxMy42Nzc0QzE4LjgzNDUgMTEuOTk5NyAxNy4zODMxIDEwLjgwNzYgMTUuODQ1NyAxMC4xMDhDMTQuNzQ4NSA5LjYwODczIDEzLjY2MTcgOC40NjA4IDEzLjU4NiA2LjY5ODE2QzEzLjUxMDMgNC45MzIxMiAxNC4yODc2IDMuODE4MTUgMTQuNjY2IDMuMzczMjRDMTQuOTY1MiAzLjAyMzQzIDE1LjMxNiAyLjU0MTE2IDE1LjIzIDIuMDQxOTJMMTUuMjM2OSAyLjA0NTMxWk0xOS41MTkgMy43NDAwNEMxOC4yNzM5IDMuNzQwMDQgMTcuNzA2NCA0LjM2ODM0IDE3LjcwNjQgNC4zNjgzNEMxNy43MDk5IDQuMzM3NzcgMTcuNzEzMyA0LjMwMDQxIDE3LjcyMDIgNC4yNTk2NkMxNy43NzE4IDMuODE0NzUgMTcuODgxOCAyLjg4NzU4IDE4LjMzOTMgMi40MzU4OEMxOC44MzggMS45NDM0MyAxOS42ODA2IDEuNTczMjQgMjAuODY3MiAyLjQzNTg4QzIyLjA1MzggMy4yOTg1MiAyMi40MjUzIDQuODcwOTggMjIuNDI1MyA0Ljg3MDk4QzIyLjAwOTEgNC41MjExNyAyMC43Njc1IDMuNzQwMDQgMTkuNTIyNCAzLjc0MDA0SDE5LjUxOVoiIGZpbGw9IiNmZmZmZmYiLz4KPC9zdmc+Cg==");
994: }
995: Report false positiveHigh-entropy string (4.9 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.9 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.9 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.9 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (5.0 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (5.0 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.9 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (5.0 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (5.4 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (5.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (5.4 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (5.0 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (5.3 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (5.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (5.4 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.9 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (5.0 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (5.0 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.9 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.9 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.9 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.9 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.9 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (5.0 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.9 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.9 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (5.3 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (5.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (5.3 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.9 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (5.3 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (5.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (5.3 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.9 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.9 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (5.0 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.7 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.7 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.8 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.8 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.7 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.8 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.8 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.7 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.7 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.7 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.7 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.9 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.8 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positivePython requests library HTTP call
Detected by automated pattern matching (rule NS-001) with medium confidence. May be a false positive.
46: url = urlparse(value)
47: if url.scheme and url.netloc:
>>> 48: response = requests.get(value, timeout=10)
49: response.raise_for_status()
50: content = response.textReport false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.8 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.7 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.9 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.8 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.7 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (5.0 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.7 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.7 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.8 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.8 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.7 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.7 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positivePossible Base64-encoded payload (long encoded string)
Detected by automated pattern matching (rule OB-001) with medium confidence. May be a false positive.
166: await f.write(json.dumps(logging_config, indent=2))
167:
>>> 168: # https://github.com/transferwise/pipelinewise-singer-python/blob/da64a10cdbcad48ab373d4dab3d9e6dd6f58556b/singer/logger.py#L9C9-L9C26
169: async with await anyio.open_file(pipelinewise_logging, mode="w") as f:
170: await f.write(Report false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (5.0 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.9 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (5.1 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.7 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.7 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.8 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveHigh-entropy string (4.6 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positivePossible Base64-encoded payload (long encoded string)
Detected by automated pattern matching (rule OB-001) with medium confidence. May be a false positive.
167: "context": {
168: "type": "ValueError",
>>> 169: "str_hash": "1009263b7f48917b8f0edafcfc8a06d22156122fbcbfbb7c9139f420b8472e0c", # noqa: E501
170: "repr_hash": "0015450e35aed13f4802973752ee45d02c8f8eaa5d57417962986f4b8ef1bf88", # noqa: E501
171: "traceback": [Report false positivePossible Base64-encoded payload (long encoded string)
Detected by automated pattern matching (rule OB-001) with medium confidence. May be a false positive.
168: "type": "ValueError",
169: "str_hash": "1009263b7f48917b8f0edafcfc8a06d22156122fbcbfbb7c9139f420b8472e0c", # noqa: E501
>>> 170: "repr_hash": "0015450e35aed13f4802973752ee45d02c8f8eaa5d57417962986f4b8ef1bf88", # noqa: E501
171: "traceback": [
172: {Report false positiveHigh-entropy string (4.5 bits/char) — possible encoded payload
Detected by automated pattern matching (rule EN-001) with medium confidence. May be a false positive.
Report false positiveScan History
| Date | Risk | Findings | Files | Duration |
|---|---|---|---|---|
| Feb 27, 2026 | critical | 599 | 697 | 0.00s |
| Feb 25, 2026 | critical | 599 | 697 | 0.00s |
| Feb 23, 2026 | critical | 599 | 697 | 0.00s |
| Feb 22, 2026 | critical | 237 | 697 | 0.00s |