# Process monitoring

## ps

[ps(1) - Linux manual page](http://man7.org/linux/man-pages/man1/ps.1.html) - Report a snapshot of the current processes.

```bash
ps aux
```

## top

[top(1) - Linux manual page](http://man7.org/linux/man-pages/man1/top.1.html) - Display Linux tasks

```bash
top
```

## pspy

[GitHub - DominicBreuker/pspy](https://github.com/DominicBreuker/pspy) - Monitor linux processes without root permissions

```bash
pspy64
```

## psmonitor.sh

Monitor process changes

```bash
#!/bin/bash
IFS=$'\n'
op=$(ps -eo command)
while true; do
    np=$(ps -eo command)
    diff <(echo "$op") <(echo "np")
    sleep 1
    op=$np
done
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://d4rk1337.gitbook.io/the-pentesters-cheat-sheet/enumeration/06-process-monitoring.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
