Clear Your Tracks!!!


SUBMITTED BY: DevilDawg

DATE: Aug. 14, 2021, 8:26 a.m.

FORMAT: Text only

SIZE: 1.8 kB

HITS: 763

  1. The biggest mistake made by hackers that get caught was not covering their tracks. They were caught because of leaving digital footprints or their malware they used to establish a foothold. Tke the time to look everything over and make sure you clean up or end up in prison.
  2. If you are the attacker, you first have to clear the logs, modify your registry or clear the registry and remove any files or commands that you have been using 'Clear your tracks' is really underestimated in my opinion.
  3. Type cd/var/log
  4. There you can see many logs that you are using.
  5. Clear your Tracks with Shred
  6. Command's-(Tap to copy command's):-
  7. shred -h
  8. man shred
  9. shred -zxuvf (Name of your file)
  10. The command to use for this:-
  11. -z, --zero add a final overwrite with zeros to hide shredding
  12. -x, --exact do not round file sizes up to the next full block; this is the default for non-regular files
  13. -u deallocate and remove file after overwriting
  14. -v, --verbose show progress
  15. -n, --iterations=N overwrite N times instead of the default (3)
  16. Delete the history and clear your logs:-
  17. cat ~/.bash_history
  18. ~/.bash_history
  19. ~/.bash_history
  20. Delete your command history:-
  21. echo $HISTFILE
  22. echo $HISTSIZE
  23. export HISTSIZE=0 ( you can set your file size like this to zero,to avoid storing commands)
  24. Automate the Clearning of any file:-
  25. sudo crontab -e
  26. 00 23 * * * shed~/dev/null > ~/.bash_history && cat /dev/null > .bash_hystory
  27. Secure delete:-
  28. 📌Srm
  29. 📌smem
  30. 📌sfill
  31. 📌sswap
  32. sudo apt install secure-delete
  33. Install wipe:-
  34. sudo apt install wipe
  35. man wipe
  36. wipe -h
  37. sudo wipe filename( delete by filename)
  38. Remove any dictionary:-
  39. sudo wipe -r directory name
  40. Check for hidden files:-
  41. ls -altr
  42. sudo lsof | grep .log
  43. sudo find / -cmin 0 -print

comments powered by Disqus