d4Rk's 1337 h4x0r guide
About me
Search
⌃
K
Links
Introduction
Reconnaissance
Recon
OSINT
Enumeration
Network discovery
Port scanning
Webserver scanning
Exploit detection
Fuzzing
Process monitoring
Exploitation
Shells
Passwords
Web
Buffer overflow
Misc
Privilege escalation
Linux
Windows
Post exploitation
Loot
Pivoting
Standalone Tools
Services
TCP
UDP
Misc
File transfer
Overview
Wget
Pure-FTPd
TFTP
VBScript: Wget clone
Misc
Bash
Burp Suite
Crypto
Ebowla
Firefox extensions
Impacket
Memory forensics
Metasploit Framework (MSF)
MITM
Msfvenom
Pass the Hash (PTH)
PowerShell
PowerShell on Linux
Wireshark
Wordlists and dictionaries
Bug Bounty
Platforms
Tools
Powered By
GitBook
Process monitoring
ps
ps(1) - Linux manual page
- Report a snapshot of the current processes.
ps
aux
top
top(1) - Linux manual page
- Display Linux tasks
top
pspy
GitHub - DominicBreuker/pspy
- Monitor linux processes without root permissions
pspy64
psmonitor.sh
Monitor process changes
#!/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
Enumeration - Previous
Fuzzing
Next - Exploitation
Shells
Last modified
1yr ago