• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Linux user monitoring

Look over their shoulder 😉

Look at this history file, look for a program called something like watch, and make sure you use tripwire.
 
A few things, first, run:

watch w

this will tell you what they are up to.

More tricky, find the pid of their original shell,

Now you can do:

cat /proc/<pid>/environ | perl-5.6 -e 'while(<>) { s/\00/\n/g; print $_ . "\n"}'
To see their environment as well as
ls -l /proc/<pid> to see what their CWD is, etc.

I should do a script for this ...


cl
 
Back
Top