Wayne Wei Huang

17 papers C 2Journal 12Unranked 2
YearRankTypeTitle / Venue / Authors
2023 J jnl
IEEE Access
Yue Wu, Wayne Wei Huang, Lean Yu, Yingjie Tian
2021 J jnl
Inf. Manag.
Shan Liu, Wayne Wei Huang, Haibing Lu, Richard Watson
2020 J jnl
Ind. Manag. Data Syst.
Yujuan Zheng, Shan Liu, Wayne Wei Huang, James Jiunn-Yih Jiang
2020 J jnl
IEEE Trans. Engineering Management
James J. Jiang, Wayne Wei Huang, Gary Klein, Jacob Chia-An Tsai
2019 ed.
PACIS
Kwok Kee Wei, Wayne Wei Huang, Jae Kyu Lee, Dongming Xu, James J. Jiang, Hee-Woong Kim
2019 J jnl
Inf. Syst. Frontiers
Feng Xu, Xin (Robert) Luo, Hongyun Zhang, Shan Liu, Wayne Wei Huang
2017 J jnl
Eur. J. Oper. Res.
Shan Liu, Lin Wang, Wayne Wei Huang
2015 C conf
ICDS
Zhou Zhang, Yuewen Liu, Wei Ding, Wayne Wei Huang
2015 conf
ICSH
Qiaozhen Guo, Wayne Wei Huang, Kai Huang, Xiao Liu
2015 J jnl
Decis. Support Syst.
Zhou Zhang, Yuewen Liu, Wei Ding, Wayne Wei Huang, Qin Su, Ping Chen
2014 J jnl
Decis. Support Syst.
Na Yang, Xiuwu Liao, Wayne Wei Huang
2014 conf
ICDM Workshops
Bo Wang, Yong Shi, Wayne Wei Huang, Guanfeng Liu
2013 C conf
ICIS
Gregory S. Dawson, Yan Li, Hongyun Zhang, Wayne Wei Huang, Richard T. Watson
2009 J jnl
Inf. Manag.
Adela J. Chen, Shan L. Pan, Jinglong Zhang, Wayne Wei Huang, Simin Zhu
2009 J jnl
ACM Trans. Internet Techn.
Duanning Zhou, Wayne Wei Huang
2008 J jnl
Commun. ACM
Wayne Wei Huang, Jonathon Greene, John Day
2006 J jnl
Electron. Gov. an Int. J.
Lori Klamo, Wayne Wei Huang, K. L. Wang, Taowen Le
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