├── Access Control and Privileges ├── AdjustTokenPrivileges │ └── README.md ├── NtAdjustPrivilege │ ├── README.md │ └── STATUS_OBJECT_TYPE_MISMATCH (0xC0000024) │ │ └── README.md ├── README.md └── RtlAdjustPrivilege │ └── README.md ├── Component Object Model (COM) ├── ITaskService │ └── README.md └── README.md ├── Device Management ├── IOCTL_DISK_GET_DRIVE_GEOMETRY_EX │ └── README.md ├── IOCTL_DISK_GET_LENGTH_INFO │ └── README.md ├── IOCTL_DISK_IS_WRITABLE │ └── README.md ├── IOCTL_STORAGE_GET_DEVICE_NUMBER │ └── README.md └── README.md ├── Disk Management ├── GetDriveType │ └── README.md ├── GetLogicalDrives │ └── README.md └── README.md ├── File & IO └── README.md ├── Memory Management ├── README.md ├── VirtualAlloc │ └── README.md └── VirtualAllocEx │ └── README.md ├── Networking ├── IP Helper │ ├── GetAdaptersInfo │ │ └── README.md │ ├── GetIpNetTable │ │ └── README.md │ ├── ICMP Echo Request │ │ └── README.md │ ├── Network Connections of Processes │ │ └── README.md │ └── README.md ├── Internet Extension for Win32 │ ├── InternetConnect │ │ └── README.md │ ├── InternetReadFile │ │ └── README.md │ └── README.md ├── README.md ├── Windows HTTP Services │ ├── README.md │ └── WinHttpConnect │ │ └── README.md └── Windows Sockets │ ├── GetAddrInfo │ └── README.md │ ├── GetHostName │ └── README.md │ ├── Port Scanning │ └── README.md │ ├── README.md │ ├── connect │ └── README.md │ └── listen │ └── README.md ├── Others ├── CreateService │ └── README.md └── README.md ├── Process & Thread Management ├── CreateProcessAsUser │ └── README.md ├── CreateProcessInternal │ └── README.md ├── CreateProcessW │ └── README.md ├── CreateProcessWithLogonW │ └── README.md ├── CreateProcessWithTokenW │ └── README.md ├── Process Enumeration │ ├── CreateToolHelp32SnapShot │ │ └── README.md │ ├── NtQuerySystemInformation │ │ └── README.md │ ├── README.md │ ├── WTSEnumerateProcesses │ │ └── README.md │ └── Windows Management Instrumentation │ │ └── README.md ├── Process Termination │ ├── README.md │ ├── TerminateProcess │ │ └── README.md │ └── ZwTerminateProcess │ │ └── README.md ├── README.md ├── ShellExecute │ └── README.md ├── Suspending Process │ └── README.md ├── Threads │ ├── NtSetInformationThread │ │ └── README.md │ ├── README.md │ └── Suspending & Resuming Threads │ │ └── README.md └── Win32_Process.Create │ └── README.md ├── README.md ├── Registry └── README.md └── System Information ├── GetCommandLine └── README.md ├── GetComputerName └── README.md ├── GetNativeSystemInfo └── README.md ├── GetUserName └── README.md └── README.md /Access Control and Privileges/AdjustTokenPrivileges/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Access Control and Privileges/AdjustTokenPrivileges/README.md -------------------------------------------------------------------------------- /Access Control and Privileges/NtAdjustPrivilege/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Access Control and Privileges/NtAdjustPrivilege/README.md -------------------------------------------------------------------------------- /Access Control and Privileges/NtAdjustPrivilege/STATUS_OBJECT_TYPE_MISMATCH (0xC0000024)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Access Control and Privileges/NtAdjustPrivilege/STATUS_OBJECT_TYPE_MISMATCH (0xC0000024)/README.md -------------------------------------------------------------------------------- /Access Control and Privileges/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Access Control and Privileges/README.md -------------------------------------------------------------------------------- /Access Control and Privileges/RtlAdjustPrivilege/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Access Control and Privileges/RtlAdjustPrivilege/README.md -------------------------------------------------------------------------------- /Component Object Model (COM)/ITaskService/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Component Object Model (COM)/ITaskService/README.md -------------------------------------------------------------------------------- /Component Object Model (COM)/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Device Management/IOCTL_DISK_GET_DRIVE_GEOMETRY_EX/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Device Management/IOCTL_DISK_GET_DRIVE_GEOMETRY_EX/README.md -------------------------------------------------------------------------------- /Device Management/IOCTL_DISK_GET_LENGTH_INFO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Device Management/IOCTL_DISK_GET_LENGTH_INFO/README.md -------------------------------------------------------------------------------- /Device Management/IOCTL_DISK_IS_WRITABLE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Device Management/IOCTL_DISK_IS_WRITABLE/README.md -------------------------------------------------------------------------------- /Device Management/IOCTL_STORAGE_GET_DEVICE_NUMBER/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Device Management/IOCTL_STORAGE_GET_DEVICE_NUMBER/README.md -------------------------------------------------------------------------------- /Device Management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Device Management/README.md -------------------------------------------------------------------------------- /Disk Management/GetDriveType/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Disk Management/GetDriveType/README.md -------------------------------------------------------------------------------- /Disk Management/GetLogicalDrives/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Disk Management/GetLogicalDrives/README.md -------------------------------------------------------------------------------- /Disk Management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Disk Management/README.md -------------------------------------------------------------------------------- /File & IO/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Memory Management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Memory Management/README.md -------------------------------------------------------------------------------- /Memory Management/VirtualAlloc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Memory Management/VirtualAlloc/README.md -------------------------------------------------------------------------------- /Memory Management/VirtualAllocEx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Memory Management/VirtualAllocEx/README.md -------------------------------------------------------------------------------- /Networking/IP Helper/GetAdaptersInfo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Networking/IP Helper/GetAdaptersInfo/README.md -------------------------------------------------------------------------------- /Networking/IP Helper/GetIpNetTable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Networking/IP Helper/GetIpNetTable/README.md -------------------------------------------------------------------------------- /Networking/IP Helper/ICMP Echo Request/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Networking/IP Helper/ICMP Echo Request/README.md -------------------------------------------------------------------------------- /Networking/IP Helper/Network Connections of Processes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Networking/IP Helper/Network Connections of Processes/README.md -------------------------------------------------------------------------------- /Networking/IP Helper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Networking/IP Helper/README.md -------------------------------------------------------------------------------- /Networking/Internet Extension for Win32/InternetConnect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Networking/Internet Extension for Win32/InternetConnect/README.md -------------------------------------------------------------------------------- /Networking/Internet Extension for Win32/InternetReadFile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Networking/Internet Extension for Win32/InternetReadFile/README.md -------------------------------------------------------------------------------- /Networking/Internet Extension for Win32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Networking/Internet Extension for Win32/README.md -------------------------------------------------------------------------------- /Networking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Networking/README.md -------------------------------------------------------------------------------- /Networking/Windows HTTP Services/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Networking/Windows HTTP Services/README.md -------------------------------------------------------------------------------- /Networking/Windows HTTP Services/WinHttpConnect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Networking/Windows HTTP Services/WinHttpConnect/README.md -------------------------------------------------------------------------------- /Networking/Windows Sockets/GetAddrInfo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Networking/Windows Sockets/GetAddrInfo/README.md -------------------------------------------------------------------------------- /Networking/Windows Sockets/GetHostName/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Networking/Windows Sockets/GetHostName/README.md -------------------------------------------------------------------------------- /Networking/Windows Sockets/Port Scanning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Networking/Windows Sockets/Port Scanning/README.md -------------------------------------------------------------------------------- /Networking/Windows Sockets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Networking/Windows Sockets/README.md -------------------------------------------------------------------------------- /Networking/Windows Sockets/connect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Networking/Windows Sockets/connect/README.md -------------------------------------------------------------------------------- /Networking/Windows Sockets/listen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Networking/Windows Sockets/listen/README.md -------------------------------------------------------------------------------- /Others/CreateService/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Others/CreateService/README.md -------------------------------------------------------------------------------- /Others/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Process & Thread Management/CreateProcessAsUser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Process & Thread Management/CreateProcessAsUser/README.md -------------------------------------------------------------------------------- /Process & Thread Management/CreateProcessInternal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Process & Thread Management/CreateProcessInternal/README.md -------------------------------------------------------------------------------- /Process & Thread Management/CreateProcessW/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Process & Thread Management/CreateProcessW/README.md -------------------------------------------------------------------------------- /Process & Thread Management/CreateProcessWithLogonW/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Process & Thread Management/CreateProcessWithLogonW/README.md -------------------------------------------------------------------------------- /Process & Thread Management/CreateProcessWithTokenW/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Process & Thread Management/CreateProcessWithTokenW/README.md -------------------------------------------------------------------------------- /Process & Thread Management/Process Enumeration/CreateToolHelp32SnapShot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Process & Thread Management/Process Enumeration/CreateToolHelp32SnapShot/README.md -------------------------------------------------------------------------------- /Process & Thread Management/Process Enumeration/NtQuerySystemInformation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Process & Thread Management/Process Enumeration/NtQuerySystemInformation/README.md -------------------------------------------------------------------------------- /Process & Thread Management/Process Enumeration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Process & Thread Management/Process Enumeration/README.md -------------------------------------------------------------------------------- /Process & Thread Management/Process Enumeration/WTSEnumerateProcesses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Process & Thread Management/Process Enumeration/WTSEnumerateProcesses/README.md -------------------------------------------------------------------------------- /Process & Thread Management/Process Enumeration/Windows Management Instrumentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Process & Thread Management/Process Enumeration/Windows Management Instrumentation/README.md -------------------------------------------------------------------------------- /Process & Thread Management/Process Termination/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Process & Thread Management/Process Termination/README.md -------------------------------------------------------------------------------- /Process & Thread Management/Process Termination/TerminateProcess/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Process & Thread Management/Process Termination/TerminateProcess/README.md -------------------------------------------------------------------------------- /Process & Thread Management/Process Termination/ZwTerminateProcess/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Process & Thread Management/Process Termination/ZwTerminateProcess/README.md -------------------------------------------------------------------------------- /Process & Thread Management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Process & Thread Management/README.md -------------------------------------------------------------------------------- /Process & Thread Management/ShellExecute/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Process & Thread Management/ShellExecute/README.md -------------------------------------------------------------------------------- /Process & Thread Management/Suspending Process/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Process & Thread Management/Suspending Process/README.md -------------------------------------------------------------------------------- /Process & Thread Management/Threads/NtSetInformationThread/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Process & Thread Management/Threads/NtSetInformationThread/README.md -------------------------------------------------------------------------------- /Process & Thread Management/Threads/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Process & Thread Management/Threads/README.md -------------------------------------------------------------------------------- /Process & Thread Management/Threads/Suspending & Resuming Threads/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Process & Thread Management/Threads/Suspending & Resuming Threads/README.md -------------------------------------------------------------------------------- /Process & Thread Management/Win32_Process.Create/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Process & Thread Management/Win32_Process.Create/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/README.md -------------------------------------------------------------------------------- /Registry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/Registry/README.md -------------------------------------------------------------------------------- /System Information/GetCommandLine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/System Information/GetCommandLine/README.md -------------------------------------------------------------------------------- /System Information/GetComputerName/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/System Information/GetComputerName/README.md -------------------------------------------------------------------------------- /System Information/GetNativeSystemInfo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/System Information/GetNativeSystemInfo/README.md -------------------------------------------------------------------------------- /System Information/GetUserName/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/System Information/GetUserName/README.md -------------------------------------------------------------------------------- /System Information/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebugPrivilege/WindowsAP1/HEAD/System Information/README.md --------------------------------------------------------------------------------