Edward J. Schwartz commited on
Commit
10ca2d7
·
1 Parent(s): 4c721b6
Files changed (1) hide show
  1. app.py +4 -20
app.py CHANGED
@@ -5,23 +5,8 @@ import re
5
  import subprocess
6
  import tempfile
7
 
8
- import transformers
9
-
10
- import numpy
11
- print(numpy.__version__)
12
-
13
- #pipe = transformers.pipeline(model="ejschwartz/oo-method-test-model-bylibrary", top_k=2)
14
  model = gr.load("ejschwartz/oo-method-test-model-bylibrary", src="models")
15
 
16
- # gr.load("ejschwartz/oo-method-test-model-bylibrary", src="models", examples=[
17
- # '\nL1: 55 ?? push ebp\n 8b ec ?? mov ebp, esp\n 5d ?? pop ebp\n c3 ?? ret\n\n',
18
- # '\nL1: 55 ?? push ebp\n 8b ec ?? mov ebp, esp\n 51 ?? push ecx\n a1 b0 5d 43 00 ?? mov eax, dword ds:[0x00435db0]\n 83 f8 fe ?? cmp eax, 0xfe<254,-2>\n 75 0a ?? jne basic block L4\n\nL2: e8 4e 17 00 00 ?? call function 0x00415d25\n\nL3: a1 b0 5d 43 00 ?? mov eax, dword ds:[0x00435db0]\n\nL4: 83 f8 ff ?? cmp eax, 0xff<255,-1>\n 75 07 ?? jne basic block L6\n\nL5: b8 ff ff 00 00 ?? mov eax, 0x0000ffff\n eb 1b ?? jmp basic block L9\n\nL6: 6a 00 ?? push 0\n 8d 4d fc ?? lea ecx, ss:[ebp + 0xfc<252,-4>]\n 51 ?? push ecx\n 6a 01 ?? push 1\n 8d 4d 08 ?? lea ecx, ss:[ebp + 8]\n 51 ?? push ecx\n 50 ?? push eax\n ff 15 28 91 43 00 ?? call dword ds:[0x00439128]\n\nL7: 85 c0 ?? test eax, eax\n 74 e2 ?? je basic block L5\n\nL8: 66 8b 45 08 ?? mov ax, word ss:[ebp + 8]\n\nL9: 8b e5 ?? mov esp, ebp\n 5d ?? pop ebp\n c3 ?? ret\n\n',
19
- # '\nL1: 0f b7 41 32 ?? movzx eax, word ds:[ecx + 0x32<50>]\n 83 e8 20 ?? sub eax, 0x20<32>\n 74 2d ?? je basic block L10\n\nL2: 83 e8 03 ?? sub eax, 3\n 74 22 ?? je basic block L9\n\nL3: 83 e8 08 ?? sub eax, 8\n 74 17 ?? je basic block L8\n\nL4: 48 ?? dec eax\n 83 e8 01 ?? sub eax, 1\n 74 0b ?? je basic block L7\n\nL5: 83 e8 03 ?? sub eax, 3\n 75 1c ?? jne basic block L11\n\nL6: 83 49 20 08 ?? or dword ds:[ecx + 0x20<32>], 8\n eb 16 ?? jmp basic block L11\n\nL7: 83 49 20 04 ?? or dword ds:[ecx + 0x20<32>], 4\n eb 10 ?? jmp basic block L11\n\nL8: 83 49 20 01 ?? or dword ds:[ecx + 0x20<32>], 1\n eb 0a ?? jmp basic block L11\n\nL9: 83 49 20 20 ?? or dword ds:[ecx + 0x20<32>], 0x20<32>\n eb 04 ?? jmp basic block L11\n\nL10: 83 49 20 02 ?? or dword ds:[ecx + 0x20<32>], 2\n\nL11: b0 01 ?? mov al, 1\n c3 ?? ret\n\n',
20
- # "\nL1: 8b ff ?? mov edi, edi\n 55 ?? push ebp\n 8b ec ?? mov ebp, esp\n 83 ec 08 ?? sub esp, 8\n 89 4d f8 ?? mov dword ss:[ebp + 0xf8<248,-8>], ecx\n 8b 4d f8 ?? mov ecx, dword ss:[ebp + 0xf8<248,-8>]\n e8 e6 ac f9 ff ?? call function 0x00401569\n\nL2: 23 45 08 ?? and eax, dword ss:[ebp + 8]\n 3b 45 08 ?? cmp eax, dword ss:[ebp + 8]\n 75 09 ?? jne basic block L4\n\nL3: c7 45 fc 01 00 00 00 ?? mov dword ss:[ebp + 0xfc<252,-4>], 1\n eb 07 ?? jmp basic block L5\n\nL4: c7 45 fc 00 00 00 00 ?? mov dword ss:[ebp + 0xfc<252,-4>], 0\n\nL5: 8a 45 fc ?? mov al, byte ss:[ebp + 0xfc<252,-4>]\n 8b e5 ?? mov esp, ebp\n 5d ?? pop ebp\n c2 04 00 ?? ret 4\n\n"
21
- # ],
22
- # live=True, title="Is it a method or a function?").launch(server_name="0.0.0.0", server_port=7860)
23
-
24
-
25
  def get_all_dis(bname, addrs=None):
