René's URL Explorer Experiment


Title: Bump webpack from 5.96.1 to 5.105.0 in /documentation in the npm-security-updates group across 1 directory by dependabot[bot] · Pull Request #3503 · secureCodeBox/secureCodeBox · GitHub

Open Graph Title: Bump webpack from 5.96.1 to 5.105.0 in /documentation in the npm-security-updates group across 1 directory by dependabot[bot] · Pull Request #3503 · secureCodeBox/secureCodeBox

X Title: Bump webpack from 5.96.1 to 5.105.0 in /documentation in the npm-security-updates group across 1 directory by dependabot[bot] · Pull Request #3503 · secureCodeBox/secureCodeBox

Description: Bumps the npm-security-updates group with 1 update in the /documentation directory: webpack. Updates webpack from 5.96.1 to 5.105.0 Release notes Sourced from webpack's releases. v5.105.0 Minor Changes Allow resolving worker module by export condition name when using new Worker() (by @​hai-x in #20353) Detect conditional imports to avoid compile-time linking errors for non-existent exports. (by @​hai-x in #20320) Added the tsconfig option for the resolver options (replacement for tsconfig-paths-webpack-plugin). Can be false (disabled), true (use the default tsconfig.json file to search for it), a string path to tsconfig.json, or an object with configFile and references options. (by @​alexander-akait in #20400) Support import.defer() for context modules. (by @​ahabhgk in #20399) Added support for array values ​​to the devtool option. (by @​hai-x in #20191) Improve rendering node built-in modules for ECMA module output. (by @​hai-x in #20255) Unknown import.meta properties are now determined at runtime instead of being statically analyzed at compile time. (by @​xiaoxiaojx in #20312) Patch Changes Fixed ESM default export handling for .mjs files in Module Federation (by @​y-okt in #20189) Optimized import.meta.env handling in destructuring assignments by using cached stringified environment definitions. (by @​xiaoxiaojx in #20313) Respect the stats.errorStack option in stats output. (by @​samarthsinh2660 in #20258) Fixed a bug where declaring a module variable in module scope would conflict with the default moduleArgument. (by @​xiaoxiaojx in #20265) Fix VirtualUrlPlugin to set resourceData.context for proper module resolution. Previously, when context was not set, it would fallback to the virtual scheme path (e.g., virtual:routes), which is not a valid filesystem path, causing subsequent resolve operations to fail. (by @​xiaoxiaojx in #20390) Fixed Worker self-import handling to support various URL patterns (e.g., import.meta.url, new URL(import.meta.url), new URL(import.meta.url, import.meta.url), new URL("./index.js", import.meta.url)). Workers that resolve to the same module are now properly deduplicated, regardless of the URL syntax used. (by @​xiaoxiaojx in #20381) Reuse the same async entrypoint for the same Worker URL within a module to avoid circular dependency warnings when multiple Workers reference the same resource. (by @​xiaoxiaojx in #20345) Fixed a bug where a self-referencing dependency would have an unused export name when imported inside a web worker. (by @​samarthsinh2660 in #20251) Fix missing export generation when concatenated modules in different chunks share the same runtime in module library bundles. (by @​hai-x in #20346) Fixed import.meta.env.xxx behavior: when accessing a non-existent property, it now returns empty object instead of full object at runtime. (by @​xiaoxiaojx in #20289) Improved parsing error reporting by adding a link to the loader documentation. (by @​gaurav10gg in #20244) Fix typescript types. (by @​alexander-akait in #20305) Add declaration for unused harmony import specifier. (by @​hai-x in #20286) Fix compressibility of modules while retaining portability. (by @​dmichon-msft in #20287) Optimize source map generation: only include ignoreList property when it has content, avoiding empty arrays in source maps. (by @​xiaoxiaojx in #20319) Preserve star exports for dependencies in ECMA module output. (by @​hai-x in #20293) ... (truncated) Changelog Sourced from webpack's changelog. 5.105.0 Minor Changes Allow resolving worker module by export condition name when using new Worker() (by @​hai-x in #20353) Detect conditional imports to avoid compile-time linking errors for non-existent exports. (by @​hai-x in #20320) Added the tsconfig option for the resolver options (replacement for tsconfig-paths-webpack-plugin). Can be false (disabled), true (use the default tsconfig.json file to search for it), a string path to tsconfig.json, or an object with configFile and references options. (by @​alexander-akait in #20400) Support import.defer() for context modules. (by @​ahabhgk in #20399) Added support for array values ​​to the devtool option. (by @​hai-x in #20191) Improve rendering node built-in modules for ECMA module output. (by @​hai-x in #20255) Unknown import.meta properties are now determined at runtime instead of being statically analyzed at compile time. (by @​xiaoxiaojx in #20312) Patch Changes Fixed ESM default export handling for .mjs files in Module Federation (by @​y-okt in #20189) Optimized import.meta.env handling in destructuring assignments by using cached stringified environment definitions. (by @​xiaoxiaojx in #20313) Respect the stats.errorStack option in stats output. (by @​samarthsinh2660 in #20258) Fixed a bug where declaring a module variable in module scope would conflict with the default moduleArgument. (by @​xiaoxiaojx in #20265) Fix VirtualUrlPlugin to set resourceData.context for proper module resolution. Previously, when context was not set, it would fallback to the virtual scheme path (e.g., virtual:routes), which is not a valid filesystem path, causing subsequent resolve operations to fail. (by @​xiaoxiaojx in #20390) Fixed Worker self-import handling to support various URL patterns (e.g., import.meta.url, new URL(import.meta.url), new URL(import.meta.url, import.meta.url), new URL("./index.js", import.meta.url)). Workers that resolve to the same module are now properly deduplicated, regardless of the URL syntax used. (by @​xiaoxiaojx in #20381) Reuse the same async entrypoint for the same Worker URL within a module to avoid circular dependency warnings when multiple Workers reference the same resource. (by @​xiaoxiaojx in #20345) Fixed a bug where a self-referencing dependency would have an unused export name when imported inside a web worker. (by @​samarthsinh2660 in #20251) Fix missing export generation when concatenated modules in different chunks share the same runtime in module library bundles. (by @​hai-x in #20346) Fixed import.meta.env.xxx behavior: when accessing a non-existent property, it now returns empty object instead of full object at runtime. (by @​xiaoxiaojx in #20289) Improved parsing error reporting by adding a link to the loader documentation. (by @​gaurav10gg in #20244) Fix typescript types. (by @​alexander-akait in #20305) Add declaration for unused harmony import specifier. (by @​hai-x in #20286) Fix compressibility of modules while retaining portability. (by @​dmichon-msft in #20287) Optimize source map generation: only include ignoreList property when it has content, avoiding empty arrays in source maps. (by @​xiaoxiaojx in #20319) ... (truncated) Commits 1486f9a chore(release): new release 1a517f6 feat: added the tsconfig option for the resolver options (#20400) 7b3b0f7 feat: support import.defer() for context modules c4a6a92 refactor: more types and increase types coverage 5ecc58d feat: consider asset module as side-effect-free (#20352) cce0f69 test: avoid comma operator in BinaryMiddleware test (#20398) cd4793d feat: support import specifier guard (#20320) fe48655 docs: update examples (#20397) de107f8 fix(VirtualUrlPlugin): set resourceData.context to avoid invalid fallback (#2... a656ab1 test: add self-import test case for dynamic import (#20389) Additional commits viewable in compare view Maintainer changes This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for webpack since your current version. Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase. Dependabot commands and options You can trigger Dependabot actions by commenting on this PR: @dependabot rebase will rebase this PR @dependabot recreate will recreate this PR, overwriting any edits that have been made to it @dependabot show ignore conditions will show all of the ignore conditions of the specified dependency @dependabot ignore major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) @dependabot ignore minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) @dependabot ignore will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) @dependabot unignore will remove all of the ignore conditions of the specified dependency @dependabot unignore will remove the ignore condition of the specified dependency and ignore conditions You can disable automated security fix PRs for this repo from the Security Alerts page.

Open Graph Description: Bumps the npm-security-updates group with 1 update in the /documentation directory: webpack. Updates webpack from 5.96.1 to 5.105.0 Release notes Sourced from webpack's releases. v5.105.0 Min...

X Description: Bumps the npm-security-updates group with 1 update in the /documentation directory: webpack. Updates webpack from 5.96.1 to 5.105.0 Release notes Sourced from webpack's releases. v5.105.0...

Opengraph URL: https://github.com/secureCodeBox/secureCodeBox/pull/3503

X: @github

direct link

Domain: patch-diff.githubusercontent.com

route-pattern/:user_id/:repository/pull/:id/checks(.:format)
route-controllerpull_requests
route-actionchecks
fetch-noncev2:b7490deb-4ccb-4428-a940-df4acdde5013
current-catalog-service-hash87dc3bc62d9b466312751bfd5f889726f4f1337bdff4e8be7da7c93d6c00a25a
request-id9374:221381:E57B9F:1281A5D:6990C280
html-safe-noncedd7250b4e0e7415448a293a22ae282eba3838e51b2f458b6a178fff4812a3b3c
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5Mzc0OjIyMTM4MTpFNTdCOUY6MTI4MUE1RDo2OTkwQzI4MCIsInZpc2l0b3JfaWQiOiI5MTU3NTAyNjU5MjM3ODIzMTA0IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmacb4a7b81dfe2a6b41462b410d5affd9d58a62abde5f9b09d53a7badace0e14895
hovercard-subject-tagpull_request:3254133132
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,checks,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/checks
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/secureCodeBox/secureCodeBox/pull/3503/checks
twitter:imagehttps://avatars.githubusercontent.com/in/29110?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/in/29110?s=400&v=4
og:image:altBumps the npm-security-updates group with 1 update in the /documentation directory: webpack. Updates webpack from 5.96.1 to 5.105.0 Release notes Sourced from webpack's releases. v5.105.0 Min...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None42c603b9d642c4a9065a51770f75e5e27132fef0e858607f5c9cb7e422831a7b
turbo-cache-controlno-preview
go-importgithub.com/secureCodeBox/secureCodeBox git https://github.com/secureCodeBox/secureCodeBox.git
octolytics-dimension-user_id34573705
octolytics-dimension-user_loginsecureCodeBox
octolytics-dimension-repository_id80711933
octolytics-dimension-repository_nwosecureCodeBox/secureCodeBox
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id80711933
octolytics-dimension-repository_network_root_nwosecureCodeBox/secureCodeBox
turbo-body-classeslogged-out env-production page-responsive full-width full-width-p-0
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release848bc6032dcc93a9a7301dcc3f379a72ba13b96e
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/pull/3503/checks#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2FsecureCodeBox%2FsecureCodeBox%2Fpull%2F3503%2Fchecks
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2FsecureCodeBox%2FsecureCodeBox%2Fpull%2F3503%2Fchecks
Sign up https://patch-diff.githubusercontent.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Fchecks&source=header-repo&source_repo=secureCodeBox%2FsecureCodeBox
Reloadhttps://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/pull/3503/checks
Reloadhttps://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/pull/3503/checks
Reloadhttps://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/pull/3503/checks
secureCodeBox https://patch-diff.githubusercontent.com/secureCodeBox
secureCodeBoxhttps://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2FsecureCodeBox%2FsecureCodeBox
Fork 179 https://patch-diff.githubusercontent.com/login?return_to=%2FsecureCodeBox%2FsecureCodeBox
Star 955 https://patch-diff.githubusercontent.com/login?return_to=%2FsecureCodeBox%2FsecureCodeBox
Code https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox
Issues 71 https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/issues
Pull requests 5 https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/pulls
Discussions https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/discussions
Actions https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions
Projects 1 https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/projects
Security 1 https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/security
Insights https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/pulse
Code https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox
Issues https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/issues
Pull requests https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/pulls
Discussions https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/discussions
Actions https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions
Projects https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/projects
Security https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/security
Insights https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/pulse
Sign up for GitHub https://patch-diff.githubusercontent.com/signup?return_to=%2FsecureCodeBox%2FsecureCodeBox%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://patch-diff.githubusercontent.com/login?return_to=%2FsecureCodeBox%2FsecureCodeBox%2Fissues%2Fnew%2Fchoose
Weltraumschafhttps://patch-diff.githubusercontent.com/Weltraumschaf
mainhttps://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/tree/main
dependabot/npm_and_yarn/documentation/npm-security-updates-c081eec248https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/tree/dependabot/npm_and_yarn/documentation/npm-security-updates-c081eec248
Conversation 2 https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/pull/3503
Commits 1 https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/pull/3503/commits
Checks 50 https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/pull/3503/checks
Files changed 1 https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/pull/3503/files
Please reload this pagehttps://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/pull/3503/checks
Bump webpack from 5.96.1 to 5.105.0 in /documentation in the npm-security-updates group across 1 directory https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/pull/3503/checks#top
Please reload this pagehttps://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/pull/3503/checks
DCO https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/pull/3503/checks?check_run_id=62736677598
Header rules - docs-securecodebox https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/pull/3503/checks?check_run_id=62736683960
Pages changed - docs-securecodebox https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/pull/3503/checks?check_run_id=62736683359
Redirect rules - docs-securecodebox https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/pull/3503/checks?check_run_id=62736684456
SonarCloud Code Analysis https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/pull/3503/checks?check_run_id=62736772982
MegaLinter on: push https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747426989
MegaLinter https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747426989/job/62736677474?pr=3503
Label Commenter on: pull_request_target https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747427665
comment https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747427665/job/62736679088?pr=3503
Label Commenter on: pull_request_target https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747427701
comment https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747427701/job/62736679237?pr=3503
CI on: pull_request https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428526
Unit Test | Node.js Scanner Test Helpers https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428526/job/63083743415?pr=3503
Setup Kind & Kubectl & Helm & Task https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428526/job/63083743483?pr=3503
Unit-Test | Java (persistence-defectdojo) https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428526/job/63083743417?pr=3503
Build | Operator (operator) https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428526/job/63083743440?pr=3503
Build | Operator (lurker) https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428526/job/63083743420?pr=3503
AutoDiscovery | Kubernetes https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428526/job/63083743480?pr=3503
AutoDiscovery | Cloud | AWS https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428526/job/63083743411?pr=3503
Build | SDKs (parser-sdk) https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428526/job/63083743460?pr=3503
Build | SDKs (hook-sdk) https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428526/job/63083743447?pr=3503
Run sbctcl Tests https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428526/job/63083743510?pr=3503
Unit-Test | Helm https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428526/job/63084098827?pr=3503
Autodiscovery | Kubernetes | SecretExtractionInitContainer https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428526/job/63084098864?pr=3503
Test | Scanner ffuf https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428526/job/63084534007?pr=3503
Test | Scanner git-repo-scanner https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428526/job/63084534086?pr=3503
Test | Scanner gitleaks https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428526/job/63084533939?pr=3503
Test | Scanner kube-hunter https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428526/job/63084533962?pr=3503
Test | Scanner ncrack https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428526/job/63084533967?pr=3503
Test | Scanner nikto https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428526/job/63084534134?pr=3503
Test | Scanner nmap https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428526/job/63084534057?pr=3503
Test | Scanner nuclei https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428526/job/63084534027?pr=3503
Test | Scanner screenshooter https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428526/job/63084534085?pr=3503
Test | Scanner semgrep https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428526/job/63084534073?pr=3503
Test | Scanner ssh-audit https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428526/job/63084534019?pr=3503
Test | Scanner sslyze https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428526/job/63084534074?pr=3503
Test | Scanner subfinder https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428526/job/63084534070?pr=3503
Test | Scanner trivy https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428526/job/63084534064?pr=3503
Test | Scanner trivy-sbom https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428526/job/63084534062?pr=3503
Test | Scanner whatweb https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428526/job/63084534052?pr=3503
Test | Scanner wpscan https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428526/job/63084534078?pr=3503
Test | Scanner zap-automation-framework https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428526/job/63084534035?pr=3503
Test | Hook cascading-scans https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428526/job/63084533989?pr=3503
Test | Hook generic-webhook https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428526/job/63084533868?pr=3503
Test | Hook persistence-azure-monitor https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428526/job/63084533940?pr=3503
Test | Hook persistence-elastic https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428526/job/63084533946?pr=3503
Test | Hook persistence-dependencytrack https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428526/job/63084533927?pr=3503
Test | Hook update-field-hook https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428526/job/63084533885?pr=3503
Test | Hook finding-post-processing https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428526/job/63084534002?pr=3503
Test | Hook notification https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428526/job/63084534094?pr=3503
Check License Compliance on: pull_request https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428533
license-check https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428533/job/62736681935?pr=3503
MegaLinter on: pull_request https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428549
MegaLinter https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428549/job/62736682088?pr=3503
Move bot PRs to Review on: pull_request https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428551
move-bot-pr-to-review https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/actions/runs/21747428551/job/62736681942?pr=3503
SonarCloud https://patch-diff.githubusercontent.com/secureCodeBox/secureCodeBox/pull/3503/checks?check_run_id=62736772713
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.