-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathghidra_server.py
533 lines (438 loc) · 21.6 KB
/
ghidra_server.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
import os
import json
import time
import logging
import socket
import sys
from threading import Thread
# Configure logging
logging.basicConfig(
level=logging.INFO,
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
handlers=[logging.FileHandler("ghidra_mcp_bridge.log"), logging.StreamHandler()]
)
logger = logging.getLogger("GhidraMCPBridge")
# Import the MCP SDK
from mcp.server.fastmcp import FastMCP
from mcp.types import TextContent, Tool, Resource
# Ghidra MCP Socket Client
class GhidraMCPSocketClient:
"""Client for the Model Context Protocol server in Ghidra"""
def __init__(self, host='localhost', port=8765):
self.host = host
self.port = port
self.socket = None
self.id_counter = 0
def connect(self):
"""Connect to the MCP server"""
try:
self.socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
self.socket.connect((self.host, self.port))
# Check for successful connection with a simple request
response = self.send_request("getContext")
if response:
print(f"Connected to MCP server at {self.host}:{self.port}")
return True
else:
print("Connected but received invalid response from server")
return False
except Exception as e:
print(f"Failed to connect to MCP server: {str(e)}")
return False
def disconnect(self):
if self.socket:
self.socket.close()
self.socket = None
def is_connected(self):
return self.socket is not None
def send_request(self, method, params=None):
"""Send a request to the MCP server"""
if not self.socket:
raise Exception("Not connected to MCP server")
self.id_counter += 1
request = {
"id": str(self.id_counter),
"method": method
}
if params:
request["params"] = params
request_str = json.dumps(request) + "\n"
self.socket.sendall(request_str.encode())
# Read response with better error handling
response_data = b""
try:
while True:
chunk = self.socket.recv(4096)
if not chunk:
break
response_data += chunk
if b"\n" in response_data:
break
except Exception as e:
print(f"Error receiving data: {str(e)}")
return None
try:
# Try to decode and parse as JSON
response_str = response_data.decode('utf-8').strip()
response = json.loads(response_str)
if "error" in response:
print(f"Error from server: {response['error']}")
return response.get("result")
except UnicodeDecodeError:
print("Warning: Received data with encoding issues")
# Try alternate encoding or show hex
print(f"Raw response: {response_data[:100].hex()}")
return None
except json.JSONDecodeError:
print("Warning: Received non-JSON response")
print(f"Raw response: {response_data[:100]}")
return None
def get_context(self):
return self.send_request("getContext")
def get_function(self, address):
return self.send_request("getFunctionAt", {"address": address})
def get_decompiled_code(self, address):
return self.send_request("getDecompiledCode", {"address": address})
def analyze_binary_for_question(self, question):
return self.send_request("analyzeBinaryForQuestion", {"question": question})
def get_all_functions(self):
return self.send_request("getAllFunctions")
def get_strings(self):
return self.send_request("getStrings")
def get_imports(self):
return self.send_request("getImports")
def get_exports(self):
return self.send_request("getExports")
def get_memory_map(self):
return self.send_request("getMemoryMap")
def extract_api_call_sequences(self, address):
return self.send_request("extractApiCallSequences", {"address": address})
def identify_user_input_sources(self):
return self.send_request("identifyUserInputSources")
def generate_structured_call_graph(self, address, max_depth):
return self.send_request("generateStructuredCallGraph", {"address": address, "maxDepth": max_depth})
def identify_cryptographic_patterns(self):
return self.send_request("identifyCryptographicPatterns")
def find_obfuscated_strings(self):
return self.send_request("findObfuscatedStrings")
# Create the Ghidra bridge client instance
ghidra_client = GhidraMCPSocketClient()
# Create an MCP FastMCP instance that Claude will connect to
mcp = FastMCP("Ghidra MCP Bridge")
# Define resources
@mcp.resource("http://localhost/query", name="get_program_info")
async def get_context_resource():
"""Get basic information about the current program loaded in Ghidra"""
try:
if not ghidra_client.is_connected():
if not ensure_connection():
return {"success": False, "error": "Failed to connect to Ghidra"}
context = ghidra_client.get_context()
return {"success": True, "context": context}
except Exception as e:
logger.error(f"Error getting context: {str(e)}")
return {"success": False, "error": str(e)}
@mcp.resource("http://localhost/functions", name="list_functions")
async def get_all_functions_resource():
"""Get a list of all functions in the binary that Ghidra has identified"""
try:
if not ghidra_client.is_connected():
if not ensure_connection():
return {"success": False, "error": "Failed to connect to Ghidra"}
functions = ghidra_client.get_all_functions()
return {"success": True, "functions": functions}
except Exception as e:
logger.error(f"Error getting functions: {str(e)}")
return {"success": False, "error": str(e)}
@mcp.resource("http://localhost/strings", name="list_strings")
async def get_strings_resource():
"""Get a list of all strings found in the binary by Ghidra"""
try:
if not ghidra_client.is_connected():
if not ensure_connection():
return {"success": False, "error": "Failed to connect to Ghidra"}
strings = ghidra_client.get_strings()
return {"success": True, "strings": strings}
except Exception as e:
logger.error(f"Error getting strings: {str(e)}")
return {"success": False, "error": str(e)}
# Define tools
@mcp.tool(name="get_function")
async def get_function_tool(address: str, decompile: bool = False):
"""
Get detailed information about a function at a specific address
This tool provides details about a specific function in the binary, including its signature,
parameters, local variables, and optionally the decompiled code.
Args:
address: The address of the function to analyze (e.g., "0x401000")
decompile: Whether to include decompiled source code (default: False)
"""
try:
if not ghidra_client.is_connected():
if not ensure_connection():
return [TextContent(type="text", text=json.dumps({"success": False, "error": "Failed to connect to Ghidra"}))]
function_info = ghidra_client.get_function(address)
if decompile:
decompiled = ghidra_client.get_decompiled_code(address)
result = {"success": True, "function": function_info, "decompiled": decompiled}
else:
result = {"success": True, "function": function_info}
return [TextContent(type="text", text=json.dumps(result))]
except Exception as e:
logger.error(f"Error getting function: {str(e)}")
return [TextContent(type="text", text=json.dumps({"success": False, "error": str(e)}))]
@mcp.tool(name="rename_function")
async def rename_function_tool(current_name: str, new_name: str):
"""
Rename a function by its current name to a new user-defined name.
Args:
current_name: The current name of the function
new_name: The new name to assign to the function
"""
try:
if not ghidra_client.is_connected():
if not ensure_connection():
return [TextContent(type="text", text=json.dumps({"success": False, "error": "Failed to connect to Ghidra"}))]
result = ghidra_client.send_request("renameFunction", {"currentName": current_name, "newName": new_name})
return [TextContent(type="text", text=json.dumps({"success": True, "result": result}))]
except Exception as e:
logger.error(f"Error renaming function: {str(e)}")
return [TextContent(type="text", text=json.dumps({"success": False, "error": str(e)}))]
@mcp.tool(name="rename_data")
async def rename_data_tool(address: str, new_name: str):
"""
Rename a data label at the specified address.
Args:
address: The address of the data to rename (e.g., "0x401000")
new_name: The new name to assign to the data
"""
try:
if not ghidra_client.is_connected():
if not ensure_connection():
return [TextContent(type="text", text=json.dumps({"success": False, "error": "Failed to connect to Ghidra"}))]
result = ghidra_client.send_request("renameData", {"address": address, "newName": new_name})
return [TextContent(type="text", text=json.dumps({"success": True, "result": result}))]
except Exception as e:
logger.error(f"Error renaming data: {str(e)}")
return [TextContent(type="text", text=json.dumps({"success": False, "error": str(e)}))]
@mcp.tool(name="extract_api_call_sequences")
async def extract_api_call_sequences_tool(address: str):
"""
Extract API call sequences from a function for security analysis.
This tool analyzes a function and extracts all external API calls,
organized by security categories like crypto, network, file operations, etc.
Args:
address: The address of the function to analyze (e.g., "0x401000")
"""
try:
if not ghidra_client.is_connected():
if not ensure_connection():
return [TextContent(type="text", text=json.dumps({"success": False, "error": "Failed to connect to Ghidra"}))]
api_calls = ghidra_client.send_request("extractApiCallSequences", {"address": address})
return [TextContent(type="text", text=json.dumps({"success": True, "api_calls": api_calls}))]
except Exception as e:
logger.error(f"Error extracting API call sequences: {str(e)}")
return [TextContent(type="text", text=json.dumps({"success": False, "error": str(e)}))]
@mcp.tool(name="identify_user_input_sources")
async def identify_user_input_sources_tool():
"""
Identify potential sources of user input in the binary.
This tool finds functions that take external input and could be
entry points for security vulnerabilities like buffer overflows.
"""
try:
if not ghidra_client.is_connected():
if not ensure_connection():
return [TextContent(type="text", text=json.dumps({"success": False, "error": "Failed to connect to Ghidra"}))]
input_sources = ghidra_client.send_request("identifyUserInputSources")
return [TextContent(type="text", text=json.dumps({"success": True, "input_sources": input_sources}))]
except Exception as e:
logger.error(f"Error identifying user input sources: {str(e)}")
return [TextContent(type="text", text=json.dumps({"success": False, "error": str(e)}))]
@mcp.tool(name="generate_call_graph")
async def generate_structured_call_graph_tool(address: str, max_depth: int = 3):
"""
Generate a structured call graph from a starting function.
This tool creates a hierarchical representation of function calls,
useful for understanding execution flow and identifying potentially
vulnerable paths.
Args:
address: The address of the function to start from (e.g., "0x401000")
max_depth: Maximum depth of the call graph (default: 3)
"""
try:
if not ghidra_client.is_connected():
if not ensure_connection():
return [TextContent(type="text", text=json.dumps({"success": False, "error": "Failed to connect to Ghidra"}))]
call_graph = ghidra_client.send_request("generateStructuredCallGraph", {"address": address, "maxDepth": max_depth})
return [TextContent(type="text", text=json.dumps({"success": True, "call_graph": call_graph}))]
except Exception as e:
logger.error(f"Error generating call graph: {str(e)}")
return [TextContent(type="text", text=json.dumps({"success": False, "error": str(e)}))]
@mcp.tool(name="identify_crypto_patterns")
async def identify_cryptographic_patterns_tool():
"""
Identify cryptographic patterns, constants, and algorithms in the binary.
This tool detects potential cryptographic implementations, including
known algorithms (AES, RSA, etc.) and custom implementations based on
code patterns and constants.
"""
try:
if not ghidra_client.is_connected():
if not ensure_connection():
return [TextContent(type="text", text=json.dumps({"success": False, "error": "Failed to connect to Ghidra"}))]
crypto_patterns = ghidra_client.send_request("identifyCryptographicPatterns")
return [TextContent(type="text", text=json.dumps({"success": True, "crypto_patterns": crypto_patterns}))]
except Exception as e:
logger.error(f"Error identifying cryptographic patterns: {str(e)}")
return [TextContent(type="text", text=json.dumps({"success": False, "error": str(e)}))]
@mcp.tool(name="find_obfuscated_strings")
async def find_obfuscated_strings_tool():
"""
Find potentially obfuscated strings in the binary.
This tool identifies strings that may be encoded, encrypted, or constructed
at runtime to evade static analysis. Common techniques include XOR encoding
and character-by-character string construction.
"""
try:
if not ghidra_client.is_connected():
if not ensure_connection():
return [TextContent(type="text", text=json.dumps({"success": False, "error": "Failed to connect to Ghidra"}))]
obfuscated_strings = ghidra_client.send_request("findObfuscatedStrings")
return [TextContent(type="text", text=json.dumps({"success": True, "obfuscated_strings": obfuscated_strings}))]
except Exception as e:
logger.error(f"Error finding obfuscated strings: {str(e)}")
return [TextContent(type="text", text=json.dumps({"success": False, "error": str(e)}))]
@mcp.tool(name="analyze_binary")
async def analyze_binary_tool(question: str):
"""
Analyze the loaded binary in Ghidra based on a natural language question
This tool allows you to ask questions about the binary and get analysis results.
Examples of questions you can ask:
- What encryption algorithms are used in this binary?
- Are there any suspicious API calls?
- How does the authentication logic work?
- What network connections does this binary make?
Args:
question: The natural language question about the binary
"""
try:
if not ghidra_client.is_connected():
if not ensure_connection():
return [TextContent(type="text", text=json.dumps({"success": False, "error": "Failed to connect to Ghidra"}))]
if not question:
return [TextContent(type="text", text=json.dumps({"success": False, "error": "Missing question"}))]
analysis = ghidra_client.analyze_binary_for_question(question)
return [TextContent(type="text", text=json.dumps({"success": True, "analysis": analysis}))]
except Exception as e:
logger.error(f"Error analyzing binary: {str(e)}")
return [TextContent(type="text", text=json.dumps({"success": False, "error": str(e)}))]
@mcp.tool(name="connect_to_ghidra")
async def connect_tool(host: str = "localhost", port: int = 8765):
"""
Connect to the Ghidra MCP server
Use this tool to connect to a Ghidra instance running with the MCP plugin.
The default host is localhost and the default port is 8765.
Args:
host: The hostname or IP address of the Ghidra server (default: "localhost")
port: The port number of the Ghidra server (default: 8765)
"""
try:
# Update client settings
ghidra_client.host = host
ghidra_client.port = port
# Disconnect if already connected
if ghidra_client.is_connected():
ghidra_client.disconnect()
# Connect to Ghidra MCP server
success = ghidra_client.connect()
if success:
result = {"success": True, "message": f"Connected to Ghidra MCP server at {host}:{port}"}
else:
result = {"success": False, "error": f"Failed to connect to Ghidra MCP server at {host}:{port}"}
return [TextContent(type="text", text=json.dumps(result))]
except Exception as e:
logger.error(f"Error connecting to Ghidra: {str(e)}")
return [TextContent(type="text", text=json.dumps({"success": False, "error": str(e)}))]
@mcp.tool(name="get_imports")
async def get_imports_tool():
"""
Get a list of all imported functions in the binary
This tool returns all external library functions that the binary imports,
which is useful for understanding the binary's dependencies and functionality.
"""
try:
if not ghidra_client.is_connected():
if not ensure_connection():
return [TextContent(type="text", text=json.dumps({"success": False, "error": "Failed to connect to Ghidra"}))]
imports = ghidra_client.get_imports()
return [TextContent(type="text", text=json.dumps({"success": True, "imports": imports}))]
except Exception as e:
logger.error(f"Error getting imports: {str(e)}")
return [TextContent(type="text", text=json.dumps({"success": False, "error": str(e)}))]
@mcp.tool(name="get_exports")
async def get_exports_tool():
"""
Get a list of all exported functions in the binary
This tool returns all functions that the binary exports for other programs to use,
which is useful for understanding the binary's API or library functionality.
"""
try:
if not ghidra_client.is_connected():
if not ensure_connection():
return [TextContent(type="text", text=json.dumps({"success": False, "error": "Failed to connect to Ghidra"}))]
exports = ghidra_client.get_exports()
return [TextContent(type="text", text=json.dumps({"success": True, "exports": exports}))]
except Exception as e:
logger.error(f"Error getting exports: {str(e)}")
return [TextContent(type="text", text=json.dumps({"success": False, "error": str(e)}))]
@mcp.tool(name="get_memory_map")
async def get_memory_map_tool():
"""
Get the memory layout of the binary
This tool returns information about how the binary is mapped into memory,
including code sections, data sections, and their addresses.
"""
try:
if not ghidra_client.is_connected():
if not ensure_connection():
return [TextContent(type="text", text=json.dumps({"success": False, "error": "Failed to connect to Ghidra"}))]
memory_map = ghidra_client.get_memory_map()
return [TextContent(type="text", text=json.dumps({"success": True, "memory_map": memory_map}))]
except Exception as e:
logger.error(f"Error getting memory map: {str(e)}")
return [TextContent(type="text", text=json.dumps({"success": False, "error": str(e)}))]
def ensure_connection():
"""Ensure we're connected to the Ghidra MCP server"""
if not ghidra_client.is_connected():
max_attempts = 3
for attempt in range(max_attempts):
if ghidra_client.connect():
logger.info(f"Connected to Ghidra MCP server")
return True
else:
logger.warning(f"Could not connect to Ghidra MCP server (attempt {attempt+1}/{max_attempts})")
if attempt < max_attempts - 1:
logger.info("Retrying in 2 seconds...")
time.sleep(2)
logger.error("Failed to connect to Ghidra MCP server after multiple attempts")
return False
return True
# Connect to Ghidra MCP server on startup
try:
ghidra_client.connect()
except Exception as e:
logger.warning(f"Initial connection to Ghidra MCP server failed: {str(e)}")
logger.warning("The bridge will still start and can be connected later")
if __name__ == "__main__":
print("Starting Ghidra MCP Bridge...", file=sys.stderr)
# List all registered tools and resources for debugging
# try:
# resource_routes = dir(mcp._server.resources)
# tool_names = [tool.name for tool in mcp._server.tools]
# print(f"Registered resources: {resource_routes}", file=sys.stderr)
# print(f"Registered tools: {tool_names}", file=sys.stderr)
# except Exception as e:
# print(f"Error listing resources and tools: {str(e)}", file=sys.stderr)
# Run the server
mcp.run()