-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
b0yd
committed
Mar 10, 2023
1 parent
da97bec
commit 7153a8b
Showing
4 changed files
with
260 additions
and
120 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
def ps(self, task_id): | ||
|
||
def get_user_id_map(): | ||
|
||
user_map = {} | ||
# get username from uid | ||
with open("/etc/passwd", "r") as f: | ||
passwd = f.readlines() | ||
|
||
for line in passwd: | ||
user_line_arr = line.split(":") | ||
username = user_line_arr[0].strip() | ||
uid = user_line_arr[2].strip() | ||
user_map[uid] = username | ||
|
||
return user_map | ||
|
||
processes = [] | ||
if os.name == 'posix': | ||
|
||
# Get the user map | ||
user_map = get_user_id_map() | ||
|
||
# get list of PIDs by performing a directory listing on /proc | ||
pids = [pid for pid in os.listdir("/proc") if pid.isdigit()] | ||
|
||
# loop through each PID and output information similar to ps command | ||
for pid in pids: | ||
# construct path to status file | ||
status_path = "/proc/%s/status" % str(pid) | ||
|
||
# read in the status file | ||
with open(status_path, "r") as f: | ||
status = f.readlines() | ||
|
||
# construct path to status file | ||
cmdline_path = "/proc/%s/cmdline" % str(pid) | ||
|
||
# read in the status file | ||
with open(cmdline_path, "r") as f: | ||
cmdline = f.read() | ||
cmd_arr = cmdline.split("\x00") | ||
cmdline = " ".join(cmd_arr) | ||
|
||
# extract relevant information from status file | ||
name = "" | ||
ppid = "" | ||
uid = "" | ||
username = "" | ||
|
||
for line in status: | ||
if line.startswith("Name:"): | ||
name = line.split()[1].strip() | ||
elif line.startswith("PPid:"): | ||
ppid = line.split()[1].strip() | ||
elif line.startswith("Uid:"): | ||
uid = line.split()[1].strip() | ||
|
||
# Map the uid to the username | ||
if uid in user_map: | ||
username = user_map[uid] | ||
|
||
process = {"process_id": pid, "parent_process_id": ppid, "user_id": username, "name": name, | ||
"bin_path": cmdline} | ||
|
||
processes.append(process) | ||
|
||
task = [task for task in self.taskings if task["task_id"] == task_id] | ||
task[0]["processes"] = processes | ||
return json.dumps({ "processes": processes }) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,124 +1,190 @@ | ||
def ps(self, task_id): | ||
import sys, os.path, ctypes, ctypes.wintypes, re | ||
from ctypes import create_unicode_buffer, GetLastError | ||
|
||
def _check_bool(result, func, args): | ||
if not result: | ||
raise ctypes.WinError(ctypes.get_last_error()) | ||
return args | ||
|
||
PULONG = ctypes.POINTER(ctypes.wintypes.ULONG) | ||
ULONG_PTR = ctypes.wintypes.LPVOID | ||
SIZE_T = ctypes.c_size_t | ||
NTSTATUS = ctypes.wintypes.LONG | ||
PVOID = ctypes.wintypes.LPVOID | ||
PROCESSINFOCLASS = ctypes.wintypes.ULONG | ||
|
||
Psapi = ctypes.WinDLL('Psapi.dll') | ||
EnumProcesses = Psapi.EnumProcesses | ||
EnumProcesses.restype = ctypes.wintypes.BOOL | ||
GetProcessImageFileName = Psapi.GetProcessImageFileNameA | ||
GetProcessImageFileName.restype = ctypes.wintypes.DWORD | ||
|
||
Kernel32 = ctypes.WinDLL('kernel32.dll') | ||
OpenProcess = Kernel32.OpenProcess | ||
OpenProcess.restype = ctypes.wintypes.HANDLE | ||
CloseHandle = Kernel32.CloseHandle | ||
CloseHandle.errcheck = _check_bool | ||
IsWow64Process = Kernel32.IsWow64Process | ||
|
||
WIN32_PROCESS_TIMES_TICKS_PER_SECOND = 1e7 | ||
|
||
MAX_PATH = 260 | ||
PROCESS_TERMINATE = 0x0001 | ||
PROCESS_QUERY_INFORMATION = 0x0400 | ||
|
||
TOKEN_QUERY = 0x0008 | ||
TOKEN_READ = 0x00020008 | ||
TOKEN_IMPERSONATE = 0x00000004 | ||
TOKEN_QUERY_SOURCE = 0x0010 | ||
TOKEN_DUPLICATE = 0x0002 | ||
TOKEN_ASSIGN_PRIMARY = 0x0001 | ||
|
||
ProcessBasicInformation = 0 | ||
ProcessDebugPort = 7 | ||
ProcessWow64Information = 26 | ||
ProcessImageFileName = 27 | ||
ProcessBreakOnTermination = 29 | ||
|
||
STATUS_UNSUCCESSFUL = NTSTATUS(0xC0000001) | ||
STATUS_INFO_LENGTH_MISMATCH = NTSTATUS(0xC0000004).value | ||
STATUS_INVALID_HANDLE = NTSTATUS(0xC0000008).value | ||
STATUS_OBJECT_TYPE_MISMATCH = NTSTATUS(0xC0000024).value | ||
|
||
def query_dos_device(drive_letter): | ||
chars = 1024 | ||
drive_letter = drive_letter | ||
p = create_unicode_buffer(chars) | ||
if 0 == Kernel32.QueryDosDeviceW(drive_letter, p, chars): | ||
pass | ||
return p.value | ||
|
||
def create_drive_mapping(): | ||
mappings = {} | ||
for letter in (chr(l) for l in range(ord('C'), ord('Z')+1)): | ||
try: | ||
letter = u'%s:' % letter | ||
mapped = query_dos_device(letter) | ||
mappings[mapped] = letter | ||
except WindowsError: pass | ||
return mappings | ||
|
||
mappings = create_drive_mapping() | ||
|
||
def normalise_binpath(path): | ||
match = re.match(r'(^\\Device\\[a-zA-Z0-9]+)(\\.*)?$', path) | ||
if not match: | ||
return f"Cannot convert {path} into a Win32 compatible path" | ||
if not match.group(1) in mappings: | ||
return None | ||
drive = mappings[match.group(1)] | ||
if not drive or not match.group(2): | ||
return drive | ||
return drive + match.group(2) | ||
|
||
import os | ||
processes = [] | ||
|
||
count = 32 | ||
while True: | ||
ProcessIds = (ctypes.wintypes.DWORD*count)() | ||
cb = ctypes.sizeof(ProcessIds) | ||
BytesReturned = ctypes.wintypes.DWORD() | ||
if EnumProcesses(ctypes.byref(ProcessIds), cb, ctypes.byref(BytesReturned)): | ||
if BytesReturned.value<cb: | ||
break | ||
if os.name == 'posix': | ||
|
||
def get_user_id_map(): | ||
|
||
user_map = {} | ||
# get username from uid | ||
with open("/etc/passwd", "r") as f: | ||
passwd = f.readlines() | ||
|
||
for line in passwd: | ||
user_line_arr = line.split(":") | ||
username = user_line_arr[0].strip() | ||
uid = user_line_arr[2].strip() | ||
user_map[uid] = username | ||
|
||
return user_map | ||
|
||
# Get the user map | ||
user_map = get_user_id_map() | ||
|
||
# get list of PIDs by performing a directory listing on /proc | ||
pids = [pid for pid in os.listdir("/proc") if pid.isdigit()] | ||
|
||
# loop through each PID and output information similar to ps command | ||
for pid in pids: | ||
# construct path to status file | ||
status_path = "/proc/%s/status" % str(pid) | ||
|
||
# read in the status file | ||
with open(status_path, "r") as f: | ||
status = f.readlines() | ||
|
||
# construct path to status file | ||
cmdline_path = "/proc/%s/cmdline" % str(pid) | ||
|
||
# read in the status file | ||
with open(cmdline_path, "r") as f: | ||
cmdline = f.read() | ||
cmd_arr = cmdline.split("\x00") | ||
cmdline = " ".join(cmd_arr) | ||
|
||
# extract relevant information from status file | ||
name = "" | ||
ppid = "" | ||
uid = "" | ||
username = "" | ||
|
||
for line in status: | ||
if line.startswith("Name:"): | ||
name = line.split()[1].strip() | ||
elif line.startswith("PPid:"): | ||
ppid = line.split()[1].strip() | ||
elif line.startswith("Uid:"): | ||
uid = line.split()[1].strip() | ||
|
||
# Map the uid to the username | ||
if uid in user_map: | ||
username = user_map[uid] | ||
|
||
process = {"process_id": pid, "parent_process_id": ppid, "user_id": username, "name": name, | ||
"bin_path": cmdline} | ||
|
||
processes.append(process) | ||
|
||
elif os.name == 'nt': | ||
|
||
import sys, os.path, ctypes, ctypes.wintypes, re | ||
from ctypes import create_unicode_buffer, GetLastError | ||
|
||
def _check_bool(result, func, args): | ||
if not result: | ||
raise ctypes.WinError(ctypes.get_last_error()) | ||
return args | ||
|
||
PULONG = ctypes.POINTER(ctypes.wintypes.ULONG) | ||
ULONG_PTR = ctypes.wintypes.LPVOID | ||
SIZE_T = ctypes.c_size_t | ||
NTSTATUS = ctypes.wintypes.LONG | ||
PVOID = ctypes.wintypes.LPVOID | ||
PROCESSINFOCLASS = ctypes.wintypes.ULONG | ||
|
||
Psapi = ctypes.WinDLL('Psapi.dll') | ||
EnumProcesses = Psapi.EnumProcesses | ||
EnumProcesses.restype = ctypes.wintypes.BOOL | ||
GetProcessImageFileName = Psapi.GetProcessImageFileNameA | ||
GetProcessImageFileName.restype = ctypes.wintypes.DWORD | ||
|
||
Kernel32 = ctypes.WinDLL('kernel32.dll') | ||
OpenProcess = Kernel32.OpenProcess | ||
OpenProcess.restype = ctypes.wintypes.HANDLE | ||
CloseHandle = Kernel32.CloseHandle | ||
CloseHandle.errcheck = _check_bool | ||
IsWow64Process = Kernel32.IsWow64Process | ||
|
||
WIN32_PROCESS_TIMES_TICKS_PER_SECOND = 1e7 | ||
|
||
MAX_PATH = 260 | ||
PROCESS_TERMINATE = 0x0001 | ||
PROCESS_QUERY_INFORMATION = 0x0400 | ||
|
||
TOKEN_QUERY = 0x0008 | ||
TOKEN_READ = 0x00020008 | ||
TOKEN_IMPERSONATE = 0x00000004 | ||
TOKEN_QUERY_SOURCE = 0x0010 | ||
TOKEN_DUPLICATE = 0x0002 | ||
TOKEN_ASSIGN_PRIMARY = 0x0001 | ||
|
||
ProcessBasicInformation = 0 | ||
ProcessDebugPort = 7 | ||
ProcessWow64Information = 26 | ||
ProcessImageFileName = 27 | ||
ProcessBreakOnTermination = 29 | ||
|
||
STATUS_UNSUCCESSFUL = NTSTATUS(0xC0000001) | ||
STATUS_INFO_LENGTH_MISMATCH = NTSTATUS(0xC0000004).value | ||
STATUS_INVALID_HANDLE = NTSTATUS(0xC0000008).value | ||
STATUS_OBJECT_TYPE_MISMATCH = NTSTATUS(0xC0000024).value | ||
|
||
def query_dos_device(drive_letter): | ||
chars = 1024 | ||
drive_letter = drive_letter | ||
p = create_unicode_buffer(chars) | ||
if 0 == Kernel32.QueryDosDeviceW(drive_letter, p, chars): | ||
pass | ||
return p.value | ||
|
||
def create_drive_mapping(): | ||
mappings = {} | ||
for letter in (chr(l) for l in range(ord('C'), ord('Z') + 1)): | ||
try: | ||
letter = u'%s:' % letter | ||
mapped = query_dos_device(letter) | ||
mappings[mapped] = letter | ||
except WindowsError: | ||
pass | ||
return mappings | ||
|
||
mappings = create_drive_mapping() | ||
def normalise_binpath(path): | ||
match = re.match(r'(^\\Device\\[a-zA-Z0-9]+)(\\.*)?$', path) | ||
if not match: | ||
return f"Cannot convert {path} into a Win32 compatible path" | ||
if not match.group(1) in mappings: | ||
return None | ||
drive = mappings[match.group(1)] | ||
if not drive or not match.group(2): | ||
return drive | ||
return drive + match.group(2) | ||
|
||
count = 32 | ||
while True: | ||
ProcessIds = (ctypes.wintypes.DWORD*count)() | ||
cb = ctypes.sizeof(ProcessIds) | ||
BytesReturned = ctypes.wintypes.DWORD() | ||
if EnumProcesses(ctypes.byref(ProcessIds), cb, ctypes.byref(BytesReturned)): | ||
if BytesReturned.value<cb: | ||
break | ||
else: | ||
count *= 2 | ||
else: | ||
count *= 2 | ||
else: | ||
sys.exit("Call to EnumProcesses failed") | ||
|
||
for index in range(int(BytesReturned.value / ctypes.sizeof(ctypes.wintypes.DWORD))): | ||
process = {} | ||
process["process_id"] = ProcessId = ProcessIds[index] | ||
if ProcessId == 0: continue | ||
|
||
hProcess = OpenProcess(PROCESS_QUERY_INFORMATION, False, ProcessId) | ||
if hProcess: | ||
ImageFileName = (ctypes.c_char*MAX_PATH)() | ||
Is64Bit = ctypes.c_int32() | ||
IsWow64Process(hProcess, ctypes.byref(Is64Bit)) | ||
arch = "x86" if Is64Bit.value else "x64" | ||
process["architecture"] = arch | ||
|
||
|
||
if GetProcessImageFileName(hProcess, ImageFileName, MAX_PATH)>0: | ||
filename = os.path.basename(ImageFileName.value) | ||
process["name"] = filename.decode() | ||
process["bin_path"] = normalise_binpath(ImageFileName.value.decode()) | ||
|
||
CloseHandle(hProcess) | ||
processes.append(process) | ||
sys.exit("Call to EnumProcesses failed") | ||
|
||
for index in range(int(BytesReturned.value / ctypes.sizeof(ctypes.wintypes.DWORD))): | ||
process = {} | ||
process["process_id"] = ProcessId = ProcessIds[index] | ||
if ProcessId == 0: continue | ||
|
||
hProcess = OpenProcess(PROCESS_QUERY_INFORMATION, False, ProcessId) | ||
if hProcess: | ||
ImageFileName = (ctypes.c_char*MAX_PATH)() | ||
Is64Bit = ctypes.c_int32() | ||
IsWow64Process(hProcess, ctypes.byref(Is64Bit)) | ||
arch = "x86" if Is64Bit.value else "x64" | ||
process["architecture"] = arch | ||
|
||
|
||
if GetProcessImageFileName(hProcess, ImageFileName, MAX_PATH)>0: | ||
filename = os.path.basename(ImageFileName.value) | ||
process["name"] = filename.decode() | ||
process["bin_path"] = normalise_binpath(ImageFileName.value.decode()) | ||
|
||
CloseHandle(hProcess) | ||
processes.append(process) | ||
|
||
task = [task for task in self.taskings if task["task_id"] == task_id] | ||
task[0]["processes"] = processes | ||
return { "processes": processes } | ||
return json.dumps({ "processes": processes }) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.