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.
27 of your 49 findings came from Repobility's proprietary detections. ✓ Repobility tags below mark them.

Scan timing: clone 1.27s · analysis 6.44s · 0.1 MB · GitHub API rate-limit (preflight)

indmdev/Free-Telegram-Store-Bot

https://github.com/indmdev/Free-Telegram-Store-Bot · scanned 2026-06-05 14:00 UTC (5 days, 6 hours ago) · 10 languages

144 raw signals (48 security + 96 graph) 12th percentile · Python · small (2-20K LoC) System graph score 92 (lower by 41)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 5 days, 6 hours ago · v2 · 65 actionable findings from 2 signal sources. 31 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 40.0 0.15 6.00
security_score 75.7 0.25 18.93
testing_score 0.0 0.20 0.00
documentation_score 84.0 0.15 12.60
practices_score 42.0 0.15 6.30
code_quality 69.0 0.10 6.90
Overall 1.00 50.7
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all
Scan summary Quality grade C- (51/100). Dimensions: security 76, maintainability 40. 48 findings (8 security). 2,870 lines analyzed.

Showing 56 of 65 actionable findings. 96 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 software dependencies conf 0.88 urllib3: GHSA-2xpw-w6gg-jr37
urllib3 streaming API improperly handles highly compressed data
requirements.txt
high Security checks software dependencies conf 0.88 urllib3: GHSA-38jv-5279-wg99
Decompression-bomb safeguards bypassed when following HTTP redirects (streaming API)
requirements.txt
high Security checks software dependencies conf 0.88 urllib3: GHSA-gm62-xv2j-4w53
urllib3 allows an unbounded number of links in the decompression chain
requirements.txt
high Security checks software dependencies conf 0.88 urllib3: PYSEC-2026-141
urllib3 is an HTTP client library for Python. From 1.23 to before 2.7.0, cross-origin redirects followed from the low-level API via ProxyManager.connection_from_url().urlopen(..., assert_same_host=False) still forward these sensitive headers. This vulnerability is fixed in 2.7.0.
requirements.txt
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.
The repository uses web/API frameworks but does not define .repobility/access.yml or equivalent authorization documentation.
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.
purchase.py:87
low Security checks quality Error handling conf 0.55 ✓ Repobility 25 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.
3 files, 25 locations
store_main.py:233, 236, 333, 355, 377, 409, 507, 543, +14 more (22 hits)
purchase.py:66, 87 (2 hits)
InDMCategories.py:35
Error handlingquality
medium Security checks quality Quality conf 0.78 Public web service has no security.txt
security.txt gives researchers and customers a safe disclosure channel. Public web apps and APIs should publish it under /.well-known/security.txt.
.well-known/security.txt
medium Security checks software dependencies conf 0.88 python-dotenv: GHSA-mf9w-mj56-hr94
python-dotenv: Symlink following in set_key allows arbitrary file overwrite via cross-device rename fallback
requirements.txt
medium Security checks software dependencies conf 0.88 urllib3: GHSA-48p4-8xcf-vxj5
urllib3 does not control redirects in browsers and Node.js
requirements.txt
medium Security checks software dependencies conf 0.88 urllib3: GHSA-pq67-6m6q-mj2v
urllib3 redirects are not disabled when retries are disabled on PoolManager instantiation
requirements.txt
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — store_main.py:631
`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 security Coverage conf 1.00 No auth library detected
The scanner did not find any standard auth library (JWT, OAuth, NextAuth, Auth0, etc.). Either auth lives in custom code, in a separate service, or is missing.
auth
medium System graph cicd CI/CD security conf 1.00 No CI/CD pipelines detected
No GitHub Actions, GitLab CI, or CircleCI configs found. Without CI you can't gate deploys on tests/lints.
CI/CD securityCoverage
medium System graph quality Tests conf 1.00 Very low test-to-source ratio
0 test file(s) for 6 source file(s) (ratio 0.00). Consider adding integration or unit tests for critical paths.
Coverage
low Security checks security auth conf 0.76 [AUC005] No authorization-focused tests detected: No test files with common authorization, ownership, 403, admin, or super_admin assertions were found.
No test files with common authorization, ownership, 403, admin, or super_admin assertions were found.
low Security checks software dependencies conf 0.88 flask: GHSA-68rp-wp8r-4726
Flask session does not add `Vary: Cookie` header when accessed in some ways
requirements.txt
low Security checks software dependencies conf 0.90 Python package `Flask` is minor version(s) behind (3.0.3 -> 3.1.3)
`Flask==3.0.3` is minor version(s) behind the latest stable release on PyPI (3.1.3). Pinned-but-stale Python dependencies drift away from upstream security and bugfix releases. This is the version-currency signal Dependabot raises.
requirements.txt:5
low Security checks software dependencies conf 0.90 Python package `python-dotenv` is minor version(s) behind (1.0.1 -> 1.2.2)
`python-dotenv==1.0.1` is minor version(s) behind the latest stable release on PyPI (1.2.2). Pinned-but-stale Python dependencies drift away from upstream security and bugfix releases. This is the version-currency signal Dependabot raises.
requirements.txt:4
low Security checks software dependencies conf 0.90 Python package `urllib3` is minor version(s) behind (2.2.3 -> 2.7.0)
`urllib3==2.2.3` is minor version(s) behind the latest stable release on PyPI (2.7.0). Pinned-but-stale Python dependencies drift away from upstream security and bugfix releases. This is the version-currency signal Dependabot raises.
requirements.txt:2
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 13 places
Functions with the same first-5-line body hash: store_main.py:add_a_product_name, store_main.py:add_a_product_decription, store_main.py:add_a_product_price, store_main.py:add_a_product_photo_link This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-co…
duplicatesduplication
low System graph quality Integrity conf 1.00 8 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: store_main.py:ManageProducts, store_main.py:AddProductsMNG 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.
8 occurrences
repo-level (8 hits)
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: InDMCategories.py:checkint, purchase.py:checkint, store_main.py:checkint, store_main.py:checkint 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 se…
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 5 places
Functions with the same first-5-line body hash: store_main.py:DeleteProductsMNG, store_main.py:EditCategoryNameMNG, store_main.py:edit_a_category_name, store_main.py:ListOrders 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 software Dead code conf 1.00 Possibly dead Python function: add_a_product_category
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
store_main.py:417
low System graph software Dead code conf 1.00 Possibly dead Python function: add_a_product_decription
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
store_main.py:341
low System graph software Dead code conf 1.00 Possibly dead Python function: add_a_product_download_link
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
store_main.py:515
low System graph software Dead code conf 1.00 Possibly dead Python function: add_a_product_keys_file
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
store_main.py:465
low System graph software Dead code conf 1.00 Possibly dead Python function: add_a_product_name
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
store_main.py:319
low System graph software Dead code conf 1.00 Possibly dead Python function: add_a_product_photo_link
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
store_main.py:385
low System graph software Dead code conf 1.00 Possibly dead Python function: add_a_product_price
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
store_main.py:363
low System graph software Dead code conf 1.00 Possibly dead Python function: add_bitcoin_api_key
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
store_main.py:1387
low System graph software Dead code conf 1.00 Possibly dead Python function: add_bitcoin_secret_key
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
store_main.py:1428
low System graph software Dead code conf 1.00 Possibly dead Python function: AddCryptoPaymentMethod
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
InDMDevDB.py:221
low System graph software Dead code conf 1.00 Possibly dead Python function: AddEmptyRow
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
InDMDevDB.py:216
low System graph software Dead code conf 1.00 Possibly dead Python function: callback_query
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
purchase.py:52
low System graph software Dead code conf 1.00 Possibly dead Python function: CleanShopProductTable
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
InDMDevDB.py:824
low System graph software Dead code conf 1.00 Possibly dead Python function: CleanShopUserTable
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
InDMDevDB.py:817
low System graph software Dead code conf 1.00 Possibly dead Python function: clear_expired
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
utils.py:203
low System graph software Dead code conf 1.00 Possibly dead Python function: complete_order
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
store_main.py:804
low System graph software Dead code conf 1.00 Possibly dead Python function: edit_a_category_name
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
store_main.py:964
low System graph software Dead code conf 1.00 Possibly dead Python function: GetAdminNameInDB
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
InDMDevDB.py:377
low System graph software Dead code conf 1.00 Possibly dead Python function: GetAdminsInfo
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
InDMDevDB.py:657
low System graph software Dead code conf 1.00 Possibly dead Python function: GetAllPaymentMethodsInDB
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
InDMDevDB.py:733
low System graph software Dead code conf 1.00 Possibly dead Python function: GetPaymentMethods
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
InDMDevDB.py:683
low System graph software Dead code conf 1.00 Possibly dead Python function: GetPaymentMethodSecretKeys
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
InDMDevDB.py:721
low System graph software Dead code conf 1.00 Possibly dead Python function: GetProduct_A_Category
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
InDMDevDB.py:458
low System graph software Dead code conf 1.00 Possibly dead Python function: GetProductCategories
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
InDMDevDB.py:746
low System graph software Dead code conf 1.00 Possibly dead Python function: GetUserNameInDB
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
InDMDevDB.py:368
low System graph software Dead code conf 1.00 Possibly dead Python function: is_expired
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
utils.py:196
low System graph software Dead code conf 1.00 Possibly dead Python function: manage_categories
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
store_main.py:1035
low System graph software Dead code conf 1.00 Possibly dead Python function: message_all_users
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
store_main.py:1180
low System graph software Dead code conf 1.00 Possibly dead Python function: set
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
utils.py:188
low System graph software Dead code conf 1.00 Possibly dead Python function: UpdateOrderConfirmed
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
InDMDevDB.py:228
low System graph api Wiring conf 1.00 Unused endpoint: ANY /
`store_main.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 quality Complexity conf 1.00 Very large file: store_main.py (1455 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
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/65df4b6b-94ac-4ace-960a-880d5b0966b9/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/65df4b6b-94ac-4ace-960a-880d5b0966b9/

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.