Weifan Li

12 papers B 1C 1Journal 9Unranked 1
YearRankTypeTitle / Venue / Authors
2026 J jnl
IEEE Trans. Intell. Transp. Syst.
Binbin Zuo, Weifan Li, Jiankuo Zhao, Tianxiang Bai, Linqian Yang, Zhe Ma, Yuanheng Zhu
2024 J jnl
IEEE Trans. Neural Networks Learn. Syst.
Nannan Li, Yaran Chen, Weifan Li, Zixiang Ding, Dongbin Zhao, Shuai Nie
2024 J jnl
IEEE Trans. Instrum. Meas.
Qiaoqiao Fu, Pengxiang Liu, Wei Li, Feng Qi, Zibo Pang, Weifan Li, Yelong Wang, Zhaoyang Liu
2023 B conf
IJCNN
Weifan Li, Yuanheng Zhu, Dongbin Zhao
2023 J jnl
IEEE Trans. Cybern.
Yuanheng Zhu, Weifan Li, Mengchen Zhao, Jianye Hao, Dongbin Zhao
2023 C conf
CoG
Elvis S. Liu, Weifan Li, Yuan Zhou, Hugh Cao, Zhengwen Zeng
2023 J jnl
IEEE Trans. Neural Networks Learn. Syst.
Jiajun Chai, Weifan Li, Yuanheng Zhu, Dongbin Zhao, Zhe Ma, Kewu Sun, Jishiyu Ding
2022 J jnl
CoRR
Nannan Li, Yaran Chen, Weifan Li, Zixiang Ding, Dongbin Zhao
2022 J jnl
Complex Intell. Syst.
Weifan Li, Yuanheng Zhu, Dongbin Zhao
2022 J jnl
CoRR
Jiajun Chai, Weifan Li, Yuanheng Zhu, Dongbin Zhao, Zhe Ma, Kewu Sun, Jishiyu Ding
2019 conf
SSCI
Weifan Li, Yuanheng Zhu, Dongbin Zhao
2013 J jnl
Int. J. Appl. Evol. Comput.
Shujuan Guo, Sheng-Uei Guan, Weifan Li, Ka Lok Man, Fei Liu, A. K. Qin
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