Vasile Berinde

21 papers Misc 1Journal 20
YearRankTypeTitle / Venue / Authors
2026 J jnl
Axioms
Tanveer Hussain, Vasile Berinde, Abdul Rahim Khan
2026 J jnl
Commun. Nonlinear Sci. Numer. Simul.
Ahmad Abdulwahab, Poom Kumam, Vasile Berinde, Thidaporn Seangwattana
2025 J jnl
Axioms
Vasile Berinde, Khairul Saleh
2024 J jnl
Axioms
Vasile Berinde, Khairul Saleh
2024 J jnl
Comput. Appl. Math.
Habib Ur Rehman, Poom Kumam, Vasile Berinde, Wiyada Kumam
2023 J jnl
Symmetry
Vasile Berinde
2022 J jnl
Symmetry
Vasile Berinde
2021 J jnl
Symmetry
Vasile Berinde, Cristina Ticala
2021 J jnl
Symmetry
Mujahid Abbas, Rizwan Anjum, Vasile Berinde
2021 J jnl
Symmetry
Vasile Berinde, Madalina Pacurar
2021 J jnl
Symmetry
Vasile Berinde, Madalina Pacurar
2021 J jnl
J. Comput. Appl. Math.
Vasile Berinde, Madalina Pacurar
2021 J jnl
CoRR
Vasile Berinde, Madalina Pacurar
2020 J jnl
J. Supercomput.
Nuttapol Pakkaranang, Poom Kumam, Vasile Berinde, Yusuf I. Suleiman
2017 J jnl
J. Comput. Appl. Math.
Vasile Berinde, Madalina Pacurar
2014 J jnl
J. Appl. Math.
Marin Borcut, Madalina Pacurar, Vasile Berinde
2013 J jnl
J. Appl. Math.
Maryam A. Alghamdi, Vasile Berinde, Naseer Shahzad
2012 J jnl
Comput. Math. Appl.
Vasile Berinde
2012 J jnl
Appl. Math. Comput.
Marin Borcut, Vasile Berinde
2009 J jnl
Appl. Math. Comput.
Vasile Berinde
2007 Misc conf
SYNASC
Vasile Berinde, Madalina Pacurar
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