Public scan — anyone with this URL can view this analysis. Sign up to track your own repos privately, run scheduled re-scans, and get AI fix prompts via your dashboard.
142 of your 234 findings came from Repobility's proprietary detections. ✓ Repobility tags below mark them.
Upstream (GitHub) caused delay on this scan — not Repobility.
  • GitHub API rate-limited (HTTP 403) — preflight skipped, fell back to direct git clone.
  • Clone from GitHub took 41.32s for a 90.1 MB repo slow.
  • Repobility's analysis ran in 20.44s after the clone landed.

MozillaFoundation/foundation.mozilla.org

https://github.com/MozillaFoundation/foundation.mozilla.org · scanned 2026-06-05 19:56 UTC (4 days, 14 hours ago) · 10 languages

995 raw signals (219 security + 776 graph) 11/13 scanners ran 31st percentile · Python · huge (>500K LoC) System graph score 58 (higher by 13)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 4 days, 14 hours ago · v2 · 473 actionable findings from 2 signal sources. 132 repeated signals grouped for readability. Security checks, system graph analysis, and verified AI-agent feedback are merged into one review queue.

JSON
Score breakdown â 2026-05-18-v5
Component Sub-score Weight Contribution
structure_score 60.0 0.15 9.00
security_score 100.0 0.25 25.00
testing_score 41.0 0.20 8.20
documentation_score 65.0 0.15 9.75
practices_score 100.0 0.15 15.00
code_quality 48.0 0.10 4.80
Overall 1.00 71.8
security_score may be inflated — optional security scanners were skipped on this fast scan
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all
Scan summary Quality grade B (72/100). Dimensions: security 100, maintainability 60. 219 findings (44 security). 728,066 lines analyzed.

Showing 389 of 473 actionable findings. 605 raw detector signals were grouped into reader-sized issues. Click TP / FP to vote on a finding's accuracy — votes adjust the confidence weighting and improve detection across the platform.

