Documentation Index
Fetch the complete documentation index at: https://mintlify.com/the-useless-one/pywerview/llms.txt
Use this file to discover all available pages before exploring further.
get-netprocess executes a SELECT * FROM Win32_Process WMI query against a target Windows host to retrieve a full list of all currently running processes. The output includes process name, process ID (PID), parent PID, the executable path, and the account under which the process is running. This is particularly valuable during lateral movement reconnaissance to identify security tooling (AV, EDR agents), interesting applications that may hold credentials in memory, and privileged processes whose owners you may want to impersonate or whose sessions you want to target. Local credentials can be used in place of domain credentials.
Flags
IP address or hostname of the target Windows host to query for running processes.
Name of the domain to authenticate with. Can be omitted when using local credentials.
Username for authentication. Accepts both domain accounts (
DOMAIN\user) and local accounts.Password associated with the specified username.
NTLM hashes for pass-the-hash authentication. Format:
[LMHASH:]NTHASH. The LM portion can be omitted or replaced with the empty LM hash.Use Kerberos authentication. Reads credentials from the ccache file pointed to by
KRB5CCNAME. Falls back to the provided username and password if no valid ticket is found.Logging verbosity sent to stderr. Choices:
CRITICAL (default), WARNING, DEBUG, ULTRA.Print results as JSON instead of the default human-readable format.