26
 
27
  anafile = tempfile.NamedTemporaryFile(prefix=os.path.basename(bname) + "_", suffix=".bat_ana")
@@ -70,7 +55,10 @@ with gr.Blocks() as demo:
70
  gr.Markdown(
71
  """
72
  # Function/Method Detector
73
- First, upload a binary. Then, select a function from the dropdown. The function's disassembly will be displayed below.
 
 
 
74
  """
75
  )
76
 
@@ -104,14 +92,10 @@ with gr.Blocks() as demo:
104
  def function_change_fn(selected_fun, fun_data):
105
 
106
  disassembly_str = fun_data[int(selected_fun, 16)].decode("utf-8")
107
- #model_results = pipe(disassembly_str)
108
  load_results = model.fn(disassembly_str)
109
- #top_k = {i["label"].split(", ")[0]: i["score"] for i in model_results}
110
- #disassembly_str = str(model_results) + str(load_results)
111
 
112
  return {disassembly: gr.Textbox.update(value=disassembly_str),
113
  clazz: gr.Label.update(load_results)
114
- #clazz: gr.Label.update(value="Method" if model_results[0]["label"] == "method" else "Function")}
115
  }
116
 
117
  file_widget.change(file_change_fn, file_widget, [col, fun_dropdown, all_dis_state])
 
5
  import subprocess
6
  import tempfile
7
 
 
 
 
 
 
 
8
  model = gr.load("ejschwartz/oo-method-test-model-bylibrary", src="models")
9
 
 
 
 
 
 
 
 
 
 
10
  def get_all_dis(bname, addrs=None):
11
 
12
  anafile = tempfile.NamedTemporaryFile(prefix=os.path.basename(bname) + "_", suffix=".bat_ana")
 
55
  gr.Markdown(
56
  """
57
  # Function/Method Detector
58
+
59
+ First, upload a binary. Then, select a function from the dropdown. The
60
+ function's disassembly, and the model's prediction of whether the function
61
+ represents a C++ method or a regular function will be displayed below.
62
  """
63
  )
64
 
 
92
  def function_change_fn(selected_fun, fun_data):
93
 
94
  disassembly_str = fun_data[int(selected_fun, 16)].decode("utf-8")
 
95
  load_results = model.fn(disassembly_str)
 
 
96
 
97
  return {disassembly: gr.Textbox.update(value=disassembly_str),
98
  clazz: gr.Label.update(load_results)
 
99
  }
100
 
101
  file_widget.change(file_change_fn, file_widget, [col, fun_dropdown, all_dis_state])