Intitial release
This commit is contained in:
parent
299038fbc7
commit
fa8caa5116
21 changed files with 1234 additions and 0 deletions
9
methods/impl/amnesia_decompiler.py
Normal file
9
methods/impl/amnesia_decompiler.py
Normal file
|
@ -0,0 +1,9 @@
|
|||
from typing import List
|
||||
|
||||
from methods.decompilers import Decompiler
|
||||
from model.common_models import DecompileResult
|
||||
|
||||
class AmnesiaDecompiler(Decompiler):
|
||||
def decompile(self, file_path: str, tags: List[str], sha256: str = "") -> DecompileResult:
|
||||
# Placeholder implementation
|
||||
return DecompileResult([], [])
|
9
methods/impl/legacy_notoken_decompile.py
Normal file
9
methods/impl/legacy_notoken_decompile.py
Normal file
|
@ -0,0 +1,9 @@
|
|||
from typing import List
|
||||
|
||||
from methods.decompilers import Decompiler
|
||||
from model.common_models import DecompileResult
|
||||
|
||||
class LegacyNotokenDecompiler(Decompiler):
|
||||
def decompile(self, file_path: str, tags: List[str], sha256: str = "") -> DecompileResult:
|
||||
# Placeholder implementation
|
||||
return DecompileResult([], [])
|
9
methods/impl/notoken_decompile.py
Normal file
9
methods/impl/notoken_decompile.py
Normal file
|
@ -0,0 +1,9 @@
|
|||
from typing import List
|
||||
|
||||
from methods.decompilers import Decompiler
|
||||
from model.common_models import DecompileResult
|
||||
|
||||
class NotokenDecompiler(Decompiler):
|
||||
def decompile(self, file_path: str, tags: List[str], sha256: str = "") -> DecompileResult:
|
||||
# Placeholder implementation
|
||||
return DecompileResult([], [])
|
9
methods/impl/pysilon_decompiler.py
Normal file
9
methods/impl/pysilon_decompiler.py
Normal file
|
@ -0,0 +1,9 @@
|
|||
from typing import List
|
||||
|
||||
from methods.decompilers import Decompiler
|
||||
from model.common_models import DecompileResult
|
||||
|
||||
class PysilonDecompiler(Decompiler):
|
||||
def decompile(self, file_path: str, tags: List[str], sha256: str = "") -> DecompileResult:
|
||||
# Placeholder implementation
|
||||
return DecompileResult([], [])
|
Loading…
Add table
Add a link
Reference in a new issue