Han-Jin Cho

20 papers Misc 1Journal 15Unranked 4
YearRankTypeTitle / Venue / Authors
2023 J jnl
Pers. Ubiquitous Comput.
Hyochang Ahn, Han-Jin Cho
2022 J jnl
Pers. Ubiquitous Comput.
Hyochang Ahn, Han-Jin Cho
2019 J jnl
Clust. Comput.
Cheol-Joo Chae, Ki-Bong Kim, Han-Jin Cho
2019 J jnl
Wirel. Pers. Commun.
Hyochang Ahn, June-Hwan Lee, Han-Jin Cho
2018 J jnl
Peer-to-Peer Netw. Appl.
Cheol-Joo Chae, Han-Jin Cho
2017 conf
ISOCC
Hyoung-Ro Lee, Chi-ho Lin, Ki-Hyuk Park, Won-jong Kim, Han-Jin Cho
2017 J jnl
Wirel. Pers. Commun.
Cheol-Joo Chae, Han-Jin Cho
2016 J jnl
Wirel. Pers. Commun.
Kyuman Jeong, Han-Jin Cho
2016 J jnl
Clust. Comput.
Hyun Mi Jung, Ki-Bong Kim, Han-Jin Cho
2016 J jnl
Clust. Comput.
Kyuman Jeong, Han-Jin Cho
2015 J jnl
Clust. Comput.
Kyuman Jeong, Han-Jin Cho
2015 J jnl
J. Internet Serv. Inf. Secur.
Yong-Hwan Lee, Hyochang Ahn, Han-Jin Cho, June-Hwan Lee
2014 J jnl
J. Comput. Virol. Hacking Tech.
Hyochang Ahn, Yong-Hwan Lee, June-Hwan Lee, Han-Jin Cho
2014 J jnl
J. Syst. Inf. Technol.
Yong-Hwan Lee, Hyochang Ahn, Han-Jin Cho, June-Hwan Lee
2014 J jnl
IET Circuits Devices Syst.
Sigit Yuwono, Seok-Kyun Han, Giwan Yoon, Han-Jin Cho, Sang-Gug Lee
2014 conf
ICCAIS
Sangpil Kim, Hyong Sig Cho, Seunghwan Hong, Han-Jin Cho, Hong-Gyoo Sohn
2011 conf
ICITCS
Hyochang Ahn, Yong-Hwan Lee, Han-Jin Cho, Sang-Burm Rhee, June-Hwan Lee
2009 J jnl
J. Inform. and Commun. Convergence Engineering
Cheol-Joo Chae, Han-Jin Cho, Jae-Kwang Lee
2004 conf
ICCSA (1)
Bonghan Kim, Han-Jin Cho, Jae-Kwang Lee
1999 Misc conf
PDPTA
Jae-Woo Kim, Han-Jin Cho, Il-Sun Hwang, Sung-Yul Park, Jae-Kwang Lee
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