<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>Github-Mcp-Server (&lt; 1.1.0) - CraftedSignal Threat Feed</title><link>https://feed.craftedsignal.io/products/github-mcp-server--1.1.0/</link><description>Trending threats, MITRE ATT&amp;CK coverage, and detection metadata. Fed continuously.</description><generator>Hugo</generator><language>en</language><managingEditor>hello@craftedsignal.io</managingEditor><webMaster>hello@craftedsignal.io</webMaster><lastBuildDate>Tue, 28 Jul 2026 14:38:36 +0000</lastBuildDate><atom:link href="https://feed.craftedsignal.io/products/github-mcp-server--1.1.0/feed.xml" rel="self" type="application/rss+xml"/><item><title>GitHub MCP Server Nil Pointer Dereference DoS in completion/complete Handler (CVE-2026-47427)</title><link>https://feed.craftedsignal.io/briefs/2026-07-github-mcp-server-dos/</link><pubDate>Tue, 28 Jul 2026 14:38:36 +0000</pubDate><author>hello@craftedsignal.io</author><guid isPermaLink="true">https://feed.craftedsignal.io/briefs/2026-07-github-mcp-server-dos/</guid><description>A nil pointer dereference vulnerability, tracked as CVE-2026-47427, in the GitHub MCP Server's `completion/complete` handler allows an unauthenticated attacker to cause a complete denial of service by sending a malformed JSON-RPC request with missing or empty parameters for the `ref` field, leading to an immediate server crash.</description><content:encoded><![CDATA[<p>A high-severity denial-of-service vulnerability, identified as CVE-2026-47427, has been discovered in the GitHub MCP Server. This flaw, specifically a nil pointer dereference, resides within the <code>CompletionsHandler</code> function (located at <code>pkg/github/server.go:198</code>) which is responsible for processing <code>completion/complete</code> JSON-RPC requests. Attackers can exploit this vulnerability without authentication by sending a crafted JSON-RPC message that either contains empty <code>params</code> or is missing the crucial <code>ref</code> field within the <code>params</code>. Upon receiving such a request, the server attempts to dereference a <code>nil</code> pointer, causing the Go runtime to panic and the MCP Server process to crash entirely. This vulnerability affects GitHub MCP Server versions prior to 1.1.0 and allows for a complete and unrecoverable denial of service by any unauthenticated client capable of sending JSON-RPC messages.</p>
<h2 id="attack-chain">Attack Chain</h2>
<ol>
<li>An unauthenticated attacker identifies a GitHub MCP Server instance accessible on the network.</li>
<li>The attacker establishes a connection and completes the necessary MCP initialization handshake with the server.</li>
<li>The attacker crafts a malformed JSON-RPC <code>completion/complete</code> request, intentionally omitting or emptying the <code>ref</code> parameter within the <code>params</code> object (e.g., <code>{&quot;jsonrpc&quot;:&quot;2.0&quot;,&quot;id&quot;:2,&quot;method&quot;:&quot;completion/complete&quot;,&quot;params&quot;:{}}</code>).</li>
<li>The attacker sends this crafted request to the vulnerable <code>/completion/complete</code> endpoint on the GitHub MCP Server.</li>
<li>The server's <code>CompletionsHandler</code> function receives the request and attempts to access <code>params.Ref</code> without first verifying if <code>params</code> or <code>params.Ref</code> is <code>nil</code>.</li>
<li>Due to the malformed request, <code>params.Ref</code> is <code>nil</code> at the point of access, leading to a nil pointer dereference.</li>
<li>The Go runtime detects the invalid memory access and triggers an immediate panic.</li>
<li>The GitHub MCP Server process crashes, resulting in a complete and unrecoverable denial of service for all connected clients.</li>
</ol>
<h2 id="impact">Impact</h2>
<p>The successful exploitation of CVE-2026-47427 leads to an immediate and complete denial of service for the GitHub MCP Server. Any unauthenticated client capable of sending JSON-RPC messages can crash the server, making it unavailable to legitimate users. The panic caused by the nil pointer dereference is unrecoverable and terminates the server process, requiring manual intervention to restart. Automated fuzzing efforts demonstrated a significant crash rate (11.7% of test cases), indicating the ease with which this vulnerability can be triggered. Organizations using affected versions of GitHub MCP Server are at risk of significant service disruption and availability loss.</p>
<h2 id="recommendation">Recommendation</h2>
<ul>
<li>Patch affected GitHub MCP Server instances to version 1.1.0 or newer immediately to mitigate CVE-2026-47427.</li>
<li>Configure webserver or API gateway logs to capture full request bodies for the <code>/completion/complete</code> endpoint to enable detection of malformed JSON-RPC requests as described in the attack chain.</li>
<li>Deploy a Web Application Firewall (WAF) or API gateway capable of inspecting and blocking malformed JSON-RPC requests targeting the <code>/completion/complete</code> endpoint, specifically looking for empty or missing <code>ref</code> parameters.</li>
</ul>
]]></content:encoded><category domain="severity">medium</category><category domain="type">advisory</category><category>denial-of-service</category><category>vulnerability</category><category>github</category></item></channel></rss>