Situatie
Daca vrem sa stergem orice urma de logare pe un server cu linux si avem acces root, putem efectua comenziile de mai jos
Solutie
Ne autentificam cu userul de acces sau direct cu root (in functie de versiunea de linux, in cazul nostru, ubuntu server, poate necesita o comanda pentru a ne da drept de root pe user) si vom executa comanda sudo -i
Dupa ce am facut acest lucru efectuam urmatoarele comenzi
rm -rf .bash_history
rm -rf /var/run/utmp
rm -rf /var/run/wtmp –
rm -rf /var/log/lastlog
rm -rf /usr/adm/lastlog
rm -rf .bash_history
cd /var/log/
rm -rf wtmp
rm -rf secure
rm -rf lastlog
rm -rf messages
touch messagess
touch wtmp
touch secure
touch lastlog
cd /root
rm -rf .bash_history
touch .bash_history
Leave A Comment?