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.

firecrawl/firecrawl

https://github.com/firecrawl/firecrawl · scanned 2026-05-15 17:13 UTC (2 weeks, 6 days ago) · 10 languages

584 findings (188 legacy + 396 scanner) 38th percentile · Typescript · large (100-500K LoC) Scanner says 60 (higher by 13)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 2 weeks, 6 days ago · v1 · 176 findings from 1 source. Findings combine the legacy security pipeline AND the multi-layer engine (atlas, wiring, flows, ranked) AND verified AI agent contributions.

JSON
Score breakdown â 2026-05-14-v3
Component Sub-score Weight Contribution
structure_score 40.0 0.15 6.00
security_score 75.0 0.25 18.75
testing_score 95.0 0.20 19.00
documentation_score 85.0 0.15 12.75
practices_score 65.0 0.15 9.75
code_quality 70.0 0.10 7.00
Overall 1.00 73.2
Severity distribution — click a segment to filter
Active filters: source: legacy × excluding tests × Reset all
Corpus Intelligence Cross-corpus context (cohort percentile, top patterns, fix plan) is shown only on repositories you own. Sign up and connect your repo to view it.
Scan summary Repository scanned at 60.5/100 with 100.0% coverage. It contains 5016 nodes across 30 cross-layer flows, written primarily in mixed languages. Engine surfaced 0 findings. Risk profile is low: 0 critical, 0 high, 0 medium. Recommended next step: open the software layer findings first — that's where the highest-impact wins live.

Showing 94 of 176 findings. Click TP / FP to vote on a finding's accuracy — votes adjust the confidence weighting and improve detection across the platform.