high Security checks quality Quality conf 1.00 ✓ Repobility 9 occurrences [MINED107] Missing import: `locale` used but not imported: The file uses `locale.something(...)` but never imports `locale`. This raises NameError at runtime the first time the line executes.
Add `import locale` at the top of the file.
9 files, 9 locations
foundation_cms/core/management/commands/update_multilingual_index.py:41
foundation_cms/footer/templatetags/footer_tags.py:20
foundation_cms/legacy_apps/mozfest/models.py:243
foundation_cms/legacy_apps/wagtailpages/override_utils.py:16
foundation_cms/legacy_apps/wagtailpages/pagemodels/buyersguide/homepage.py:272
foundation_cms/legacy_apps/wagtailpages/pagemodels/index.py:88
foundation_cms/legacy_apps/wagtailpages/views.py:40
foundation_cms/navigation/templatetags/navigation_tags.py:20
low Security checks cicd CI/CD security conf 0.35 ✓ Repobility 3 occurrences Workflow references repository secrets in a pull_request workflow
Fork pull_request runs do not receive normal repository secrets on GitHub Actions. Review this as a reliability/intent signal, not as direct fork-secret exfiltration. Raise severity only for pull_request_target or another trusted-context path that runs untrusted PR code with secrets.
3 files, 3 locations
.github/workflows/continous-integration.yml:78
.github/workflows/visual-regression-testing-legacy.yml:136
.github/workflows/visual-regression-testing-redesign.yml:150
CI/CD securityworkflow secretsGitHub Actions
high Security checks security auth conf 0.70 [AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: ANY /^(?P<pk>[0-9]+)/.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
foundation_cms/legacy_apps/news/urls.py:7
high Security checks quality Quality conf 1.00 ✓ Repobility [MINED106] Phantom test coverage: test_python: Test function `test_python` runs code but contains no assert / expect / should call — it passes regardless of behaviour. Adds line coverage without verifying anything.
Add an explicit assertion that captures the test's intent, or remove the test.
tasks.py:400
high Security checks quality Quality conf 1.00 ✓ Repobility 25 occurrences [MINED108] `self.get` used but never assigned in __init__: Method `icon_alt_text` of class `IconInfoGridItemValue` reads `self.get`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance.
Initialize `self.get = <default>` in __init__, or add a class-level default.
5 files, 25 locations
foundation_cms/images/models.py:42, 44, 45, 46, 62, 63, 66, 67, +7 more (15 hits)
foundation_cms/blocks/link_block.py:15, 18, 21, 24 (4 hits)
foundation_cms/footer/models.py:97, 98, 226, 236 (4 hits)
foundation_cms/blocks/icon_info_grid_block.py:21
foundation_cms/sitemaps.py:12
high Security checks software dependencies conf 0.90 ✓ Repobility 2 occurrences [MINED118] Dockerfile FROM `node:20-bookworm-slim` not pinned by digest: `FROM node:20-bookworm-slim` resolves the tag at build time. The registry CAN re-push a different image for the same tag, so every build is potentially different. Production images should pin to `image@sha256:...` for reproducibility + supply-chain integrity.
Replace with: `FROM node:20-bookworm-slim@sha256:<digest>`. Get the digest from `docker manifest inspect`. Re-pin via a scheduled bot (Renovate, Dependabot).
lines 2, 33
Dockerfile:2, 33 (2 hits)
high Security checks software dependencies conf 0.90 ✓ Repobility [MINED121] requirements.txt installs from `wagtail-localize-git @ git+https://github.com/robd...` (git/URL): Pip requirement points to a VCS URL or direct download. Bypasses PyPI's integrity check + scanning. If the host or branch tip changes, the next `pip install` pulls a different package — no diff visible to reviewers.
Publish to PyPI (private if needed) and reference by version. If that's not feasible, lock to a commit SHA via `package @ git+https://...@<sha>` and verify in CI.
requirements.txt:296
high Security checks software dependencies conf 0.90 ✓ Repobility 4 occurrences [MINED126] Workflow container/services image `postgres:15` unpinned: `container/services image: postgres:15` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline as Dockerfile FROM lines.
Replace with `postgres:15@sha256:<digest>`. Re-pin via Dependabot Docker scope.
3 files, 4 locations
.github/workflows/continous-integration.yml:65, 130 (2 hits)
.github/workflows/visual-regression-testing-legacy.yml:57
.github/workflows/visual-regression-testing-redesign.yml:75
high Security checks security path traversal conf 0.80 3 occurrences [SEC013] Path Traversal — User Input in File Path: User-controlled input used in file path without sanitization. Allows reading arbitrary files.
Use os.path.realpath() and verify the path starts with your expected base directory. Use secure_filename() for uploads.
3 files, 3 locations
copy_staging_db_to_review_app.py:28
foundation_cms/images/webp/utils.py:77
foundation_cms/legacy_apps/static/js/components/pulse-project-list/pulse-project-list.jsx:62
high Security checks software Xss conf 1.00 3 occurrences [SEC111] Django mark_safe / |safe filter on user data: Django's `mark_safe()` and `|safe` disable HTML autoescaping. Calling them on non-constant data is XSS.
Use `django.utils.html.format_html("<p>{}</p>", user_input)` — Django will escape the placeholder. Or escape explicitly with `django.utils.html.escape()`. Only use `mark_safe` on string literals.
3 files, 3 locations
foundation_cms/base/widgets.py:27
foundation_cms/core/models/sitewide_donate_banner_page.py:29
foundation_cms/core/models/sitewide_footer_newsletter_signup_page.py:29
high Security checks cicd CI/CD security conf 0.84 Database service publishes a host port
Use `expose` for service-to-service access, bind to 127.0.0.1 for local-only access, or protect the port with firewall rules.
docker-compose.yml:66 CI/CD securitycontainers
medium Security checks cicd CI/CD security conf 0.90 ✓ Repobility 2 occurrences GitHub Action is tag-pinned rather than SHA-pinned
[MINED115] Action `aws-actions/configure-aws-credentials` pinned to mutable ref `@v1`: `uses: aws-actions/configure-aws-credentials@v1` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~2…
lines 17
.github/workflows/maintenance-page.yml:17 (2 hits)
CI/CD securitySupply chainGitHub Actions
low Security checks cicd CI/CD security conf 0.90 ✓ Repobility 19 occurrences GitHub Action is tag-pinned rather than SHA-pinned
[MINED115] Action `actions/checkout` pinned to mutable ref `@v4`: `uses: actions/checkout@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lo…
4 files, 19 locations
.github/workflows/continous-integration.yml:21, 22, 39, 40, 97, 98, 102, 169, +2 more (10 hits)
.github/workflows/visual-regression-testing-legacy.yml:27, 98, 101, 105 (4 hits)
.github/workflows/visual-regression-testing-redesign.yml:39, 116, 119, 123 (4 hits)
.github/workflows/maintenance-page.yml:15
CI/CD securitySupply chainGitHub Actions
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/csrf/ (foundation_cms/legacy_apps/static/js/buyers-guide/components/creep-vote/creep-vote.jsx:65)
`foundation_cms/legacy_apps/static/js/buyers-guide/components/creep-vote/creep-vote.jsx:65` calls `GET /api/csrf/` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/csrf` If this points at an external API, prefix it wi…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://mozilla.callpower.org/call/create (foundation_cms/legacy_apps/static/js/foundation/pages/callpower.js:73)
`foundation_cms/legacy_apps/static/js/foundation/pages/callpower.js:73` calls `POST https://mozilla.callpower.org/call/create` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/mozilla.callpower.org/call/create`…
Dangling fetchFetch
high System graph security auth conf 1.00 DRF view `HighlightListView` declares no `permission_classes` — foundation_cms/legacy_apps/highlights/views.py:7
DRF defaults to AllowAny when `permission_classes` is unset, exposing the endpoint publicly. Add `permission_classes = [IsAuthenticated]` (or stricter) at class level, or set `DEFAULT_PERMISSION_CLASSES` in settings.
foundation_cms/legacy_apps/highlights/views.py:7 securityAuth drf no permission classes
high System graph security auth conf 1.00 DRF view `HighlightView` declares no `permission_classes` — foundation_cms/legacy_apps/highlights/views.py:19
DRF defaults to AllowAny when `permission_classes` is unset, exposing the endpoint publicly. Add `permission_classes = [IsAuthenticated]` (or stricter) at class level, or set `DEFAULT_PERMISSION_CLASSES` in settings.
foundation_cms/legacy_apps/highlights/views.py:19 securityAuth drf no permission classes
high System graph security auth conf 1.00 DRF view `NewsListView` declares no `permission_classes` — foundation_cms/legacy_apps/news/views.py:7
DRF defaults to AllowAny when `permission_classes` is unset, exposing the endpoint publicly. Add `permission_classes = [IsAuthenticated]` (or stricter) at class level, or set `DEFAULT_PERMISSION_CLASSES` in settings.
foundation_cms/legacy_apps/news/views.py:7 securityAuth drf no permission classes
high System graph security auth conf 1.00 DRF view `NewsView` declares no `permission_classes` — foundation_cms/legacy_apps/news/views.py:20
DRF defaults to AllowAny when `permission_classes` is unset, exposing the endpoint publicly. Add `permission_classes = [IsAuthenticated]` (or stricter) at class level, or set `DEFAULT_PERMISSION_CLASSES` in settings.
foundation_cms/legacy_apps/news/views.py:20 securityAuth drf no permission classes
medium Security checks security auth conf 0.92 [AUC001] No Repobility access matrix policy found: The repository uses web/API frameworks but does not define .repobility/access.yml or equivalent authorization documentation.
Add .repobility/access.yml mapping routes to anonymous, authenticated, owner, admin, and super_admin. Keep business-specific rules in the repo so CI can enforce them.
high Security checks security auth conf 0.74 [AUC002] Low visible authorization coverage in route inventory: Only 3.3% of discovered routes show nearby authentication, authorization, middleware, or public-route evidence.
Review the access matrix and add explicit framework auth declarations or policy-file exceptions for intentionally public routes.
high Security checks security auth conf 0.66 [AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: ANY /^en/cms/.
Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml.
foundation_cms/urls.py:113
high Security checks security auth conf 0.66 [AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: ANY /cms/.
Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml.
foundation_cms/urls.py:112
high Security checks security auth conf 0.66 [AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: ANY /documents/.
Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml.
foundation_cms/urls.py:114
high Security checks security auth conf 0.68 [AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: ANY /i18n/setlang/.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
foundation_cms/urls.py:125
high Security checks security auth conf 0.68 [AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: ANY /sentry-debug.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
foundation_cms/urls.py:123
low Security checks quality Error handling conf 1.00 [ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG level.
Log the error: `except Exception: logger.debug('cleanup failed', exc_info=True)`. Or handle specific exception types.
foundation_cms/search/utils.py:22
low Security checks quality Error handling conf 1.00 [ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG level.
Log the error: `except Exception: logger.debug('cleanup failed', exc_info=True)`. Or handle specific exception types.
foundation_cms/images/models.py:85
medium Security checks quality Error handling conf 1.00 [ERR002] Empty Catch Block: Empty catch blocks hide errors.
Log the error or rethrow it. Use console.error() at minimum.
foundation_cms/static/js/components/gallery_hub/slideshow.js:37
medium Security checks quality Quality conf 1.00 ✓ Repobility [MINED109] Mutable default argument in `get_random_option` (list): `def get_random_option(... = []/{}/set())` — Python's default value is constructed ONCE at function definition time and shared across all calls. Mutating it in one call mutates it for every future call too.
Use None as the default and create the collection inside the function: `def get_random_option(x=None): x = x or []`
foundation_cms/legacy_apps/wagtailpages/factory/buyersguide.py:27
medium Security checks software Csrf conf 1.00 3 occurrences [SEC028] CSRF Protection Removed — @csrf_exempt on state-changing endpoint: @csrf_exempt removes Django's CSRF protection from a view. On a state-changing endpoint (POST/PUT/DELETE) this allows cross-site requests to perform actions on behalf of an authenticated user. Verify there's a compensating mechanism: API token auth, signed request, or explicit Same-Site cookie + Origin check.
Either: (a) Replace @csrf_exempt with @csrf_protect (or just remove the exemption). (b) If this is a public API endpoint, use SessionAuthentication + Token/JWT auth from DRF instead. Token-bearer requests aren't vulnerable to CSRF. (c) If you must skip CSRF (e.g. for a third-party…
3 files, 3 locations
foundation_cms/legacy_apps/campaign/views.py:29
foundation_cms/legacy_apps/events/views.py:20
foundation_cms/views.py:82
medium Security checks software Open redirect conf 1.00 [SEC046] Client-side open redirect — window.location = server-supplied URL: Assigning window.location from a server-supplied URL trusts the server endpoint to never return a hostile destination. If that endpoint is ever subverted (compromised admin, JSON injection, MITM on a webhook), users get redirected to a phishing site they trust because the original page is yours. CWE-601 (server-side OR client-side). Complement to server-side SEC030.
Validate the URL is same-origin or on an explicit allowlist before assignment: const u = new URL(serverUrl, location.href); if (u.origin !== location.origin && !ALLOWED.includes(u.host)) return; location.assign(u); Even better: have the server return a path (/checkout/done) instead of a full …
foundation_cms/static/js/components/newsletter_unsubscribe.js:121
low Security checks quality Quality conf 1.00 [SEC136] AI-typical over-broad exception handler swallowing all errors: Catch-all exception block that silently returns success or no-ops. AI agents reach for this pattern when a flaky test or an unfamiliar API throws — wrap, swallow, return success. Real bugs are masked, observability is destroyed, and callers think the operation worked. CWE-396 (improperly-generalized exception). Distinct from intentional fallback because there's no log line and the success value is fabricated.
Catch the specific exception type, log at error level with full exception info, and return a failure-shaped result. If the operation is genuinely best-effort, log at warning and document why in a comment so the next reader (or scanner) knows.
foundation_cms/search/signals.py:11
medium Security checks quality Quality Average file size is 501 lines (recommend <300)
Refactor large files by extracting related functions into separate modules. Target files with 300+ lines first. Use the Single Responsibility Principle — each module should have one clear purpose.
low Security checks quality Error handling conf 0.55 ✓ Repobility 8 occurrences Broad exception handler needs review
This handler catches Exception/BaseException. It is actionable when it swallows errors without logging, re-raising, or returning a structured error. Handlers that intentionally convert exceptions into typed error results should not be treated as high risk.
6 files, 8 locations
tasks.py:693, 702, 781 (3 hits)
foundation_cms/core/management/commands/update_multilingual_index.py:59
foundation_cms/images/webp/utils.py:21
foundation_cms/legacy_apps/wagtailpages/pagemodels/buyersguide/products.py:686
foundation_cms/search/signals.py:13
foundation_cms/templatetags/breadcrumb_nav.py:14
Error handlingquality
medium Security checks cicd CI/CD security conf 0.88 Database service has no healthcheck
Add a database-native healthcheck such as pg_isready, mysqladmin ping, redis-cli ping, or the vendor's readiness command.
docker-compose.yml:66 CI/CD securitycontainers
medium Security checks cicd CI/CD security conf 0.76 Dockerfile copies broad context with incomplete .dockerignore
Tighten .dockerignore or replace COPY . with explicit COPY statements.
Dockerfile:107 CI/CD securitycontainers
high Security checks quality Quality conf 0.74 2 occurrences Frontend API reference is not matched by discovered backend routes
Add the backend route, update the frontend constant to the implemented endpoint, or document that the route is served by another service and exclude it with .repobilityignore.
lines 65, 97
foundation_cms/legacy_apps/static/js/buyers-guide/components/creep-vote/creep-vote.jsx:65, 97 (2 hits)
medium Security checks quality Quality conf 0.70 Public web app has no Content Security Policy
Add a Content-Security-Policy header through the web framework or hosting config. For static apps, add a CSP meta tag that restricts default-src, script-src, connect-src, img-src, and frame-ancestors.
index.html
medium Security checks quality Quality conf 0.78 Public web service has no security.txt
Add /.well-known/security.txt with Contact, Expires, Canonical, Preferred-Languages, and Policy fields. Keep the contact endpoint monitored.
.well-known/security.txt
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — foundation_cms/legacy_apps/static/js/components/newsletter-signup/atoms/description.jsx:8
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — foundation_cms/legacy_apps/static/js/components/newsletter-signup/atoms/privacy-notice.jsx:14
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — foundation_cms/legacy_apps/static/js/components/petition/donation-modal.jsx:114
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — foundation_cms/legacy_apps/static/js/buyers-guide/components/creep-vote/creep-vote.jsx:65
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — foundation_cms/legacy_apps/static/js/foundation/template-js-handler/load-more-entries.js:41
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph security auth conf 1.00 Django view `apple_pay_domain_association_view` may be unauthenticated — foundation_cms/views.py:41
Function-view with `request` parameter has no `@login_required` or equivalent auth decorator within 5 lines above. If auth is enforced by middleware (`AUTHENTICATION_BACKENDS`), this is a false positive — dismiss with reason `by_design`.
foundation_cms/views.py:41 securityAuth django unauth view
medium System graph security auth conf 1.00 Django view `localized_redirect` may be unauthenticated — foundation_cms/legacy_apps/wagtailpages/views.py:43
Function-view with `request` parameter has no `@login_required` or equivalent auth decorator within 5 lines above. If auth is enforced by middleware (`AUTHENTICATION_BACKENDS`), this is a false positive — dismiss with reason `by_design`.
foundation_cms/legacy_apps/wagtailpages/views.py:43 securityAuth django unauth view
medium System graph security auth conf 1.00 Django view `review_app_help_view` may be unauthenticated — foundation_cms/views.py:33
Function-view with `request` parameter has no `@login_required` or equivalent auth decorator within 5 lines above. If auth is enforced by middleware (`AUTHENTICATION_BACKENDS`), this is a false positive — dismiss with reason `by_design`.
foundation_cms/views.py:33 securityAuth django unauth view
medium System graph hardware Security conf 1.00 Dockerfile runs as root: Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in foundation_cms/legacy_apps/static/js/components/newsletter-signup/atoms/description.jsx:8
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
foundation_cms/legacy_apps/static/js/components/newsletter-signup/atoms/description.jsx:8 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in foundation_cms/legacy_apps/static/js/components/newsletter-signup/atoms/privacy-notice.jsx:14
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
foundation_cms/legacy_apps/static/js/components/newsletter-signup/atoms/privacy-notice.jsx:14 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in foundation_cms/legacy_apps/static/js/components/petition/donation-modal.jsx:114
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
foundation_cms/legacy_apps/static/js/components/petition/donation-modal.jsx:114 Dangerous innerhtml
medium System graph quality Integrity conf 1.00 Likely N+1 query: `for alias in …` triggers a query per row — foundation_cms/legacy_apps/utility/management/commands/fix_alias_page_first_last_published.py:19
The loop iterates a Django queryset and accesses `alias.alias_of.first_published_at` per row, which fires an additional database query each iteration. Add `.select_related('<fk_field>')` for FK / O2O relations or `.prefetch_related('<m2m_or_reverse>')` for many-related lookups, to load everything i…
foundation_cms/legacy_apps/utility/management/commands/fix_alias_page_first_last_published.py:19 N plus onePerformance
medium System graph quality Integrity conf 1.00 Likely N+1 query: `for block in …` triggers a query per row — foundation_cms/legacy_apps/wagtailpages/migrations/0142_alter_blogindexpage_callout_box.py:26
The loop iterates a Django queryset and accesses `block.value.get` per row, which fires an additional database query each iteration. Add `.select_related('<fk_field>')` for FK / O2O relations or `.prefetch_related('<m2m_or_reverse>')` for many-related lookups, to load everything in 1-2 queries inst…
foundation_cms/legacy_apps/wagtailpages/migrations/0142_alter_blogindexpage_callout_box.py:26 N plus onePerformance
medium System graph quality Integrity conf 1.00 Likely N+1 query: `for category in …` triggers a query per row — foundation_cms/legacy_apps/wagtailpages/factory/buyersguide.py:43
The loop iterates a Django queryset and accesses `category.product_pages.filter` per row, which fires an additional database query each iteration. Add `.select_related('<fk_field>')` for FK / O2O relations or `.prefetch_related('<m2m_or_reverse>')` for many-related lookups, to load everything in 1-…
foundation_cms/legacy_apps/wagtailpages/factory/buyersguide.py:43 N plus onePerformance
medium System graph quality Integrity conf 1.00 Likely N+1 query: `for category in …` triggers a query per row — foundation_cms/legacy_apps/wagtailpages/pagemodels/buyersguide/utils.py:64
The loop iterates a Django queryset and accesses `category.parent.translation_key` per row, which fires an additional database query each iteration. Add `.select_related('<fk_field>')` for FK / O2O relations or `.prefetch_related('<m2m_or_reverse>')` for many-related lookups, to load everything in …
foundation_cms/legacy_apps/wagtailpages/pagemodels/buyersguide/utils.py:64 N plus onePerformance
medium System graph quality Integrity conf 1.00 Likely N+1 query: `for context in …` triggers a query per row — foundation_cms/legacy_apps/wagtailpages/migrations/0130_fix_urls_on_translation_context_model.py:11
The loop iterates a Django queryset and accesses `context.path.replace` per row, which fires an additional database query each iteration. Add `.select_related('<fk_field>')` for FK / O2O relations or `.prefetch_related('<m2m_or_reverse>')` for many-related lookups, to load everything in 1-2 queries…
foundation_cms/legacy_apps/wagtailpages/migrations/0130_fix_urls_on_translation_context_model.py:11 N plus onePerformance
medium System graph quality Integrity conf 1.00 Likely N+1 query: `for legacy in …` triggers a query per row — foundation_cms/legacy_apps/utility/management/commands/migrate_legacy_images.py:88
The loop iterates a Django queryset and accesses `legacy.tags.exists` per row, which fires an additional database query each iteration. Add `.select_related('<fk_field>')` for FK / O2O relations or `.prefetch_related('<m2m_or_reverse>')` for many-related lookups, to load everything in 1-2 queries i…
foundation_cms/legacy_apps/utility/management/commands/migrate_legacy_images.py:88 N plus onePerformance
medium System graph quality Integrity conf 1.00 Likely N+1 query: `for model in …` triggers a query per row — foundation_cms/core/management/commands/update_multilingual_index.py:48
The loop iterates a Django queryset and accesses `model.objects.live` per row, which fires an additional database query each iteration. Add `.select_related('<fk_field>')` for FK / O2O relations or `.prefetch_related('<m2m_or_reverse>')` for many-related lookups, to load everything in 1-2 queries i…
foundation_cms/core/management/commands/update_multilingual_index.py:48 N plus onePerformance
medium System graph quality Integrity conf 1.00 Likely N+1 query: `for page_type in …` triggers a query per row — foundation_cms/legacy_apps/wagtailpages/utils.py:188
The loop iterates a Django queryset and accesses `page_type.objects.filter` per row, which fires an additional database query each iteration. Add `.select_related('<fk_field>')` for FK / O2O relations or `.prefetch_related('<m2m_or_reverse>')` for many-related lookups, to load everything in 1-2 que…
foundation_cms/legacy_apps/wagtailpages/utils.py:188 N plus onePerformance
medium System graph quality Integrity conf 1.00 Likely N+1 query: `for product in …` triggers a query per row — foundation_cms/legacy_apps/wagtailpages/pagemodels/buyersguide/utils.py:110
The loop iterates a Django queryset and accesses `product.product_categories.all` per row, which fires an additional database query each iteration. Add `.select_related('<fk_field>')` for FK / O2O relations or `.prefetch_related('<m2m_or_reverse>')` for many-related lookups, to load everything in 1…
foundation_cms/legacy_apps/wagtailpages/pagemodels/buyersguide/utils.py:110 N plus onePerformance
medium System graph quality Integrity conf 1.00 Likely N+1 query: `for product_page in …` triggers a query per row — foundation_cms/legacy_apps/wagtailpages/factory/buyersguide.py:461
The loop iterates a Django queryset and accesses `product_page.related_product_pages.add` per row, which fires an additional database query each iteration. Add `.select_related('<fk_field>')` for FK / O2O relations or `.prefetch_related('<m2m_or_reverse>')` for many-related lookups, to load everyth…
foundation_cms/legacy_apps/wagtailpages/factory/buyersguide.py:461 N plus onePerformance
medium System graph quality Integrity conf 1.00 Likely N+1 query: `for restriction in …` triggers a query per row — foundation_cms/legacy_apps/wagtailpages/utils.py:592
The loop iterates a Django queryset and accesses `restriction.groups.all` per row, which fires an additional database query each iteration. Add `.select_related('<fk_field>')` for FK / O2O relations or `.prefetch_related('<m2m_or_reverse>')` for many-related lookups, to load everything in 1-2 queri…
foundation_cms/legacy_apps/wagtailpages/utils.py:592 N plus onePerformance
medium System graph quality Integrity conf 1.00 Likely N+1 query: `for site in …` triggers a query per row — foundation_cms/legacy_apps/utility/management/commands/fix_local_site_bindings.py:14
The loop iterates a Django queryset and accesses `site.root_page.specific` per row, which fires an additional database query each iteration. Add `.select_related('<fk_field>')` for FK / O2O relations or `.prefetch_related('<m2m_or_reverse>')` for many-related lookups, to load everything in 1-2 quer…
foundation_cms/legacy_apps/utility/management/commands/fix_local_site_bindings.py:14 N plus onePerformance
medium System graph quality Integrity conf 1.00 Likely N+1 query: `for translation in …` triggers a query per row — foundation_cms/legacy_apps/wagtailpages/utils.py:585
The loop iterates a Django queryset and accesses `translation.view_restrictions.all` per row, which fires an additional database query each iteration. Add `.select_related('<fk_field>')` for FK / O2O relations or `.prefetch_related('<m2m_or_reverse>')` for many-related lookups, to load everything i…
foundation_cms/legacy_apps/wagtailpages/utils.py:585 N plus onePerformance
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — foundation_cms/images/webp/utils.py:84
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — foundation_cms/legacy_apps/utility/management/commands/review_app_admin.py:110
`requests.post(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — foundation_cms/legacy_apps/utility/management/commands/review_app_setup.py:29
`requests.post(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — foundation_cms/legacy_apps/wagtailpages/utils.py:516
`requests.get(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — foundation_cms/views.py:201
`requests.post(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — tasks.py:210
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
low Security checks cicd CI/CD security conf 0.72 .dockerignore misses sensitive defaults
Add missing patterns such as .env, .git, private keys, certificates, dependency folders, and local databases.
.dockerignore CI/CD securitycontainers
low Security checks cicd CI/CD security conf 0.68 App service does not wait for database health
Give the database a healthcheck and change the dependency to `depends_on: { db: { condition: service_healthy } }`.
docker-compose.yml:3 CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.62 Compose service lacks no-new-privileges hardening
Add `security_opt: ["no-new-privileges:true"]` unless the service has a documented need for privilege escalation.
docker-compose.yml:3 CI/CD securitycontainers
low Security checks cicd CI/CD security conf 0.72 Dockerfile installs recommended OS packages
Add `--no-install-recommends` and explicitly list only packages the image needs.
Dockerfile:152 CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.72 Dockerfile keeps pip download cache
Use `pip install --no-cache-dir ...` in container builds.
Dockerfile:96 CI/CD securitycontainers
low Security checks cicd CI/CD security conf 0.74 Dockerfile leaves apt package indexes in the image layer
End the apt install layer with `rm -rf /var/lib/apt/lists/*`.
Dockerfile:138 CI/CD securitycontainers
low Security checks quality Quality conf 0.60 19 occurrences Duplicated implementation block across source files
Duplicate implementation blocks are maintenance debt. Keep them visible, but they are not a high-severity defect unless the duplicated logic is security-sensitive or drifting.
12 files, 14 locations
foundation_cms/legacy_apps/static/js/foundation/template-js-handler/looping-video-handler.js:14, 15 (2 hits)
foundation_cms/legacy_apps/wagtailpages/pagemodels/buyersguide/campaign_page.py:53, 57 (2 hits)
foundation_cms/blocks/text_image_block.py:32
foundation_cms/legacy_apps/donate_banner/models.py:161
foundation_cms/legacy_apps/static/js/buyers-guide/search/search-filter.js:202
foundation_cms/legacy_apps/static/js/components/foundation-carousel/foundation-carousel.js:1
foundation_cms/legacy_apps/static/js/components/tabbed-profile-directory/locales.js:2
foundation_cms/legacy_apps/static/js/foundation/template-js-handler/blog-hero-video-handler.js:9
duplicationquality
low Security checks quality Quality conf 0.64 Public docs site has no llms.txt
Add llms.txt with the product summary, canonical docs, API endpoints, security guidance, and preferred CLI workflow for AI agents.
llms.txt
low Security checks quality Quality conf 0.50 Public web app has no humans.txt
Add humans.txt with team ownership, contact URL, key documentation links, and the last-updated date.
humans.txt
low Security checks quality Quality conf 0.74 Public web app has no robots.txt
Add robots.txt at the web root or a framework-native robots route. Include an explicit Sitemap directive and disallow only private paths.
robots.txt
low System graph quality Maintenance conf 1.00 48 TODO/FIXME markers
High count of TODO/FIXME/HACK markers — track them as issues so they're not forgotten.
low System graph hardware Coverage conf 1.00 Containers defined but no K8s/orchestration manifest found
Repo has Dockerfiles/compose but no Kubernetes/Nomad manifests. If the target deployment is K8s, the manifests may live in a separate ops repo.
Deployment
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: node:20-bookworm-slim
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
Dockerfile:2 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: python:3.11-slim-bookworm
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
Dockerfile:33 containersPinned dependencies
low System graph software Dead code candidate conf 1.00 File has no detected symbols: .stylelintrc-colors.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: foundation_cms/base/models.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: foundation_cms/constants.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: foundation_cms/legacy_apps/donate/models.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: foundation_cms/legacy_apps/events/urls.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: foundation_cms/legacy_apps/highlights/urls.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: foundation_cms/legacy_apps/project_styleguide/templatetags/localization.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: foundation_cms/legacy_apps/project_styleguide/templatetags/wagtailcore_tags.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: foundation_cms/legacy_apps/project_styleguide/templatetags/wagtailImages_tags.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: foundation_cms/legacy_apps/project_styleguide/templatetags/wagtailmetadatatags.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: foundation_cms/legacy_apps/project_styleguide/templatetags/wagtailroutablepage_tags.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: foundation_cms/legacy_apps/static/js/basket-signup.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: foundation_cms/legacy_apps/static/js/common/inject-react/newsletter-signup-module.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: foundation_cms/legacy_apps/static/js/common/react-ga-proxy.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: foundation_cms/legacy_apps/static/js/common/template-js-handles/datawrapper-embed.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: foundation_cms/legacy_apps/static/js/common/template-js-handles/external-links.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: foundation_cms/legacy_apps/static/js/common/template-js-handles/footer-donate-button.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: foundation_cms/legacy_apps/static/js/common/template-js-handles/header-donate-button.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: foundation_cms/legacy_apps/static/js/donate-banner.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: foundation_cms/legacy_apps/static/js/dropdowns.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: foundation_cms/legacy_apps/static/js/main.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: foundation_cms/legacy_apps/static/js/multipage-nav.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: foundation_cms/legacy_apps/static/js/polyfills.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: foundation_cms/legacy_apps/static/js/utility.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: foundation_cms/wsgi.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/legacy/eslint.config.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/legacy/lint-js.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/legacy/playwright.config.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/legacy/postcss.config.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/legacy/tailwind-plugins/button.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/legacy/tailwind-plugins/components.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/legacy/tailwind.config.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/legacy/test/test-procfile.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/legacy/tests/base-urls.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/legacy/tests/foundation-urls.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/legacy/tests/integration/donate/help/001-help-form.spec.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/legacy/tests/integration/donate/help/utility.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/legacy/tests/integration/navigation/002-mozfest-nav.spec.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/legacy/tests/integration/navigation/003-pni-nav.spec.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/legacy/tests/integration/petition/001-petition-form.spec.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/legacy/tests/integration/petition/002-thank-you.spec.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/legacy/tests/integration/petition/utility.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/legacy/tests/mozfest-urls.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/redesign/build-css.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/redesign/eslint.config.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/redesign/lint-js.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/redesign/playwright.config.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/redesign/postcss.config.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/redesign/tests/redesign-urls.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: manage.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph quality Tests conf 1.00 Low test-to-source ratio
137 tests / 1310 src (ratio 0.10).
low System graph quality Integrity conf 1.00 7 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: foundation_cms/views.py:process_lang_code, foundation_cms/legacy_apps/campaign/views.py:process_lang_code This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or document why t…
7 occurrences
repo-level (7 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 9 occurrences Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: foundation_cms/legacy_apps/donate/migrations/0009_set_relative_url_on_linkblock.py:migrate_linkbuttonblock, foundation_cms/legacy_apps/mozfest/migrations/0049_set_relative_url_on_linkblock.py:migrate_linkbuttonblock, foundation_cms/legacy_apps/wagtail…
9 occurrences
repo-level (9 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 4 occurrences Near-duplicate function bodies in 4 places
Functions with the same first-5-line body hash: foundation_cms/views.py:newsletter_signup_submission_view, foundation_cms/views.py:newsletter_signup_submission, foundation_cms/legacy_apps/campaign/views.py:signup_submission_view, foundation_cms/legacy_apps/campaign/views.py:signup_submission This …
4 occurrences
repo-level (4 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `additional_author_copy` in foundation_cms/legacy_apps/wagtailpages/migrations/0001_initial_2022.py:4009
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `additional_author_copy` in foundation_cms/legacy_apps/wagtailpages/pagemodels/publications/publication.py:179
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `days_old` in foundation_cms/legacy_apps/wagtailpages/tests/buyersguide/test_editorial_content_index.py:87
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `fr_copy` in foundation_cms/legacy_apps/wagtailpages/tests/buyersguide/test_taxonomies.py:37
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `hero__copy` in foundation_cms/static/js/components/expert_hub_page/viz.js:14
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `product_page_copy` in foundation_cms/legacy_apps/wagtailpages/tests/buyersguide/test_product_page_evaluation.py:491
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph software Dead code conf 1.00 Possibly dead Python function: create_blog_with_posts
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
foundation_cms/blog/factories.py:36
low System graph software Dead code conf 1.00 Possibly dead Python function: deconstruct_without_block_definition
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
foundation_cms/base/patches/trim_blocktypes_from_streamfield_migrations.py:11
low System graph software Dead code conf 1.00 Possibly dead Python function: load_manifest_with_partials
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
foundation_cms/base/utils/helpers.py:78
low System graph software Dead code conf 1.00 Possibly dead Python function: safe_handle_image_block
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
foundation_cms/base/patches/wagtail_localize_image_block.py:5
low System graph software Dead code conf 1.00 Possibly dead Python function: sitemap_index
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
foundation_cms/sitemaps.py:26
low System graph software Dead code conf 1.00 Possibly dead Python function: value_from_datadict
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
foundation_cms/base/widgets.py:20
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — copy-db.js:11
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — foundation_cms/legacy_apps/static/js/buyers-guide/search/pni-toggle.js:63
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — foundation_cms/legacy_apps/static/js/foundation/pages/youtube-regrets/intro-tunnel.js:161
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — foundation_cms/static/js/blocks/hero_accordion.js:48
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — foundation_cms/static/js/redesign_main.js:28
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — foundation_cms/static/js/redesign_migrated_content.js:12
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — frontend/legacy/esbuild.config.js:20
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — frontend/legacy/lint-js.js:30
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — frontend/legacy/tests/visual.spec.js:70
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — frontend/legacy/tests/wait-for-images.js:34
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — frontend/redesign/build-css.js:63
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — frontend/redesign/esbuild.config.js:17
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — frontend/redesign/lint-js.js:41
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph quality Integrity conf 1.00 Stub function `get_queryset` (body is just `pass`/`return`) — foundation_cms/legacy_apps/wagtailpages/pagemodels/serializers.py:20
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph api Wiring conf 1.00 Unused endpoint: ANY /
`foundation_cms/urls.py` declares `ANY /` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /^api/csrf/
`foundation_cms/urls.py` declares `ANY /^api/csrf/` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /^en/cms/
`foundation_cms/urls.py` declares `ANY /^en/cms/` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /^environment.json
`foundation_cms/urls.py` declares `ANY /^environment.json` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /^help/
`foundation_cms/urls.py` declares `ANY /^help/` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /^how-do-i-wagtail/
`foundation_cms/urls.py` declares `ANY /^how-do-i-wagtail/` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /^images/([^/]*)/(\d*)/([^/]*)/[^/]*$
`foundation_cms/legacy_apps/wagtailcustomization/image_url_tag_urls.py` declares `ANY /^images/([^/]*)/(\d*)/([^/]*)/[^/]*$` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — con…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /^newsletter-signup/(?P<pk>[0-9]+)/
`foundation_cms/urls.py` declares `ANY /^newsletter-signup/(?P<pk>[0-9]+)/` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /^pt/(?P<rest>.*)
`foundation_cms/urls.py` declares `ANY /^pt/(?P<rest>.*)` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /__debug__/
`foundation_cms/urls.py` declares `ANY /__debug__/` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /_util/authenticate_with_password/<int:page_view_restriction_id>/<int:page_id>/
`foundation_cms/legacy_apps/utility/watail_core_url_override.py` declares `ANY /_util/authenticate_with_password/<int:page_view_restriction_id>/<int:page_id>/` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhoo…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /_util/login/
`foundation_cms/legacy_apps/utility/watail_core_url_override.py` declares `ANY /_util/login/` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting w…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /abtesting/
`foundation_cms/urls.py` declares `ANY /abtesting/` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /api/campaign/
`foundation_cms/urls.py` declares `ANY /api/campaign/` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /api/campaign/^signups/(?P<pk>[0-9]+)/
`foundation_cms/legacy_apps/campaign/urls.py` declares `ANY /api/campaign/^signups/(?P<pk>[0-9]+)/` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documen…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /api/highlights/
`foundation_cms/urls.py` declares `ANY /api/highlights/` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /api/highlights/^(?P<pk>[0-9]+)/
`foundation_cms/legacy_apps/highlights/urls.py` declares `ANY /api/highlights/^(?P<pk>[0-9]+)/` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /api/news/
`foundation_cms/urls.py` declares `ANY /api/news/` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /api/news/^(?P<pk>[0-9]+)/
`foundation_cms/legacy_apps/news/urls.py` declares `ANY /api/news/^(?P<pk>[0-9]+)/` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consume…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /blog/atom/
`foundation_cms/urls.py` declares `ANY /blog/atom/` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /blog/rss/
`foundation_cms/urls.py` declares `ANY /blog/rss/` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /cms/
`foundation_cms/urls.py` declares `ANY /cms/` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /documents/
`foundation_cms/urls.py` declares `ANY /documents/` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /footnotes/
`foundation_cms/urls.py` declares `ANY /footnotes/` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /googled2a9d510ca850787.html
`foundation_cms/urls.py` declares `ANY /googled2a9d510ca850787.html` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /i18n/setlang/
`foundation_cms/urls.py` declares `ANY /i18n/setlang/` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /jsi18n/
`foundation_cms/urls.py` declares `ANY /jsi18n/` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /maintenance/
`foundation_cms/urls.py` declares `ANY /maintenance/` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /newsletter-unsubscribe/
`foundation_cms/urls.py` declares `ANY /newsletter-unsubscribe/` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /pattern-library/
`foundation_cms/urls.py` declares `ANY /pattern-library/` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /search/
`foundation_cms/urls.py` declares `ANY /search/` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /search/autocomplete/
`foundation_cms/urls.py` declares `ANY /search/autocomplete/` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /sentry-debug
`foundation_cms/urls.py` declares `ANY /sentry-debug` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /soc/
`foundation_cms/urls.py` declares `ANY /soc/` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /tito/
`foundation_cms/urls.py` declares `ANY /tito/` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /tito/^ticket-completed/?$
`foundation_cms/legacy_apps/events/urls.py` declares `ANY /tito/^ticket-completed/?$` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consu…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: PATCH /foundation_cms.legacy_apps.events.views.basket
`foundation_cms/legacy_apps/events/tests.py` declares `PATCH /foundation_cms.legacy_apps.events.views.basket` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing …
Unused endpoint
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/core/migrations/0001_squashed_0033_alter_homepage_hero_accordion.py (1371 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/core/migrations/0046_alter_generalpage_body_alter_homepage_body.py (1097 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/core/migrations/0047_alter_generalpage_body_alter_homepage_body.py (1103 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/core/migrations/0049_alter_generalpage_body_alter_homepage_body.py (1093 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/core/migrations/0050_add_newsletter_block.py (1107 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/core/migrations/0051_alter_generalpage_body_alter_homepage_body.py (1127 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/core/migrations/0052_alter_generalpage_body_alter_homepage_body.py (1161 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/core/migrations/0053_alter_generalpage_body_alter_homepage_body.py (1223 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/core/migrations/0054_add_fruelementblock_to_twocolumncontainerblock.py (1227 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/core/migrations/0055_alter_generalpage_body_alter_homepage_body.py (1231 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/core/migrations/0056_add_donatebutton_to_frublock.py (1233 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/core/migrations/0058_update_helptext_on_podcastblock.py (1294 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/core/migrations/0059_alter_generalpage_body_alter_homepage_body.py (1396 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/core/migrations/0061_alter_generalpage_body_alter_homepage_body.py (1464 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/core/migrations/0062_alter_generalpage_body_alter_homepage_body.py (1456 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/core/migrations/0063_alter_generalpage_body_alter_homepage_body.py (1548 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/core/migrations/0066_alter_generalpage_body_alter_homepage_body.py (1512 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/core/migrations/0068_alter_generalpage_body_alter_homepage_body.py (1528 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/core/migrations/0069_alter_generalpage_body_alter_homepage_body.py (1670 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/core/migrations/0070_alter_generalpage_body_alter_homepage_body.py (1678 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/core/migrations/0071_alter_generalpage_body_alter_homepage_body.py (1694 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/core/migrations/0076_alter_generalpage_body_alter_homepage_body.py (1857 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/core/migrations/0077_alter_generalpage_body_alter_homepage_body.py (1999 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/core/migrations/0078_add_donor_help_form.py (1077 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/core/migrations/0079_remove_char_limits_from_portrait_and_timely_activation_cards.py (1914 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/core/migrations/0080_alter_generalpage_body_alter_homepage_body.py (1924 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/gallery_hub/migrations/0001_initial.py (1434 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/gallery_hub/migrations/0006_alter_projectpage_body.py (1048 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/gallery_hub/migrations/0008_remove_projectpage_cta_link_and_more.py (1133 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/donate/migrations/0002_donatehelppage.py (1257 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/donate/migrations/0004_adds_meta_fields_to_listing_block.py (1206 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/donate/migrations/0005_configure_cards_per_row_on_listing_block.py (1222 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/donate/migrations/0006_add_linkblock_to_linkbuttonblock.py (1356 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/donate/migrations/0008_remove_old_url_fields_from_linkblock.py (1354 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/donate/migrations/0010_make_link_to_required_in_link_block.py (1352 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/donate/migrations/0012_update_annotatedimageblock_with_linkblock.py (2873 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/donate/migrations/0013_update_iframeblock_with_linkblock.py (3029 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/donate/migrations/0014_update_imagetextblock_with_linkblock.py (1638 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/donate/migrations/0015_update_videoblock_with_linkblock.py (3536 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/donate/migrations/0016_update_imageteaserblock_with_linkblock.py (3709 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/donate/migrations/0017_update_grouplistingblock_with_linkblock.py (3853 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/donate/migrations/0018_update_imagegridblock_with_linkblock.py (4030 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/donate/migrations/0019_update_listingblock_with_linkblock.py (4367 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/donate/migrations/0020_update_textonlyteaserblock_with_linkblock.py (4496 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/donate/migrations/0022_update_baselinkblock_relative_link_validation.py (2229 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/donate/migrations/0023_update_cardgridblock_with_linkblock.py (4647 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/donate/migrations/0024_alter_donatehelppage_body.py (2270 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/donate/migrations/0025_alter_donatehelppage_body.py (2324 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0001_initial_2022.py (1495 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0003_auto_20220222_2022.py (1219 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0004_rename_video_url_to_embed_url.py (1219 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0005_undo_0004_and_update_labels_instead.py (1225 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0006_rename_recent_entry_block_categoryfilter_topicfilter.py (2420 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0007_adds_listing_block.py (1267 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0008_adds_profile_block.py (1292 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0009_adds_image_feature_block.py (1320 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0010_adds_image_feature_block.py (1320 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0010_adds_text_only_teaser_block.py (1361 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0011_adds_image_teaser_block.py (1398 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0011_adds_text_only_teaser_block.py (1361 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0012_adds_artice_teaser_block.py (1424 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0012_adds_article_teaser_block.py (1387 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0013_adds_group_listing_block.py (1483 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0013_adds_image_teaser_block.py (1424 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0015_add_streamfield_blocks.py (1483 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0016_add_block_with_aside.py (1662 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0017_update_recentblogentries_topic_filter_choices.py (1647 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0018_add_border_options_to_image_teaser_block.py (1661 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0019_alter_mozfestprimarypage_body.py (1494 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0020_add_newsletter_block_to_streamfield.py (1500 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0021_adds_url_field_for_text_teaser.py (1507 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0022_adds_url_field_for_listing_card.py (1521 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0023_add_accordion_to_mozfest_primary_page.py (1590 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0024_wagtail_3_upgrade.py (1579 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0026_alter_mozfestprimarypage_body.py (1615 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0027_alter_mozfestprimarypage_body.py (1615 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0031_adds_stats_block.py (1646 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0032_adds_meta_fields_to_listing_block.py (1685 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0033_adds_image_and_text_carousel.py (1725 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0035_adds_tickets_block.py (1752 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0036_adds_dark_quote_block.py (1755 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0037_adds_cta_block.py (1767 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0038_adds_signup_with_background_block.py (1825 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0040_adds_mixed_content_block.py (1878 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0041_remove_unused_blocks_from_mozfest.py (1622 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0044_configure_cards_per_row_on_listing_block.py (1638 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0046_add_target_linkblock_to_linkbuttonblock_and_ctablock.py (1807 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0048_remove_old_url_fields_from_linkblock.py (1825 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0050_make_link_to_required_in_link_block.py (1822 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0051_alter_mozfestprimarypage_body.py (1822 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0052_update_annotatedimageblock_with_linkblock.py (3812 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0053_update_iframeblock_with_linkblock.py (3968 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0054_update_imagetextblock_with_linkblock.py (2108 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0055_update_videoblock_with_linkblock.py (4475 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0056_update_imageteaserblock_with_linkblock.py (4648 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0057_update_grouplistingblock_with_linkblock.py (4792 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0058_update_imagegridblock_with_listingblock.py (4968 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: foundation_cms/legacy_apps/mozfest/migrations/0059_update_carouseltextblock_with_linkblock.py (5118 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.

Showing first 300 of 389. Refine filters or use the findings page for deep search.

For AI agents: Voting guide (TP/FP) MCP manifest Stdio wrapper SARIF Integrate Findings queue Vote TP/FP on findings to calibrate the engine.
For AI agents + API integrations
Email me when this repo regresses
Free. We re-scan periodically; new criticals → your inbox. No signup required for the scan itself.
API access

This page is publicly accessible at: https://repobility.com/scan/dc250080-d267-4bf9-ac32-2a9943ec5c3e/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/dc250080-d267-4bf9-ac32-2a9943ec5c3e/

Important — please don't re-submit the same URL repeatedly. The submission endpoint is idempotent: re-submitting the same git URL returns this same scan_token, not a new one. To re-scan this repo, sign up free and use the dashboard.