← Back to scan
File as GitHub Issue repo: graphql-python/graphql-core

Push this scan report to graphql-python/graphql-core

Click the green button below to open GitHub’s new-issue form, pre-filled with the report title, summary table, top findings, and an embedded score-card image. No authentication needed — you review on GitHub before submitting. Repobility is credited as the scanner.

Embedded score card image

This image will render at the top of the issue body. Hosted on Repobility, refreshes automatically after re-scans.

Repobility score card

Issue title

Server-Side Request Forgery (SSRF) — outbound HTTP from user input

Curate findings to include

Pick exactly which findings appear in the issue body. By default the top 5 are included. Uncheck noise, check what matters.

Top 5 (default)
Severity Rule Title File:line
CRIT MINED107 Missing import: `string` used but not imported src/graphql/language/printer.py:447
CRIT MINED107 Missing import: `queue` used but not imported src/graphql/execution/incremental_graph…:93
CRIT MINED116 Workflow uses `secrets.CODSPEED_TOKEN` on a `pull_request` trigger .github/workflows/benchmark.yml:41
HIGH SEC029 [SEC029] Server-Side Request Forgery (SSRF) — outbound HTTP from user input: Outbound HTT… src/graphql/utilities/print_schema.py:152
HIGH SEC029 [SEC029] Server-Side Request Forgery (SSRF) — outbound HTTP from user input: Outbound HTT… src/graphql/utilities/get_introspection…:184
HIGH SEC128 [SEC128] Async function without await — fire-and-forget Promise (AI mistake): Async call … src/graphql/pyutils/ref_set.py:31
HIGH SEC128 [SEC128] Async function without await — fire-and-forget Promise (AI mistake): Async call … src/graphql/pyutils/ref_map.py:28
HIGH MINED001 [MINED001] Bare Except Pass: except: pass or except Exception: pass — silently swallows e… src/graphql/pyutils/boxed_awaitable_or_…:32
HIGH MINED001 [MINED001] Bare Except Pass: except: pass or except Exception: pass — silently swallows e… src/graphql/execution/async_iterables.py:35
HIGH MINED108 `self.replace_named_type` used but never assigned in __init__ src/graphql/utilities/extend_schema.py:238
HIGH MINED108 `self.build_type` used but never assigned in __init__ src/graphql/utilities/extend_schema.py:231
HIGH MINED108 `self.get_operation_types` used but never assigned in __init__ src/graphql/utilities/extend_schema.py:243
HIGH MINED108 `self.get_operation_types` used but never assigned in __init__ src/graphql/utilities/extend_schema.py:241
HIGH MINED108 `self.extend_named_type` used but never assigned in __init__ src/graphql/utilities/extend_schema.py:225
HIGH COMP001 [COMP001] High cognitive complexity: Function `__init__` has cognitive complexity 26 (Son… src/graphql/error/graphql_error.py:129
HIGH MINED115 Action `pypa/gh-action-pypi-publish` pinned to mutable ref `@release/v1` .github/workflows/publish.yml:37
HIGH MINED115 Action `astral-sh/setup-uv` pinned to mutable ref `@v8.2.0` .github/workflows/publish.yml:29
HIGH MINED115 Action `actions/setup-python` pinned to mutable ref `@v6` .github/workflows/publish.yml:23
HIGH MINED115 Action `actions/checkout` pinned to mutable ref `@v6` .github/workflows/publish.yml:19
HIGH MINED115 Action `CodSpeedHQ/action` pinned to mutable ref `@v4` .github/workflows/benchmark.yml:38
HIGH MINED115 Action `astral-sh/setup-uv` pinned to mutable ref `@v8.2.0` .github/workflows/benchmark.yml:29
HIGH MINED115 Action `actions/setup-python` pinned to mutable ref `@v6` .github/workflows/benchmark.yml:22
HIGH MINED115 Action `actions/checkout` pinned to mutable ref `@v6` .github/workflows/benchmark.yml:18
HIGH MINED115 Action `astral-sh/setup-uv` pinned to mutable ref `@v8.2.0` .github/workflows/lint.yml:23
HIGH MINED115 Action `actions/setup-python` pinned to mutable ref `@v6` .github/workflows/lint.yml:17
HIGH MINED115 Action `actions/checkout` pinned to mutable ref `@v6` .github/workflows/lint.yml:13
HIGH MINED115 Action `astral-sh/setup-uv` pinned to mutable ref `@v8.2.0` .github/workflows/test.yml:27
HIGH MINED115 Action `actions/setup-python` pinned to mutable ref `@v6` .github/workflows/test.yml:21
HIGH MINED115 Action `actions/checkout` pinned to mutable ref `@v6` .github/workflows/test.yml:17
MED MINED111 Bare except continues silently src/graphql/validation/rules/values_of_…:187
MED MINED111 Bare except continues silently src/graphql/execution/execute.py:2020
MED MINED111 Bare except continues silently src/graphql/execution/execute.py:1289
MED MINED111 Bare except continues silently src/graphql/execution/execute.py:712
MED MINED111 Bare except continues silently src/graphql/execution/execute.py:2000
MED MINED111 Bare except continues silently src/graphql/execution/execute.py:1913
MED MINED111 Bare except continues silently src/graphql/execution/execute.py:1347
MED MINED111 Bare except continues silently src/graphql/execution/execute.py:1308
MED MINED111 Bare except continues silently src/graphql/execution/execute.py:921
MED MINED111 Bare except continues silently src/graphql/execution/execute.py:724
MED MINED111 Bare except continues silently src/graphql/utilities/value_from_ast.py:148
MED MINED111 Bare except continues silently src/graphql/utilities/value_to_literal.…:101
MED MINED111 Bare except continues silently src/graphql/utilities/coerce_input_valu…:179
MED MINED111 Bare except continues silently src/graphql/utilities/coerce_input_valu…:321
MED AUC001 [AUC001] No Repobility access matrix policy found: The repository uses web/API frameworks…
LOW COMP001 [COMP001] High cognitive complexity: Function `build_execution_plan` has cognitive comple… src/graphql/execution/build_execution_p…:28
LOW COMP001 [COMP001] High cognitive complexity: Function `located_error` has cognitive complexity 9 … src/graphql/error/located_error.py:22
LOW AIC003 Duplicated implementation block across source files src/graphql/validation/__init__.py:87
LOW AIC003 Duplicated implementation block across source files src/graphql/type/__init__.py:13
LOW AIC003 Duplicated implementation block across source files src/graphql/language/ast.py:46
LOW AIC003 Duplicated implementation block across source files src/graphql/language/__init__.py:24
INFO MINED072 [MINED072] Python Pass Only Class: class Foo: pass — stub waiting to be filled in. src/graphql/utilities/get_introspection…:208
INFO MINED050 [MINED050] Stub Only Function: Function declared but body is just pass, return None, rais… src/graphql/validation/validation_conte…:138
INFO MINED050 [MINED050] Stub Only Function: Function declared but body is just pass, return None, rais… src/graphql/utilities/get_introspection…:209
INFO MINED050 [MINED050] Stub Only Function: Function declared but body is just pass, return None, rais… src/graphql/pyutils/boxed_awaitable_or_…:33
Reset to top 5 54 findings available (after auto-suppression of test files + won't-fix)

Issue body (markdown)

## Code-quality scan: `graphql-python/graphql-core`

**Score: 93/100 (A-)**  ·  85 findings  ·  scanned 2026-06-05 22:33 UTC  ·  86,237 LOC

| Severity | Count |
|---|---|
| CRITICAL | 3 |
| HIGH | 26 |
| MEDIUM | 15 |
| LOW | 6 |

📊 [Full filterable report](https://repobility.com/scan/95bdd694-bfab-4cec-b8b8-00796dd8874b/)  ·  ![scorecard](https://repobility.com/scan/95bdd694-bfab-4cec-b8b8-00796dd8874b/report.png?v=1780698834-s2)

### Top findings

1. **CRITICAL** `MINED107` — Missing import: `string` used but not imported
   `src/graphql/language/printer.py:447` · ✓ Repobility
2. **CRITICAL** `MINED107` — Missing import: `queue` used but not imported
   `src/graphql/execution/incremental_graph.py:93` · ✓ Repobility
3. **CRITICAL** `MINED116` — Workflow uses `secrets.CODSPEED_TOKEN` on a `pull_request` trigger
   `.github/workflows/benchmark.yml:41` · ✓ Repobility
4. **HIGH** `SEC029` — Server-Side Request Forgery (SSRF) — outbound HTTP from user input
   `src/graphql/utilities/print_schema.py:152` · A10:2021 SSRF
5. **HIGH** `SEC029` — Server-Side Request Forgery (SSRF) — outbound HTTP from user input
   `src/graphql/utilities/get_introspection_query.py:184` · A10:2021 SSRF

---

**Security note**: this issue is public. If any flagged finding is a real, exploitable vulnerability, please redirect to your `SECURITY.md` policy or open a [private security advisory](https://docs.github.com/en/code-security/security-advisories/guidance-on-reporting-and-writing-information-about-vulnerabilities/privately-reporting-a-security-vulnerability) instead. We're happy to close this and re-submit privately.

---

_Filed automatically. Close this issue if not useful — we won't refile. Full report: https://repobility.com/scan/95bdd694-bfab-4cec-b8b8-00796dd8874b/_
Already filed
This repo publishes a SECURITY.md policy and the scan contains 4 Critical/High security finding(s). Public issue filing would violate coordinated disclosure. Submit privately via the project's security reporting channel.
Megaproject â high spam risk
Could not determine 'graphql-python/graphql-core' star count (GitHub API rate-limited or unreachable). When in doubt about repo size, prefer opening a focused PR or a discussion rather than an issue.
Already filed
46/86 findings (53%) on this scan are already flagged as test-file, won't-fix, or suppressed. The scan is too noisy to file as a single issue. Curate down to specific actionable findings, or address the FP source first.

The button opens GitHubâs new-issue page in a new tab. You will see the title + body pre-filled â review, edit if you want, then click GitHubâs "Submit new issue" button. Repobility never posts anything on your behalf.

For real security findings on big repos: use the project's SECURITY.md or private advisory flow instead of a public issue.