diff options
author | rain <rain@pingforagoodtime.com> | 2025-03-10 15:46:37 -0500 |
---|---|---|
committer | rain <rain@pingforagoodtime.com> | 2025-03-10 15:46:37 -0500 |
commit | 55d1066a6409b84b72ac655e5401c4e82442735b (patch) | |
tree | 0a5a6598c047db279102c64750f48fdcdc05067d | |
parent | 342a0d690dc6737313b7b82cb571395d48184d56 (diff) |
Changed to spacemain
-rw-r--r-- | Linux Commands.md | 82 |
1 files changed, 41 insertions, 41 deletions
diff --git a/Linux Commands.md b/Linux Commands.md index 04e8a24..5d6ff07 100644 --- a/Linux Commands.md +++ b/Linux Commands.md @@ -1,66 +1,66 @@ # Common Linux Commands ## ls -**Description:** List Files in a directory\ -**Example:** `ls MyDirectory/` +**Description:** List Files in a directory +**Example:** `ls MyDirectory/` ## cd -**Description:** Change directories\ -**Example:** `cd MyDirectory/` +**Description:** Change directories +**Example:** `cd MyDirectory/` ## . -**Description:** Refers to your current directory\ -**Example:** `ls ./` +**Description:** Refers to your current directory +**Example:** `ls ./` ## .. -**Description:** Refers to the parent directory of your current directory\ -**Example:** `cd ..` +**Description:** Refers to the parent directory of your current directory +**Example:** `cd ..` ## mv -**Description:** Move thing to a new location (Moves old file)\ -**Example:** `mv myFile.txt otherDirectory/newFileName.txt` +**Description:** Move thing to a new location (Moves old file) +**Example:** `mv myFile.txt otherDirectory/newFileName.txt` ## cp -**Description:** Copy to a new location (Keeps old file)\ -**Example:** `cp myFile.txt otherDirectory/newFileName.txt` +**Description:** Copy to a new location (Keeps old file) +**Example:** `cp myFile.txt otherDirectory/newFileName.txt` ## rm -**Description:** Delete a file (This is permanent, no recycling bin!)\ -**Example:** `rm myFile.txt` +**Description:** Delete a file (This is permanent, no recycling bin!) +**Example:** `rm myFile.txt` ## rmdir -**Description:** Delete an empty directory (This is permanent, no recycling bin!)\ -**Example:** `rmdir myDirectory` +**Description:** Delete an empty directory (This is permanent, no recycling bin!) +**Example:** `rmdir myDirectory` ## nano -**Description:** Open a file in a commandline text editor *(Editor can be closed with ctrl+x)*\ -**Example:** `nano myProgram.c` +**Description:** Open a file in a commandline text editor *(Editor can be closed with ctrl+x)* +**Example:** `nano myProgram.c` ## sudo -**Description:** Run with root permissions\ -**Example:** `sudo ./kali.sh ` +**Description:** Run with root permissions +**Example:** `sudo ./kali.sh ` # Other Linux Things ## Buffers -**Description:** Location to write / read in order to share information. There are three to know!\ -- 0: stdin: Input\ -- 1: stdout: Output \ -- 2: stderr: Errors Encountered\ +**Description:** Location to write / read in order to share information. There are three to know! +- 0: stdin: Input +- 1: stdout: Output +- 2: stderr: Errors Encountered ## *Piping* or | -**Description:** This allows the redirection of output to another program\ -**Example:** `cat myFile.txt | grep "Beans"` +**Description:** This allows the redirection of output to another program +**Example:** `cat myFile.txt | grep "Beans"` ## *Redirection* or < or > -**Description:** This allows the redirection of output or input to another program\ -**Example:** `echo "beans" > myFile.txt` +**Description:** This allows the redirection of output or input to another program +**Example:** `echo "beans" > myFile.txt` ## *Append* or >> -**Description:** Append output another file. This does not overwrite; it adds to the end of the file.\ -**Example:** `echo "beans" >> myFile.txt` +**Description:** Append output another file. This does not overwrite; it adds to the end of the file. +**Example:** `echo "beans" >> myFile.txt` ## nmap -**Description:** Network scaning tool\ +**Description:** Network scaning tool **Example:** ```bash # Default Scan @@ -87,19 +87,19 @@ nmap -oX outputXMLFile 127.0.0.1 nmap -oG outputGrepFile 127.0.0.1 nmap -oN outputNmapFile 127.0.0.1 ``` -\ -\ + + ## Metasploit -Start the database\ -`msfdb --init` +Start the database +`msfdb --init` ### Start the console -Start the tool\ -`msfconsole` +Start the tool +`msfconsole` ### Basic Usage -Search for exploit `search vsftpd` \ -Select a module `use module/path` or `use 0` \ -Select a display options `options` \ -Set an option `set RHOST 127.0.0.1` \ +Search for exploit `search vsftpd` +Select a module `use module/path` or `use 0` +Select a display options `options` +Set an option `set RHOST 127.0.0.1` |