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.

strf01/FindMePokemonCards

https://github.com/strf01/FindMePokemonCards · scanned 2026-06-16 04:39 UTC (1 month, 3 weeks ago)

32 raw signals (0 security + 32 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 1 month, 3 weeks ago · v1 · 32 actionable findings from 1 signal source. Security checks, system graph analysis, and verified AI-agent feedback are merged into one review queue.

JSON
Severity distribution — click a segment to filter
Active filters: 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 78.0/100 with 55.6% coverage. It contains 141 nodes across 18 cross-layer flows, written primarily in mixed languages. Engine surfaced 32 findings — concentrated in security (14), software (12), quality (6). Risk profile is high: 0 critical, 13 high, 1 medium. Recommended next step: open the security layer findings first — that's where the highest-impact wins live.

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

high System graph security auth conf 1.00 Flask mutation route `add_store` without `@login_required` — webserver.py:393
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
webserver.py:393 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `add_wishlist` without `@login_required` — webserver.py:344
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
webserver.py:344 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `api_check_now` without `@login_required` — webserver.py:211
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
webserver.py:211 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `api_pause` without `@login_required` — webserver.py:204
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
webserver.py:204 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `api_start` without `@login_required` — webserver.py:196
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
webserver.py:196 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `delete_keyword` without `@login_required` — webserver.py:279
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
webserver.py:279 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `delete_store` without `@login_required` — webserver.py:421
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
webserver.py:421 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `delete_wishlist` without `@login_required` — webserver.py:359
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
webserver.py:359 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `discord_test` without `@login_required` — webserver.py:327
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
webserver.py:327 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `import_stores` without `@login_required` — webserver.py:431
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
webserver.py:431 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `set_keywords` without `@login_required` — webserver.py:267
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
webserver.py:267 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `set_settings` without `@login_required` — webserver.py:311
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
webserver.py:311 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `update_store` without `@login_required` — webserver.py:409
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
webserver.py:409 securityAuth flask unauth route
medium System graph security Coverage conf 1.00 No auth library detected
The scanner did not find any standard auth library (JWT, OAuth, NextAuth, Auth0, etc.). The repo has auth/admin/session surface indicators, so auth may live in custom code, in a separate service, or be missing.
auth
low System graph quality Production readiness conf 1.00 Composite production-readiness gap
Multiple low-cost hardening controls are missing together: license, ci. Opus verification showed these co-occurring gaps are a better readiness signal than reading each flag in isolation.
Repo hardeningGenerated repo pattern
low System graph quality Debug conf 1.00 Debug logging residue appears in source files
Found 34 console/debugger/print-style debug statements in non-test source. This is a common fast-generation residue before production cleanup.
CleanupRepo hardeningGenerated repo pattern
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: tcg.py:extract_category_term, tcg.py:extract_category 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 they're separate.
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: test_cardmarket.py:check, test_tcg.py:check, test_checks.py:check 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 they're separate.
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 4 places
Functions with the same first-5-line body hash: main.py:make_shopify_fetcher, main.py:make_woocommerce_fetcher, main.py:make_prestashop_fetcher, main.py:make_jumpseller_fetcher This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consol…
duplicatesduplication
low System graph quality License conf 1.00 No license file detected
No LICENSE/COPYING/NOTICE file was found. Generated repositories often omit licensing, which blocks reuse and automated intake.
Repo hardeningGenerated repo pattern
low System graph software Dead code conf 1.00 Possibly dead Python function: fetch_auchan_html
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
main.py:444
low System graph software Dead code conf 1.00 Possibly dead Python function: fetch_continente_html
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
main.py:492
low System graph software Dead code conf 1.00 Possibly dead Python function: fetch_pcconvida_html
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
main.py:251
low System graph software Dead code conf 1.00 Possibly dead Python function: fetch_pcconvida_search
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
main.py:304
low System graph software Dead code conf 1.00 Possibly dead Python function: fetch_ptmerch_category
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
main.py:371
low System graph software Dead code conf 1.00 Possibly dead Python function: fetch_ptmerch_scrape
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
main.py:330
low System graph software Dead code conf 1.00 Possibly dead Python function: fetch_toysrus_api
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
main.py:131
low System graph software Dead code conf 1.00 Possibly dead Python function: fetch_toysrus_scrape
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
main.py:168
low System graph software Dead code conf 1.00 Possibly dead Python function: is_graded
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
tcg.py:145
low System graph software Dead code conf 1.00 Possibly dead Python function: is_other_tcg
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
tcg.py:140
low System graph software Dead code conf 1.00 Possibly dead Python function: parse_toysrus_item
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
main.py:191
low System graph software Dead code conf 1.00 Possibly dead Python function: rank
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cardmarket.py:286
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/d21a8b66-eea5-4246-9ac7-11cf4b253e1c/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/d21a8b66-eea5-4246-9ac7-11cf4b253e1c/

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.