How to make the perfect TOR VM in VirtualBox
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12345678910111213141516 |
- #!/bin/bash
-
-
- systemctl stop rsyslog
-
- find /var/log -type f -print -delete
- #find /home/user -mindepth 1 -depth -print -delete
- find /root -mindepth 1 -depth -print -delete
-
- for user in /root /home/user
- do
- FILE=${user}/.bash_history
- echo "rm/ln/dev-null ${FILE}"
- rm -f ${FILE}
- ln -s /dev/null ${FILE}
- done
|