Red Team Notes
Sorted Linux notes, need to separate to different pages and reorganize
Linux
Remote Code Execution
ssh <user>@<server> << HERE
<command1>
<command2>
HEREMisc Linux
ps -eo command`
#change delimiter to \n instead of <space> (loop by line):
IFS=$'\n'
#Then loop through each line in output:
for i in $(ps -eo command); do echo $i; doneCat file directly to clipboard
Check encoding of a text file
Last updated