mirror of
https://github.com/dobin/SuperMega
synced 2026-06-03 01:27:11 +00:00
63 lines
1.6 KiB
Python
63 lines
1.6 KiB
Python
from enum import Enum
|
|
import os
|
|
|
|
class FilePath(str):
|
|
pass
|
|
|
|
# with data/shellcodes/createfile.bin
|
|
VerifyFilename: FilePath = r'C:\Temp\a'
|
|
|
|
# Directory structure
|
|
PATH_EXES = "data/binary/exes/"
|
|
PATH_EXES_MORE = "data/binary/exes_more/"
|
|
PATH_SHELLCODES = "data/binary/shellcodes/"
|
|
PATH_CARRIER = "data/source/carrier/"
|
|
PATH_PEB_WALK = "data/source/carrier/peb_walk/"
|
|
PATH_IAT_REUSE = "data/source/carrier/iat_reuse/"
|
|
PATH_PAYLOAD = "data/source/payload/"
|
|
PATH_DECODER = "data/source/carrier/decoder/"
|
|
|
|
PATH_WEB_PROJECT = "projects/"
|
|
|
|
|
|
# Correlated with real template files
|
|
# in data/plugins/
|
|
|
|
|
|
class DecoderStyle(Enum):
|
|
PLAIN_1 = "plain_1"
|
|
XOR_1 = "xor_1"
|
|
|
|
|
|
class CarrierInvokeStyle(Enum):
|
|
ChangeEntryPoint = "change AddressOfEntryPoint"
|
|
BackdoorCallInstr = "hijack branching instruction in entrypoint"
|
|
|
|
|
|
class FunctionInvokeStyle(Enum):
|
|
peb_walk = "peb_walk"
|
|
iat_reuse = "iat_reuse"
|
|
|
|
|
|
class PeRelocEntry():
|
|
def __init__(self, rva: int, base_rva: int, type: str):
|
|
self.rva: int = rva
|
|
self.base_rva: int = base_rva
|
|
self.offset: int = rva - base_rva
|
|
self.type: str = type
|
|
|
|
|
|
def __str__(self):
|
|
return "PeRelocEntry: rva: 0x{:X} base_rva: 0x{:X} offset: 0x{:X} type: {}".format(
|
|
self.rva, self.base_rva, self.offset, self.type)
|
|
|
|
|
|
class IatEntry():
|
|
def __init__(self, dll_name: str, func_name: str, iat_vaddr: int):
|
|
self.dll_name: str = dll_name
|
|
self.func_name: str = func_name
|
|
self.iat_vaddr: int = iat_vaddr
|
|
|
|
def __str__(self):
|
|
return "IatEntry: dll_name: {} func_name: {} iat_vaddr: 0x{:X}".format(
|
|
self.dll_name, self.func_name, self.iat_vaddr) |