-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPyGhidra.py
More file actions
460 lines (367 loc) · 12.6 KB
/
Copy pathPyGhidra.py
File metadata and controls
460 lines (367 loc) · 12.6 KB
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
import marimo
__generated_with = "0.23.9"
app = marimo.App(width="medium")
@app.cell(hide_code=True)
def _():
import csv
import hashlib
import itertools
import math
import os
from collections import Counter
import altair as alt
import duckdb
import marimo as mo
import matplotlib.pyplot as plt
import pandas as pd
import seaborn as sns
return alt, csv, duckdb, mo, os, pd
@app.cell(hide_code=True)
def _(mo):
mo.md("""
<h1>Ghidra 12.1.2 and PyGhidra</h1>
""")
return
@app.cell(hide_code=True)
def _(mo):
mo.md("""
<h2>Downloading Firmware</h2>
""")
return
@app.cell
def _(os):
os.system("wget https://github.com/therealsaumil/emux/raw/refs/heads/master/files/emux/firmware/AC15/squashfs-root.tar.bz2")
os.system("wget https://github.com/therealsaumil/emux/raw/refs/heads/master/files/emux/firmware/TRI227WF/rootfs.tar.bz2")
return
@app.cell(hide_code=True)
def _(mo):
mo.md("""
<h2>Decompressing Firmware</h2>
""")
return
@app.cell
def _(os):
os.system("bzip2 -d ./rootfs.tar.bz2")
os.system("bzip2 -d ./squashfs-root.tar.bz2")
os.system("tar -xvf ./rootfs.tar")
os.system("tar -xvf ./squashfs-root.tar")
return
@app.cell(hide_code=True)
def _(mo):
mo.md("""
<h2>Creating Directories</h2>
""")
return
@app.cell
def _(os):
os.system("mkdir ./AC15")
os.system("cp ./squashfs-root/bin/httpd ./AC15/AC15_httpd")
os.system("cp ./rootfs/usr/bin/webs ./AC15/TRI227WF_webs")
return
@app.cell
def _():
from operator import itemgetter
import pyghidra
pyghidra.start()
import ghidra
from ghidra.app.util.headless import HeadlessAnalyzer
from ghidra.base.project import GhidraProject
from ghidra.program.flatapi import FlatProgramAPI
from ghidra.program.model.listing import Function
from ghidra.program.model.symbol import SourceType
from ghidra.program.util import CyclomaticComplexity, DefinedDataIterator
from ghidra.util.exception import CancelledException
from java.lang import String
return CancelledException, CyclomaticComplexity, itemgetter, pyghidra
@app.cell
def _():
# Define dangerous functions
dangerous_functions = ["system", "execve", "execle", "execvp", "execlp", "doSystemCmd"]
return (dangerous_functions,)
@app.function
def format_high_complexity_funcs(funcs):
"""Format the top 10 high complexity functions as a string."""
return "; ".join([f"{name}({cc})" for name, cc in funcs])
@app.cell
def _(
CancelledException,
CyclomaticComplexity,
csv,
dangerous_functions,
itemgetter,
pyghidra,
):
def analyze_binary(binary_path):
try:
with pyghidra.open_program(binary_path) as flat_api:
# Get program and listing
current_program = flat_api.getCurrentProgram()
listing = current_program.getListing()
# Get basic program info
files = current_program.getName()
arches = current_program.getLanguage().toString()
sha256 = current_program.getExecutableSHA256()
md5 = current_program.getExecutableMD5()
total_insn = listing.getNumInstructions()
# Get functions and calculate metrics
all_funcs = list(listing.getFunctions(True))
total_cc = 0
system_xrefs_details = []
monitor = flat_api.getMonitor()
# Analyze dangerous functions and their xrefs
ref_manager = current_program.getReferenceManager()
for func in all_funcs:
if func.getName() in dangerous_functions:
entry_point = func.getEntryPoint()
references = ref_manager.getReferencesTo(entry_point)
for xref in references:
ref_func = listing.getFunctionContaining(xref.getFromAddress())
if ref_func:
detail = f"{xref.getFromAddress()} ({ref_func.getName()})"
system_xrefs_details.append(detail)
num_calls_in_system_xrefs = len(system_xrefs_details)
# Calculate cyclomatic complexity metrics
cc_calculator = CyclomaticComplexity()
complexity_funcs = []
for func in all_funcs:
try:
cc = cc_calculator.calculateCyclomaticComplexity(func, monitor)
total_cc += cc
# Store all functions with their complexity
complexity_funcs.append((func.getName(), cc))
except CancelledException:
print(
f"Warning: Complexity calculation cancelled for function {func.getName()}"
)
num_funcs = len(all_funcs)
average_cc = total_cc / num_funcs if num_funcs > 0 else 0
# Sort functions by complexity and get top 10
top_complex_funcs = sorted(
complexity_funcs, key=itemgetter(1), reverse=True
)[:10]
# Save results to CSV
csv_file_path = "./ghidratest.csv"
with open(csv_file_path, mode="a", newline="") as csv_file:
fieldnames = [
"File",
"Architecture",
"SHA256",
"MD5",
"Total_Instructions",
"Total_Functions",
"System_Xrefs",
"Total_System_Xrefs",
"Average_Cyclomatic_Complexity",
"Top_10_Complex_Functions", # New field
]
writer = csv.DictWriter(csv_file, fieldnames=fieldnames)
if csv_file.tell() == 0:
writer.writeheader()
writer.writerow(
{
"File": files,
"Architecture": arches,
"SHA256": sha256,
"MD5": md5,
"Total_Instructions": total_insn,
"Total_Functions": num_funcs,
"System_Xrefs": "; ".join(system_xrefs_details),
"Total_System_Xrefs": num_calls_in_system_xrefs,
"Average_Cyclomatic_Complexity": round(average_cc, 2),
"Top_10_Complex_Functions": format_high_complexity_funcs(
top_complex_funcs
),
}
)
except Exception as e:
print(f"Error loading binary {binary_path}: {str(e)}. Skipping file.")
except Exception as e:
print(f"Error analyzing binary: {str(e)}")
raise
return (analyze_binary,)
@app.cell
def _(analyze_binary, os):
def scan_directory(directory_path):
# Scan the directory for binaries and analyze each one
for root, _, files in os.walk(directory_path):
for file in files:
binary_path = os.path.join(root, file)
if os.path.isfile(binary_path): # Make sure it's a file
print(f"Analyzing binary: {binary_path}")
analyze_binary(binary_path)
return (scan_directory,)
@app.cell
def _(scan_directory):
if __name__ == "__main__":
# Change this path to the directory you want to scan
directory_path = "./AC15/"
scan_directory(directory_path)
return
@app.cell
def _(pd):
def _():
df = pd.read_csv("./ghidratest.csv", header=None)
return
_()
return
@app.cell(hide_code=True)
def _(mo):
mo.md("""
<h2>Naming Pandas Columns</h2>
""")
return
@app.cell
def _(df):
df.columns = [
"File",
"Architecture",
"SHA256",
"MD5",
"Strings",
"Functions",
"System_Xrefs",
"Total_System_Xrefs",
"Average_Cyclomatic_Complexity",
"Top_10_Complex_Functions",
]
return
@app.cell
def _(pd):
df = pd.read_csv(
"ghidratest.csv",
dtype={
"Total_Instructions": int,
"Total_Functions": int,
"Total_System_Xrefs": int,
"Average_Cyclomatic_Complexity": float,
},
)
return (df,)
@app.cell
def _(df):
df.fillna("None", inplace=True)
return
@app.cell(hide_code=True)
def _(mo):
mo.md("""
<h2>Verify the Pandas Output</h2>
""")
return
@app.cell
def _(df):
df
return
@app.cell(hide_code=True)
def _(mo):
mo.md("""
<h2>Searching for Features</h2>
""")
return
@app.cell
def _(df, duckdb, mo):
query1 = """
SELECT *
FROM df
WHERE Average_Cyclomatic_Complexity > 3
"""
# Use an explicit, short-lived connection instead of duckdb's implicit
# global default connection. The global connection's C++ destructor runs at
# interpreter shutdown and calls PyEval_SaveThread on a thread state that
# PyGhidra's embedded JVM has already torn down, which segfaults the process.
con = duckdb.connect()
try:
con.register("df", df)
sim = con.execute(query1).df()
finally:
con.close()
mo.ui.dataframe(sim)
return
@app.cell
def _(df):
df_sorted = df.sort_values(by="Total_System_Xrefs", ascending=False)
return (df_sorted,)
@app.cell
def _(alt, df_sorted):
alt.Chart(df_sorted).mark_bar().encode(
x='File',
y='Total_System_Xrefs',
color=alt.Color('Total_System_Xrefs:Q', scale=alt.Scale(scheme='viridis')),
tooltip=["Total_System_Xrefs"],
).properties(
title='Potentially Dangerous Calls To System'
)
return
@app.cell(hide_code=True)
def _(mo):
mo.md("""
<h2>Creating Charts Using Pandas Bokeh</h2>
""")
return
@app.cell
def _(alt, df):
alt.Chart(df).mark_bar().encode(
x='File',
y='Average_Cyclomatic_Complexity',
color=alt.Color('Average_Cyclomatic_Complexity:Q', scale=alt.Scale(scheme='viridis')),
tooltip=["Average_Cyclomatic_Complexity"],
).properties(
title='Average Cyclomatic Complexity'
)
return
@app.cell
def _(pd):
# Process the Top_10_Complex_Functions column
def extract_func_data(func_str):
# Split the string into individual function entries
funcs = func_str.split("; ")
# Extract function names and complexity scores
names = []
scores = []
for func in funcs:
if func: # Check if the function entry is not empty
name, score = func.strip("() ").split("(")
names.append(name)
scores.append(float(score))
return pd.DataFrame({"Function_Name": names, "Complexity": scores})
return (extract_func_data,)
@app.cell
def _(alt, df, extract_func_data):
# Create a visualization for each binary
for idx, row in df.iterrows():
binary_name = row["File"]
func_data = extract_func_data(row["Top_10_Complex_Functions"])
# Create bar plot
plot = alt.Chart(func_data).mark_bar().encode(
x='Function_Name',
y='Complexity',
color=alt.Color('Complexity:Q', scale=alt.Scale(scheme='viridis')),
tooltip=["Complexity"],
).properties(
title=f"Top 10 High Complexity Functions in {binary_name}"
)
return (plot,)
@app.cell
def _(plot):
plot
return
@app.cell(hide_code=True)
def _(mo):
mo.md("""
<h2>Reference Material</h2>
""")
return
@app.cell(hide_code=True)
def _(mo):
mo.md("""
- 10 Minutes to Pandas: https://pandas.pydata.org/docs/user_guide/10min.html
- Pandas Cookbook: https://pandas.pydata.org/docs/user_guide/cookbook.html#cookbook
- Ghidra API: https://ghidra.re/ghidra_docs/api/index.html
- PyGhidra: https://github.com/NationalSecurityAgency/ghidra/tree/master/Ghidra/Features/PyGhidra
- EMUX: https://github.com/therealsaumil/emux
- Ghidra Snippets: https://github.com/HackOvert/GhidraSnippets
- Auditing system calls for command injection vulnerabilities using Ghidra's PCode: https://youtu.be/UVNeg7Vqytc
- cetfor/SystemCallAuditorGhidra.py: https://github.com/HackOvert/PotentiallyVulnerable/blob/main/CWE-78/SystemCallAuditorGhidra.py
""")
return
if __name__ == "__main__":
app.run()