Oh-Hun Kwon

12 papers A* 1B 4Journal 2Unranked 4
YearRankTypeTitle / Venue / Authors
2023 A* conf
NeurIPS
Julian Tanke, Oh-Hun Kwon, Felix B. Mueller, Andreas Doering, Jürgen Gall
2023 B conf
ICIP
Oh-Hun Kwon, Eduard Zell
2023 J jnl
CoRR
Oh-Hun Kwon, Eduard Zell
2020 conf
ACCV (2)
Oh-Hun Kwon, Julian Tanke, Juergen Gall
2019 J jnl
CoRR
Julian Tanke, Oh-Hun Kwon, Patrick Stotko, Radu Alexandru Rosu, Michael Weinmann, Hassan Errami, Sven Behnke, Maren Bennewitz, Reinhard Klein, Andreas Weber, Angela Yao, Juergen Gall
2015 B conf
RO-MAN
Chan-Soon Lim, Oh-Hun Kwon, Jeong-Yean Yang, Hyung-Soon Park, Dong-Soo Kwon
2014 conf
AIM
Oh-Hun Kwon, Jeong-Yean Yang, Chan-Soon Lim, Dong-Soo Kwon
2014 conf
URAI
Chan-Soon Lim, Jeong-Yean Yang, Oh-Hun Kwon, Dong-Soo Kwon
2013 B conf
RO-MAN
Oh-Hun Kwon, Jeong-Yean Yang, Dong-Soo Kwon
2013 ch.
Frontiers of Intelligent Autonomous Systems
Jeong-Yean Yang, Oh-Hun Kwon, Chan-Soon Lim, Dong-Soo Kwon
2012 conf
IAS (2)
Jeong-Yean Yang, Oh-Hun Kwon, Chan-Soon Lim, Dong-Soo Kwon
2011 B conf
RO-MAN
Oh-Hun Kwon, Hyunsoo Song, Dong-Soo Kwon
redb/extractors/decompiler/bninja/analysis/api.py
← Index redb/extractors/decompiler/bninja/analysis/api.py python
from enum import Enum


class ApiCategory(Enum):
    FILE_OP = [
        "CreateFile",
        "ReadFile",
        "WriteFile",
        "DeleteFile",
        "SetFilePointer",
        "CopyFile",
        "MoveFile",
        "FindFirstFile",
        "FindNextFile",
    ]
    MEMORY_OP = [
        "VirtualAlloc",
        "VirtualFree",
        "HeapAlloc",
        "HeapFree",
        "LocalAlloc",
        "GlobalAlloc",
        "MapViewOfFile",
        "VirtualProtect",
    ]
    NETWORK_OP = [
        "socket",
        "connect",
        "bind",
        "send",
        "recv",
        "WSAStartup",
        "InternetOpen",
        "InternetConnect",
        "HttpOpenRequest",
        "HttpSendRequest",
        "InternetReadFile",
        "URLDownloadToFile",
    ]
    REGISTRY_OP = [
        "RegOpenKey",
        "RegCreateKey",
        "RegSetValue",
        "RegQueryValue",
        "RegDeleteKey",
        "RegEnumKey",
        "RegFlushKey",
    ]
    PROCESS_OP = [
        "CreateProcess",
        "OpenProcess",
        "TerminateProcess",
        "GetProcessId",
        "CreateProcessAsUser",
        "NtCreateProcess",
    ]
    THREAD_OP = [
        "CreateThread",
        "SuspendThread",
        "ResumeThread",
        "CreateRemoteThread",
        "SetThreadContext",
        "GetThreadContext",
    ]
    INJECTION_OP = [
        "WriteProcessMemory",
        "VirtualAllocEx",
        "NtWriteVirtualMemory",
        "SetWindowsHookEx",
        "QueueUserAPC",
        "NtMapViewOfSection",
    ]
    EVASION_OP = [
        "IsDebuggerPresent",
        "CheckRemoteDebuggerPresent",
        "NtQueryInformationProcess",
        "GetTickCount",
        "OutputDebugString",
        "Sleep",
        "QueryPerformanceCounter",
    ]
    SPYING_OP = [
        "GetAsyncKeyState",
        "GetKeyboardState",
        "GetKeyState",
        "GetForegroundWindow",
        "SetWindowsHookEx",
        "BitBlt",
        "GetClipboardData",
    ]
    SYSTEM_OP = [
        "CreateToolhelp32Snapshot",
        "EnumDeviceDrivers",
        "EnumProcesses",
        "GetSystemDirectoryA",
        "GetLogicalDrives",
    ]
    SERVICE_OP = [
        "CreateServiceA",
        "OpenServiceA",
        "StartServiceA",
        "DeleteService",
        "OpenSCManagerA",
        "ControlService",
    ]
    CRYPTO_OP = [
        "CryptAcquireContext",
        "CryptGenKey",
        "CryptEncrypt",
        "CryptDecrypt",
        "CryptCreateHash",
        "CryptHashData",
        "CryptGenRandom",
    ]
    DLL_OP = ["LoadLibrary", "GetProcAddress", "FreeLibrary", "LdrLoadDll"]
    UNKNOWN_OP = []

    @classmethod
    def from_api(cls, api_name):
        for category in cls:
            if any(api_name.startswith(api) for api in category.value):
                return category
        return cls.UNKNOWN_OP