Report files opened while executing a command
Project description
pystrace
Python library and command line tool for collecting strace events
Purpose
This library works as wrapper for strace generating syscall events, this events can be used by applications for system calls activity analisys.
In order to handle long executions without generating massive aummounts of logs, the library creates a named FIFO and an extra process where the strace is executed outputing to the FIFO. The main process consumes all the data and generates the corresponding events.
Install
pip3 install --user pystrace
How to use (Lib)
from pystrace import Tracer
def on_event(event):
print(event)
my_tracer = Tracer(["id"], on_event, filter_syscalls="file", filter_return="successful")
my_tracer.run()
How to use (command ine tool)
pystrace -- command
Example:
# Trace only file related syscalls with successful result
pystrace -s file -r successful -- who
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pystrace-0.0.2.tar.gz
(11.5 kB
view hashes)
Built Distribution
Close
Hashes for pystrace-0.0.2-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c87560f8a22ea36acb2e0c98aeb92deb8bfedb62f1e59413927e75af1a05c8b3 |
|
MD5 | ac9195cfde27faa1103d2ea8e9990367 |
|
BLAKE2b-256 | a1dde4b893424909f333a96a60cb31678c8fadbe38a495246cbe322df5e35a98 |