forked from JusticeRage/Gepetto
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathida-plugin.json
More file actions
51 lines (51 loc) · 1.33 KB
/
ida-plugin.json
File metadata and controls
51 lines (51 loc) · 1.33 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
{
"IDAMetadataDescriptorVersion": 1,
"plugin": {
"name": "gepetto",
"entryPoint": "gepetto.py",
"version": "1.5.0",
"idaVersions": ">=7.6",
"description": "Gepetto is a Python plugin which uses various large language models to provide meaning to functions decompiled by IDA Pro. It can leverage them to explain what a function does, and to automatically rename its variables.",
"license": "GPL-3.0",
"categories": [
"integration-with-third-parties-interoperability",
"decompilation",
"api-scripting-and-automation",
"collaboration-and-productivity"
],
"pythonDependencies": [
"openai>=1.101.0",
"groq>=0.8.0",
"together>=1.2.0",
"ollama>=0.4.5",
"azure-identity>=1.21.0",
"google-genai>=1.36.0"
],
"urls": {
"repository": "https://github.com/JusticeRage/Gepetto"
},
"authors": [{
"name": "Ivan Kwiatkowski",
"email": "justicerage@manalyzer.org"
}],
"keywords": [
"llm",
"ai",
"gpt",
"openai",
"gemini",
"ollama",
"code-explanation",
"variable-renaming",
"auto-comment",
"decompilation-analysis",
"reverse-engineering-assistant",
"natural-language",
"azure-openai",
"groq",
"together",
"deepseek",
"agent"
]
}
}