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

Scan timing: clone 27.72s · analysis 5.23s · 180.2 MB · GitHub API rate-limit (preflight)

bugsfreeweb/LiveTVCollector

https://github.com/bugsfreeweb/LiveTVCollector · scanned 2026-06-05 18:31 UTC (4 days, 18 hours ago) · 10 languages

621 raw signals (143 security + 478 graph) 11/13 scanners ran 24th percentile · Python · small (2-20K LoC) System graph score 91 (lower by 34)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 4 days, 18 hours ago · v2 · 42 actionable findings from 2 signal sources. 340 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 100.0 0.25 25.00
testing_score 0.0 0.20 0.00
documentation_score 88.0 0.15 13.20
practices_score 57.0 0.15 8.55
code_quality 47.0 0.10 4.70
Overall 1.00 57.5
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 C (58/100). Dimensions: security 100, maintainability 40. 143 findings (29 security). 16,688 lines analyzed.

Showing 24 of 42 actionable findings. 382 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 25 occurrences [MINED108] `self.check_link_active` used but never assigned in __init__: Method `filter_active_channels` of class `M3UCollector` reads `self.check_link_active`, 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.check_link_active = <default>` in __init__, or add a class-level default.
4 files, 25 locations
BugsfreeMain/Movies-Bollywood.py:121, 142, 144, 147, 150, 151, 154 (7 hits)
BugsfreeMain/TV-Egypt.py:158, 182, 184, 187, 190, 191, 194 (7 hits)
BugsfreeMain/TV-France.py:158, 182, 184, 187, 190, 191, 194 (7 hits)
BugsfreeMain/TV-China.py:158, 182, 190, 191 (4 hits)
low Security checks security Injection conf 1.00 [SEC103] LDAP injection — non-constant search filter: User input concatenated into an LDAP search filter. Attackers inject `*)(uid=*` style payloads to bypass auth or enumerate accounts.
Escape with javax.naming.ldap.Rdn.escapeValue or equivalent. For python-ldap, use ldap.filter.escape_filter_chars. Better: use parameterized search APIs (Spring LdapTemplate filter encoders).
BugsfreeMain/Movies-Private.py:126
low Security checks security Injection conf 1.00 [SEC103] LDAP injection — non-constant search filter: User input concatenated into an LDAP search filter. Attackers inject `*)(uid=*` style payloads to bypass auth or enumerate accounts.
Escape with javax.naming.ldap.Rdn.escapeValue or equivalent. For python-ldap, use ldap.filter.escape_filter_chars. Better: use parameterized search APIs (Spring LdapTemplate filter encoders).
BugsfreeMain/Movies-Bollywood.py:93
high Security checks cicd CI/CD security conf 0.90 ✓ Repobility 5 occurrences GitHub Action is tag-pinned rather than SHA-pinned
[MINED115] Action `bugsfreeweb/LiveTVCollector/.github/workflows/update-indexes.yml` pinned to mutable ref `@main`: `uses: bugsfreeweb/LiveTVCollector/.github/workflows/update-indexes.yml@main` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-a…
5 files, 5 locations
.github/workflows/Movies-WorldCollection.yml:50
.github/workflows/TV-Brazil.yml:50
.github/workflows/TV-China.yml:50
.github/workflows/TV-Collection.yml:50
.github/workflows/TV-Mexico.yml:50
CI/CD securitySupply chainGitHub Actions
high System graph cicd CI/CD security conf 1.00 37 occurrences GitHub Action tracks a moving branch
bugsfreeweb/LiveTVCollector/.github/workflows/update-indexes.yml@main can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
12 files, 12 locations
.github/workflows/Movies-Bollywood.yml:50
.github/workflows/Movies-Hollywood.yml:50
.github/workflows/Movies-Private.yml:50
.github/workflows/Movies-SecretWorld.yml:50
.github/workflows/Movies-VOD.yml:50
.github/workflows/Movies-WorldCollection.yml:50
.github/workflows/Movies-Worldwide.yml:50
.github/workflows/TV-Arabic.yml:50
CI/CD securitySupply chainGithub actions
medium Security checks quality Practices conf 1.00 [CFG006] Missing .gitignore: No .gitignore file. Risk of committing secrets and build artifacts.
Add a .gitignore appropriate for your language/framework.
high Security checks quality Quality conf 0.72 Agent control bridge may listen on a network interface without visible auth
Bind local agent bridges to 127.0.0.1 by default. If remote access is required, require a bearer token or mTLS, enforce origin/CSRF checks for browser clients, and document the threat model.
BugsfreeStreams/processed_links-MXD.json:1822
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.
12 files, 24 locations
BugsfreeStreams/process_streams-BD.py:141, 183 (2 hits)
BugsfreeStreams/process_streams-EG.py:141, 183 (2 hits)
BugsfreeStreams/process_streams-IL.py:141, 183 (2 hits)
BugsfreeStreams/process_streams-IN.py:141, 183 (2 hits)
BugsfreeStreams/process_streams-MX.py:141, 183 (2 hits)
BugsfreeStreams/process_streams-PK.py:141, 183 (2 hits)
BugsfreeStreams/process_streams-PT.py:141, 183 (2 hits)
BugsfreeStreams/process_streams-RU.py:141, 183 (2 hits)
Error handlingquality
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 cicd CI/CD security conf 1.00 37 occurrences GitHub Actions workflow grants broad write permissions
CI tokens with write permissions increase blast radius when an action, dependency, or PR workflow is compromised. Prefer job-level least-privilege permissions.
12 files, 12 locations
.github/workflows/Movies-Bollywood.yml
.github/workflows/Movies-Hollywood.yml
.github/workflows/Movies-Private.yml
.github/workflows/Movies-SecretWorld.yml
.github/workflows/Movies-VOD.yml
.github/workflows/Movies-WorldCollection.yml
.github/workflows/Movies-Worldwide.yml
.github/workflows/TV-Arabic.yml
CI/CD securitySupply chainGithub actions
medium System graph quality Tests conf 1.00 Very low test-to-source ratio
0 test file(s) for 56 source file(s) (ratio 0.00). Consider adding integration or unit tests for critical paths.
Coverage
low Security checks quality Quality conf 0.60 30 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, 27 locations
BugsfreeMain/TV-Bahrain.py:16, 42, 95 (3 hits)
BugsfreeMain/TV-Bangladesh.py:16, 42, 95 (3 hits)
BugsfreeMain/TV-Brazil.py:16, 42, 95 (3 hits)
BugsfreeMain/TV-Canada.py:16, 42, 95 (3 hits)
BugsfreeMain/TV-China.py:16, 42, 95 (3 hits)
BugsfreeMain/TV-Collection.py:16, 42, 95 (3 hits)
BugsfreeMain/TV-Egypt.py:16, 42, 95 (3 hits)
BugsfreeMain/TV-Arabic.py:16, 42 (2 hits)
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 Security checks quality Quality conf 0.72 Public web app has no sitemap
Add sitemap.xml, a sitemap index, or a framework-native sitemap route and reference it from robots.txt.
sitemap.xml
low System graph cicd CI/CD security conf 1.00 131 occurrences GitHub Action is tag-pinned rather than SHA-pinned
actions/checkout@v3 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
12 files, 44 locations
.github/workflows/Movies-WorldCollection.yml:22, 27 (4 hits)
.github/workflows/SpecialCollection.yml:15, 19 (4 hits)
.github/workflows/Stream_checker-BD.yml:15, 18 (4 hits)
.github/workflows/Stream_checker-IL.yml:15, 18 (4 hits)
.github/workflows/Stream_checker-MX.yml:15, 18 (4 hits)
.github/workflows/Stream_checkerVOD-WW.yml:15, 18 (4 hits)
.github/workflows/TV-Brazil.yml:22, 27 (4 hits)
.github/workflows/TV-China.yml:22, 27 (4 hits)
CI/CD securitySupply chainGitHub Actions
low System graph quality Integrity conf 1.00 13 occurrences Near-duplicate function bodies in 17 places
Functions with the same first-5-line body hash: BugsfreeStreams/process_streams-IL.py:create_session, BugsfreeStreams/process_streams-EG.py:create_session, BugsfreeStreams/process_streams-TH.py:create_session, BugsfreeStreams/process_streams-MX.py:create_session This is *the* AI-coder failure mode…
13 occurrences
repo-level (13 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 6 occurrences Near-duplicate function bodies in 31 places
Functions with the same first-5-line body hash: BugsfreeMain/TV-Egypt.py:fetch_content, BugsfreeMain/TV-France.py:fetch_content, BugsfreeMain/TV-China.py:fetch_content, BugsfreeMain/TV-Pakistan.py:fetch_content This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see http…
6 occurrences
repo-level (6 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 37 places
Functions with the same first-5-line body hash: BugsfreeMain/TV-Egypt.py:export_m3u, BugsfreeMain/TV-France.py:export_m3u, BugsfreeMain/Movies-Bollywood.py:export_m3u, BugsfreeMain/TV-China.py:export_m3u This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.…
duplicatesduplication
low System graph software Dead code conf 1.00 13 occurrences Possibly dead Python function: check_link_active
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
12 files, 12 locations
BugsfreeMain/Movies-Bollywood.py:63
BugsfreeMain/Movies-Private.py:70
BugsfreeMain/Movies-WorldCollection.py:63
BugsfreeMain/TV-China.py:70
BugsfreeMain/TV-Egypt.py:70
BugsfreeMain/TV-France.py:70
BugsfreeMain/TV-Indonesia.py:70
BugsfreeMain/TV-Israel.py:70
low System graph software Dead code conf 1.00 17 occurrences Possibly dead Python function: process_source
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
12 files, 12 locations
BugsfreeStreams/process_streams-BD.py:226
BugsfreeStreams/process_streams-BR.py:226
BugsfreeStreams/process_streams-EG.py:226
BugsfreeStreams/process_streams-ID.py:226
BugsfreeStreams/process_streams-IL.py:226
BugsfreeStreams/process_streams-IN.py:226
BugsfreeStreams/process_streams-IT.py:226
BugsfreeStreams/process_streams-MX.py:226
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — SpecialCollection.js:116
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
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/ea7b1d12-0b0c-4fe2-8e91-496ece8dd067/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/ea7b1d12-0b0c-4fe2-8e91-496ece8dd067/

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.