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.

alijawadzaidi/instagram-tools

https://github.com/alijawadzaidi/instagram-tools · scanned 2026-06-17 01:32 UTC (1 month, 2 weeks ago)

34 raw signals (0 security + 34 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 1 month, 2 weeks ago · v2 · last Δ +11.6 (diff) · 34 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 88.3/100 with 100.0% coverage. It contains 788 nodes across 20 cross-layer flows, written primarily in mixed languages. Engine surfaced 34 findings — concentrated in quality (14), software (9), security (7). Risk profile is high: 0 critical, 6 high, 7 medium. Recommended next step: open the quality layer findings first — that's where the highest-impact wins live.

Showing 29 of 34 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 Agent instructions conf 1.00 Agent instruction/config may expose a secret: CLAUDE.md
Agent-facing files are routinely pasted into LLM/tool contexts. Move literal tokens, keys, and passwords into a secret manager or document them as placeholders only.
CLAUDE.md:310 SecretsClaude instruction
high System graph security auth conf 1.00 FastAPI POST `cover` without auth dependency — apps/api/app/tools/download/router.py:80
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
apps/api/app/tools/download/router.py:80 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `formats` without auth dependency — apps/api/app/tools/download/router.py:54
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
apps/api/app/tools/download/router.py:54 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `info` without auth dependency — apps/api/app/tools/profile/router.py:46
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
apps/api/app/tools/profile/router.py:46 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `list_reels` without auth dependency — apps/api/app/tools/profile/router.py:36
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
apps/api/app/tools/profile/router.py:36 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `zip_reels` without auth dependency — apps/api/app/tools/download/router.py:112
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
apps/api/app/tools/download/router.py:112 securityAuth fastapi unauth mutation
medium System graph quality Agent instructions conf 1.00 Agent instructions exist but release-hardening basics are missing
AI-coder instruction files were found, but the repo is missing license, ci, lockfile. Treat this as a contract gap: the agent is guided, but the generated output is not yet guarded by the controls that make it repeatable.
Repo hardeningGenerated repo pattern
medium System graph quality Production readiness conf 1.00 Composite production-readiness gap
Multiple low-cost hardening controls are missing together: license, ci, lockfile. Opus verification showed these co-occurring gaps are a better readiness signal than reading each flag in isolation.
Repo hardeningGenerated repo pattern
medium System graph quality Placeholder conf 1.00 Critical user flow still appears backed by mock or placeholder data
A payment/auth/admin/order/billing-style flow contains mock, fake, TODO, dummy, or placeholder markers in runtime source. In the Fable corpus this is a high-leverage completeness smell: the app can look finished while the money, identity, or tenant flow is still scaffolded.
Mock dataCritical flowGenerated repo pattern
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — apps/api/app/media/audio.py:32
`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 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
medium System graph quality Placeholder conf 1.00 Placeholder or mock-heavy implementation detected
Found 12 placeholder/mock markers across 6 source files. This often means the repo looks complete while core flows still use generated scaffolding or fake data.
Mock dataIncompleteGenerated repo pattern
medium System graph quality Tests conf 1.00 Very low test-to-source ratio
6 test file(s) for 163 source file(s) (ratio 0.04). Consider adding integration or unit tests for critical paths.
Coverage
low System graph quality Debug conf 1.00 Debug logging residue appears in source files
Found 21 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: apps/api/app/integrations/instagram/profile.py:to_dict, apps/api/app/integrations/instagram/profile.py:to_dict This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or document …
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 6 places
Functions with the same first-5-line body hash: apps/api/app/providers/llm/anthropic.py:complete, apps/api/app/providers/llm/anthropic.py:stream, apps/api/app/providers/llm/openai.py:complete, apps/api/app/providers/llm/openai.py:stream This is *the* AI-coder failure mode (4× more duplication in v…
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 quality dependencies conf 1.00 Node manifest has dependencies but no lockfile: packages/api-client/package.json
`package.json` declares dependencies, but no same-directory npm/pnpm/yarn/bun lockfile was found. Generated projects without lockfiles are less reproducible and harder to secure-scan precisely.
packages/api-client/package.json LockfileReproducibilityGenerated repo pattern
low System graph cicd CI/CD security conf 1.00 package.json defines install-time lifecycle scripts
preinstall/install/postinstall/prepare scripts execute during dependency installation. Review them carefully for network calls, obfuscation, shell execution, or credential access.
package.json CI/CD securitySupply chainNpm
low System graph software Dead code conf 1.00 Possibly dead Python function: current_user_id
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
apps/api/app/core/auth.py:25
low System graph software Dead code conf 1.00 Possibly dead Python function: custom_generate_unique_id
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
apps/api/app/main.py:50
low System graph software Dead code conf 1.00 Possibly dead Python function: decorator
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
apps/api/app/jobs/handlers.py:37
low System graph software Dead code conf 1.00 Possibly dead Python function: downgrade
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
apps/api/alembic/versions/3a7b740b4593_create_jobs_table.py:39
low System graph software Dead code conf 1.00 Possibly dead Python function: downgrade
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
apps/api/alembic/versions/b2c1d4e5f6a7_jobs_durability_and_cost.py:36
low System graph software Dead code conf 1.00 Possibly dead Python function: redirect_request
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
apps/api/app/integrations/instagram/http.py:32
low System graph software Dead code conf 1.00 Possibly dead Python function: require_internal_key
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
apps/api/app/core/auth.py:18
low System graph software Dead code conf 1.00 Possibly dead Python function: upgrade
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
apps/api/alembic/versions/3a7b740b4593_create_jobs_table.py:21
low System graph software Dead code conf 1.00 Possibly dead Python function: upgrade
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
apps/api/alembic/versions/b2c1d4e5f6a7_jobs_durability_and_cost.py:23
low System graph quality Integrity conf 1.00 Stub function `redirect_request` (body is just `pass`/`return`) — apps/api/app/integrations/instagram/http.py:32
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
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/144b82ec-398b-419d-a9a3-953959b4d500/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/144b82ec-398b-419d-a9a3-953959b4d500/

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.