critical Legacy cicd docker conf 0.96 Compose service contains a literal secret environment value
Literal secrets in Compose files are committed to source and exposed through container inspection.
docker-compose.yaml:150 dockerlegacy
critical Legacy cicd docker conf 0.96 Compose service contains a literal secret environment value
Literal secrets in Compose files are committed to source and exposed through container inspection.
docker-compose.yaml:88 dockerlegacy
high Legacy quality error_handling conf 0.85 Bare except: pass — silent failure
except: pass or except Exception: pass — silently swallows everything including KeyboardInterrupt and bugs.
apps/python-sdk/firecrawl/v2/utils/validation.py:426 error_handlinglegacy bare-except-pass · CWE-755
high Legacy quality error_handling conf 0.85 Bare except: pass — silent failure
except: pass or except Exception: pass — silently swallows everything including KeyboardInterrupt and bugs.
apps/python-sdk/firecrawl/v2/utils/validation.py:417 error_handlinglegacy bare-except-pass · CWE-755
high Legacy quality error_handling conf 0.85 Bare except: pass — silent failure
except: pass or except Exception: pass — silently swallows everything including KeyboardInterrupt and bugs.
apps/python-sdk/firecrawl/v2/utils/validation.py:362 error_handlinglegacy bare-except-pass · CWE-755
high Legacy quality error_handling conf 0.85 Bare except: pass — silent failure
except: pass or except Exception: pass — silently swallows everything including KeyboardInterrupt and bugs.
apps/python-sdk/firecrawl/v2/watcher_async.py:79 error_handlinglegacy bare-except-pass · CWE-755
high Legacy quality error_handling conf 0.85 Bare except: pass — silent failure
except: pass or except Exception: pass — silently swallows everything including KeyboardInterrupt and bugs.
apps/python-sdk/firecrawl/v2/watcher.py:78 error_handlinglegacy bare-except-pass · CWE-755
high Legacy quality error_handling conf 0.85 Bare except: pass — silent failure
except: pass or except Exception: pass — silently swallows everything including KeyboardInterrupt and bugs.
apps/python-sdk/firecrawl/v2/watcher.py:65 error_handlinglegacy bare-except-pass · CWE-755
high Legacy quality error_handling conf 0.85 Bare except: pass — silent failure
except: pass or except Exception: pass — silently swallows everything including KeyboardInterrupt and bugs.
apps/python-sdk/firecrawl/v2/watcher.py:257 error_handlinglegacy bare-except-pass · CWE-755
high Legacy quality error_handling conf 0.85 Bare except: pass — silent failure
except: pass or except Exception: pass — silently swallows everything including KeyboardInterrupt and bugs.
apps/python-sdk/firecrawl/v1/client.py:3201 error_handlinglegacy bare-except-pass · CWE-755
high Legacy quality error_handling conf 0.85 Bare except: pass — silent failure
except: pass or except Exception: pass — silently swallows everything including KeyboardInterrupt and bugs.
apps/python-sdk/firecrawl/v1/client.py:3192 error_handlinglegacy bare-except-pass · CWE-755
high Legacy cicd docker conf 0.92 Dockerfile copies the entire context without .dockerignore
COPY . or ADD . sends the full build context to Docker. Without .dockerignore this can include secrets, git history, and local artifacts.
apps/playwright-service-ts/Dockerfile:7 dockerlegacy
high Legacy cicd docker conf 0.92 Dockerfile copies the entire context without .dockerignore
COPY . or ADD . sends the full build context to Docker. Without .dockerignore this can include secrets, git history, and local artifacts.
apps/go-html-to-md-service/Dockerfile:17 dockerlegacy
high Legacy cicd docker conf 0.92 Dockerfile copies the entire context without .dockerignore
COPY . or ADD . sends the full build context to Docker. Without .dockerignore this can include secrets, git history, and local artifacts.
apps/api/Dockerfile:40 dockerlegacy
high Legacy cicd docker conf 0.92 Dockerfile pipes a remote script into a shell
Piping downloaded code directly into a shell bypasses checksum verification and makes builds dependent on mutable remote content.
apps/api/Dockerfile:35 dockerlegacy
high Legacy software supply_chain conf 0.85 Supply chain — curl | bash anti-pattern
curl ... | sh / bash — runs unverified network code.
apps/api/Dockerfile:24 supply_chainlegacy curl-pipe-bash · CWE-494 · A08:2021
medium Legacy 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.
apps/python-sdk/firecrawl/v2/watcher.py:65 error_handlinglegacy
medium Legacy 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.
apps/python-sdk/firecrawl/v2/watcher_async.py:79 error_handlinglegacy
medium Legacy 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.
apps/python-sdk/firecrawl/v1/client.py:3265 error_handlinglegacy
medium Legacy 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.
apps/api/src/controllers/v1/map.ts:154 error_handlinglegacy
medium Legacy 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.
apps/api/src/controllers/v0/crawl.ts:219 error_handlinglegacy
medium Legacy 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.
apps/api/src/services/redis.ts:14 error_handlinglegacy
medium Legacy quality error_handling conf 0.85 Bare except — overly broad
AST detector: bare-except-without-pass
/tank0/claude-archive/opus47/firecrawl__firecrawl/examples/gemini-2.0-crawler/gemini-2.0-crawler.py:240 error_handlinglegacy bare-except-without-pass
medium Legacy quality error_handling conf 0.85 Bare except — overly broad
AST detector: bare-except-without-pass
/tank0/claude-archive/opus47/firecrawl__firecrawl/examples/gemini-2.0-crawler/gemini-2.0-crawler.py:345 error_handlinglegacy bare-except-without-pass
medium Legacy quality error_handling conf 0.85 Bare except — overly broad
AST detector: bare-except-without-pass
/tank0/claude-archive/opus47/firecrawl__firecrawl/examples/gemini-2.0-crawler/gemini-2.0-crawler.py:247 error_handlinglegacy bare-except-without-pass
medium Legacy quality error_handling conf 0.85 Bare except — overly broad
AST detector: bare-except-without-pass
/tank0/claude-archive/opus47/firecrawl__firecrawl/examples/gemini-2.0-crawler/gemini-2.0-crawler.py:89 error_handlinglegacy bare-except-without-pass
medium Legacy quality error_handling conf 0.85 Bare except — overly broad
AST detector: bare-except-without-pass
/tank0/claude-archive/opus47/firecrawl__firecrawl/examples/gemini-2.0-crawler/gemini-2.0-crawler.py:67 error_handlinglegacy bare-except-without-pass
medium Legacy quality error_handling conf 0.85 Bare except — overly broad
AST detector: bare-except-without-pass
/tank0/claude-archive/opus47/firecrawl__firecrawl/examples/crm_lead_enrichment/crm_lead_enrichment.py:38 error_handlinglegacy bare-except-without-pass
medium Legacy quality error_handling conf 0.85 Bare except — overly broad
AST detector: bare-except-without-pass
/tank0/claude-archive/opus47/firecrawl__firecrawl/examples/crm_lead_enrichment/crm_lead_enrichment.py:99 error_handlinglegacy bare-except-without-pass
medium Legacy quality error_handling conf 0.85 Bare except — overly broad
AST detector: bare-except-without-pass
/tank0/claude-archive/opus47/firecrawl__firecrawl/examples/crm_lead_enrichment/crm_lead_enrichment.py:79 error_handlinglegacy bare-except-without-pass
medium Legacy quality error_handling conf 0.85 Bare except — overly broad
AST detector: bare-except-without-pass
/tank0/claude-archive/opus47/firecrawl__firecrawl/examples/crm_lead_enrichment/crm_lead_enrichment.py:47 error_handlinglegacy bare-except-without-pass
high Legacy security crypto conf 0.85 Crypto — plaintext HTTP for sensitive endpoint
Hardcoded http:// (not localhost) for endpoints that handle credentials or data.
apps/api/native/src/html.rs:767 cryptolegacy http-not-https · CWE-319 · A02:2021
high Legacy security crypto conf 0.85 Crypto — plaintext HTTP for sensitive endpoint
Hardcoded http:// (not localhost) for endpoints that handle credentials or data.
apps/api/native/src/html.rs:86 cryptolegacy http-not-https · CWE-319 · A02:2021
high Legacy security crypto conf 0.85 Crypto — plaintext HTTP for sensitive endpoint
Hardcoded http:// (not localhost) for endpoints that handle credentials or data.
apps/api/native/src/html.rs:85 cryptolegacy http-not-https · CWE-319 · A02:2021
high Legacy security crypto conf 0.85 Crypto — plaintext HTTP for sensitive endpoint
Hardcoded http:// (not localhost) for endpoints that handle credentials or data.
apps/api/src/lib/extract/extraction-service.ts:1058 cryptolegacy http-not-https · CWE-319 · A02:2021
high Legacy security crypto conf 0.85 Crypto — plaintext HTTP for sensitive endpoint
Hardcoded http:// (not localhost) for endpoints that handle credentials or data.
apps/api/src/lib/branding/merge.ts:78 cryptolegacy http-not-https · CWE-319 · A02:2021
high Legacy security crypto conf 0.85 Crypto — plaintext HTTP for sensitive endpoint
Hardcoded http:// (not localhost) for endpoints that handle credentials or data.
apps/api/src/lib/validateUrl.ts:200 cryptolegacy http-not-https · CWE-319 · A02:2021
high Legacy security crypto conf 0.85 Crypto — plaintext HTTP for sensitive endpoint
Hardcoded http:// (not localhost) for endpoints that handle credentials or data.
apps/api/src/lib/validateUrl.ts:137 cryptolegacy http-not-https · CWE-319 · A02:2021
high Legacy security crypto conf 0.85 Crypto — plaintext HTTP for sensitive endpoint
Hardcoded http:// (not localhost) for endpoints that handle credentials or data.
apps/api/src/lib/validateUrl.ts:54 cryptolegacy http-not-https · CWE-319 · A02:2021
high Legacy security crypto conf 0.85 Crypto — plaintext HTTP for sensitive endpoint
Hardcoded http:// (not localhost) for endpoints that handle credentials or data.
apps/api/src/lib/validateUrl.ts:24 cryptolegacy http-not-https · CWE-319 · A02:2021
high Legacy security crypto conf 0.85 Crypto — plaintext HTTP for sensitive endpoint
Hardcoded http:// (not localhost) for endpoints that handle credentials or data.
apps/api/src/services/agentLivecastWS.ts:27 cryptolegacy http-not-https · CWE-319 · A02:2021
high Legacy security crypto conf 0.85 Crypto — plaintext HTTP for sensitive endpoint
Hardcoded http:// (not localhost) for endpoints that handle credentials or data.
apps/api/src/services/redlock.ts:11 cryptolegacy http-not-https · CWE-319 · A02:2021
high Legacy security crypto conf 0.85 Crypto — plaintext HTTP for sensitive endpoint
Hardcoded http:// (not localhost) for endpoints that handle credentials or data.
apps/api/src/scraper/scrapeURL/engines/fire-engine/branding-script/images.ts:787 cryptolegacy http-not-https · CWE-319 · A02:2021
high Legacy security crypto conf 0.85 Crypto — plaintext HTTP for sensitive endpoint
Hardcoded http:// (not localhost) for endpoints that handle credentials or data.
apps/api/src/scraper/scrapeURL/engines/fire-engine/branding-script/images.ts:751 cryptolegacy http-not-https · CWE-319 · A02:2021
high Legacy security crypto conf 0.85 Crypto — plaintext HTTP for sensitive endpoint
Hardcoded http:// (not localhost) for endpoints that handle credentials or data.
apps/api/src/scraper/scrapeURL/engines/fire-engine/branding-script/images.ts:526 cryptolegacy http-not-https · CWE-319 · A02:2021
high Legacy security crypto conf 0.85 Crypto — plaintext HTTP for sensitive endpoint
Hardcoded http:// (not localhost) for endpoints that handle credentials or data.
apps/api/src/scraper/scrapeURL/engines/fire-engine/branding-script/images.ts:199 cryptolegacy http-not-https · CWE-319 · A02:2021
high Legacy security crypto conf 0.85 Crypto — plaintext HTTP for sensitive endpoint
Hardcoded http:// (not localhost) for endpoints that handle credentials or data.
apps/api/src/scraper/scrapeURL/engines/fire-engine/branding-script/svg-utils.ts:44 cryptolegacy http-not-https · CWE-319 · A02:2021
high Legacy security crypto conf 0.85 Crypto — plaintext HTTP for sensitive endpoint
Hardcoded http:// (not localhost) for endpoints that handle credentials or data.
apps/api/src/scraper/scrapeURL/engines/utils/safeFetch.ts:27 cryptolegacy http-not-https · CWE-319 · A02:2021
high Legacy security crypto conf 0.85 Crypto — plaintext HTTP for sensitive endpoint
Hardcoded http:// (not localhost) for endpoints that handle credentials or data.
apps/api/src/scraper/scrapeURL/lib/rewriteUrl.ts:38 cryptolegacy http-not-https · CWE-319 · A02:2021
high Legacy security crypto conf 0.85 Crypto — plaintext HTTP for sensitive endpoint
Hardcoded http:// (not localhost) for endpoints that handle credentials or data.
apps/api/src/scraper/scrapeURL/lib/rewriteUrl.ts:30 cryptolegacy http-not-https · CWE-319 · A02:2021
high Legacy security crypto conf 0.85 Crypto — plaintext HTTP for sensitive endpoint
Hardcoded http:// (not localhost) for endpoints that handle credentials or data.
apps/api/src/scraper/scrapeURL/lib/rewriteUrl.ts:18 cryptolegacy http-not-https · CWE-319 · A02:2021
high Legacy security crypto conf 0.85 Crypto — plaintext HTTP for sensitive endpoint
Hardcoded http:// (not localhost) for endpoints that handle credentials or data.
apps/api/src/scraper/scrapeURL/lib/rewriteUrl.ts:6 cryptolegacy http-not-https · CWE-319 · A02:2021
high Legacy security crypto conf 0.85 Crypto — plaintext HTTP for sensitive endpoint
Hardcoded http:// (not localhost) for endpoints that handle credentials or data.
apps/api/src/scraper/scrapeURL/lib/extractImages.ts:32 cryptolegacy http-not-https · CWE-319 · A02:2021
high Legacy security crypto conf 0.85 Crypto — plaintext HTTP for sensitive endpoint
Hardcoded http:// (not localhost) for endpoints that handle credentials or data.
apps/api/src/scraper/scrapeURL/lib/extractLinks.ts:30 cryptolegacy http-not-https · CWE-319 · A02:2021
high Legacy security crypto conf 0.85 Crypto — plaintext HTTP for sensitive endpoint
Hardcoded http:// (not localhost) for endpoints that handle credentials or data.
apps/api/src/scraper/scrapeURL/error.ts:77 cryptolegacy http-not-https · CWE-319 · A02:2021
high Legacy security crypto conf 0.85 Crypto — plaintext HTTP for sensitive endpoint
Hardcoded http:// (not localhost) for endpoints that handle credentials or data.
apps/api/src/controllers/v1/types.ts:37 cryptolegacy http-not-https · CWE-319 · A02:2021
high Legacy security crypto conf 0.85 Crypto — plaintext HTTP for sensitive endpoint
Hardcoded http:// (not localhost) for endpoints that handle credentials or data.
apps/api/src/controllers/v2/types.ts:34 cryptolegacy http-not-https · CWE-319 · A02:2021
high Legacy security crypto conf 0.85 Crypto — plaintext HTTP for sensitive endpoint
Hardcoded http:// (not localhost) for endpoints that handle credentials or data.
apps/python-sdk/firecrawl/v2/methods/batch.py:410 cryptolegacy http-not-https · CWE-319 · A02:2021
high Legacy security crypto conf 0.85 Crypto — plaintext HTTP for sensitive endpoint
Hardcoded http:// (not localhost) for endpoints that handle credentials or data.
apps/python-sdk/firecrawl/v2/methods/batch.py:409 cryptolegacy http-not-https · CWE-319 · A02:2021
high Legacy security crypto conf 0.85 Crypto — plaintext HTTP for sensitive endpoint
Hardcoded http:// (not localhost) for endpoints that handle credentials or data.
apps/python-sdk/firecrawl/v2/watcher_async.py:58 cryptolegacy http-not-https · CWE-319 · A02:2021
high Legacy security crypto conf 0.85 Crypto — plaintext HTTP for sensitive endpoint
Hardcoded http:// (not localhost) for endpoints that handle credentials or data.
apps/python-sdk/firecrawl/v2/watcher.py:84 cryptolegacy http-not-https · CWE-319 · A02:2021
high Legacy security crypto conf 0.85 Crypto — plaintext HTTP for sensitive endpoint
Hardcoded http:// (not localhost) for endpoints that handle credentials or data.
docker-compose.yaml:27 cryptolegacy http-not-https · CWE-319 · A02:2021
medium Legacy cicd docker conf 0.74 Database service has no persistent data volume
Database containers store data in the writable container layer unless a volume or bind mount is attached to the image's data directory. Recreating the container can lose state.
docker-compose.yaml:132 dockerlegacy
medium Legacy cicd docker conf 0.74 Database service has no persistent data volume
Database containers store data in the writable container layer unless a volume or bind mount is attached to the image's data directory. Recreating the container can lose state.
docker-compose.yaml:115 dockerlegacy
medium Legacy cicd docker conf 0.90 Docker build context has no .dockerignore
Without .dockerignore, build context can include source history, local env files, dependencies, and generated artifacts.
.dockerignore dockerlegacy
high Legacy cicd docker conf 0.82 Docker final stage has no non-root USER
Docker images run as root unless the image or Dockerfile switches to a non-root user.
apps/redis/Dockerfile:2 dockerlegacy
high Legacy cicd docker conf 0.82 Docker final stage has no non-root USER
Docker images run as root unless the image or Dockerfile switches to a non-root user.
apps/playwright-service-ts/Dockerfile:1 dockerlegacy
high Legacy cicd docker conf 0.82 Docker final stage has no non-root USER
Docker images run as root unless the image or Dockerfile switches to a non-root user.
apps/nuq-postgres/Dockerfile:4 dockerlegacy
high Legacy cicd docker conf 0.82 Docker final stage has no non-root USER
Docker images run as root unless the image or Dockerfile switches to a non-root user.
apps/go-html-to-md-service/Dockerfile:23 dockerlegacy
high Legacy cicd docker conf 0.82 Docker final stage has no non-root USER
Docker images run as root unless the image or Dockerfile switches to a non-root user.
apps/api/Dockerfile:55 dockerlegacy
medium Legacy cicd docker conf 0.94 Dockerfile base image uses the latest tag
The latest tag is mutable and can change without a code review, producing different images from the same source.
apps/go-html-to-md-service/Dockerfile:23 dockerlegacy
medium Legacy cicd docker conf 0.90 Dockerfile installs dependencies after copying the full source tree
When dependency installation comes after COPY ., any source change invalidates the dependency layer and makes Docker rebuild much more slowly.
apps/api/Dockerfile:43 dockerlegacy
high Legacy quality quality conf 0.85 Magic number used as default arg
Using hardcoded default values for complex configuration objects makes the code brittle and difficult to manage. Consider using a dedicated factory or builder pattern. Auto-promoted from proposal 444 on 2026-05-12. Synth confidence: 0.85. FP estimate: 0.00.
apps/api/src/scraper/scrapeURL/transformers/sendToSearchIndex.ts:58 qualitylegacy magic-number-default
high Legacy quality quality conf 0.85 Magic number used as default arg
Using hardcoded default values for complex configuration objects makes the code brittle and difficult to manage. Consider using a dedicated factory or builder pattern. Auto-promoted from proposal 444 on 2026-05-12. Synth confidence: 0.85. FP estimate: 0.00.
apps/python-sdk/firecrawl/v2/methods/aio/browser.py:124 qualitylegacy magic-number-default
high Legacy quality quality conf 0.85 Magic number used as default arg
Using hardcoded default values for complex configuration objects makes the code brittle and difficult to manage. Consider using a dedicated factory or builder pattern. Auto-promoted from proposal 444 on 2026-05-12. Synth confidence: 0.85. FP estimate: 0.00.
apps/python-sdk/firecrawl/v2/methods/aio/browser.py:66 qualitylegacy magic-number-default
high Legacy quality quality conf 0.85 Magic number used as default arg
Using hardcoded default values for complex configuration objects makes the code brittle and difficult to manage. Consider using a dedicated factory or builder pattern. Auto-promoted from proposal 444 on 2026-05-12. Synth confidence: 0.85. FP estimate: 0.00.
apps/python-sdk/firecrawl/v2/methods/browser.py:118 qualitylegacy magic-number-default
high Legacy quality quality conf 0.85 Magic number used as default arg
Using hardcoded default values for complex configuration objects makes the code brittle and difficult to manage. Consider using a dedicated factory or builder pattern. Auto-promoted from proposal 444 on 2026-05-12. Synth confidence: 0.85. FP estimate: 0.00.
apps/python-sdk/firecrawl/v2/methods/browser.py:67 qualitylegacy magic-number-default
high Legacy quality quality conf 0.85 Magic number used as default arg
Using hardcoded default values for complex configuration objects makes the code brittle and difficult to manage. Consider using a dedicated factory or builder pattern. Auto-promoted from proposal 444 on 2026-05-12. Synth confidence: 0.85. FP estimate: 0.00.
apps/python-sdk/firecrawl/v2/client.py:1108 qualitylegacy magic-number-default
high Legacy quality quality conf 0.85 Magic number used as default arg
Using hardcoded default values for complex configuration objects makes the code brittle and difficult to manage. Consider using a dedicated factory or builder pattern. Auto-promoted from proposal 444 on 2026-05-12. Synth confidence: 0.85. FP estimate: 0.00.
apps/python-sdk/firecrawl/v2/client.py:1077 qualitylegacy magic-number-default
high Legacy quality quality conf 0.85 Magic number used as default arg
Using hardcoded default values for complex configuration objects makes the code brittle and difficult to manage. Consider using a dedicated factory or builder pattern. Auto-promoted from proposal 444 on 2026-05-12. Synth confidence: 0.85. FP estimate: 0.00.
apps/python-sdk/firecrawl/v2/client_async.py:561 qualitylegacy magic-number-default
high Legacy quality quality conf 0.85 Magic number used as default arg
Using hardcoded default values for complex configuration objects makes the code brittle and difficult to manage. Consider using a dedicated factory or builder pattern. Auto-promoted from proposal 444 on 2026-05-12. Synth confidence: 0.85. FP estimate: 0.00.
apps/python-sdk/firecrawl/v2/client_async.py:530 qualitylegacy magic-number-default
low Legacy cicd docker conf 0.68 App service does not wait for database health
depends_on controls startup order, but without condition: service_healthy an app can start while the database is still initializing and fail intermittently.
docker-compose.yaml:88 dockerlegacy
low Legacy quality quality conf 0.85 Cluster of TODOs in one file
Code path with a TODO/FIXME/HACK comment that gates correctness — left for later but never resolved.
apps/api/src/scraper/scrapeURL/transformers/llmExtract.ts:1075 qualitylegacy todo-bomb
high Legacy cicd docker conf 0.56 Compose service does not declare a runtime user
If the image does not define USER internally, this service may run as root.
docker-compose.yaml:150 dockerlegacy
high Legacy cicd docker conf 0.56 Compose service does not declare a runtime user
If the image does not define USER internally, this service may run as root.
docker-compose.yaml:88 dockerlegacy
high Legacy cicd docker conf 0.56 Compose service does not declare a runtime user
If the image does not define USER internally, this service may run as root.
docker-compose.yaml:59 dockerlegacy
high Legacy cicd docker conf 0.56 Compose service does not declare a runtime user
If the image does not define USER internally, this service may run as root.
apps/go-html-to-md-service/docker-compose.yml:3 dockerlegacy
high Legacy cicd docker conf 0.62 Compose service lacks no-new-privileges hardening
no-new-privileges prevents processes from gaining additional privileges through setuid binaries or file capabilities.
docker-compose.yaml:150 dockerlegacy
high Legacy cicd docker conf 0.62 Compose service lacks no-new-privileges hardening
no-new-privileges prevents processes from gaining additional privileges through setuid binaries or file capabilities.
docker-compose.yaml:88 dockerlegacy
high Legacy cicd docker conf 0.62 Compose service lacks no-new-privileges hardening
no-new-privileges prevents processes from gaining additional privileges through setuid binaries or file capabilities.
docker-compose.yaml:59 dockerlegacy
high Legacy cicd docker conf 0.62 Compose service lacks no-new-privileges hardening
no-new-privileges prevents processes from gaining additional privileges through setuid binaries or file capabilities.
apps/go-html-to-md-service/docker-compose.yml:3 dockerlegacy
low Legacy cicd docker conf 0.72 Database service has no healthcheck
Compose starts dependent containers in dependency order, but it does not wait for a database to be ready unless a healthcheck is defined and dependents use service_healthy.
docker-compose.yaml:115 dockerlegacy
low Legacy cicd docker conf 0.72 Dockerfile installs recommended OS packages
Installing recommended packages often pulls in unnecessary runtime surface area.
apps/api/Dockerfile:58 dockerlegacy
low Legacy cicd docker conf 0.72 Dockerfile installs recommended OS packages
Installing recommended packages often pulls in unnecessary runtime surface area.
apps/api/Dockerfile:23 dockerlegacy
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/46112e33-01b1-4ede-b119-a5ba42a086d8/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/46112e33-01b1-4ede-b119-a5ba42a086d8/

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.