need help please show each step very confused this is done through a command line, what additional info do you need?
Posted: Tue Jul 12, 2022 8:16 am
need help
please show each step
very confused
this is done through a command line, what additional info do you need?
Hack the Pi's terminal and learn basic cybersecurity skills through a Pac-Man themed treasure hunt. What you will make You will take the first steps towards being an awesome ethical hacker! This project will take you on a journey through your Pi's terminal and you'll learn to navigate the terminal and protect your computer against nasty attackers. During the treasure hunt, you will: • Be introduced to your mission: hack the terminal to find all the Pac-Man 'ghosts' Learn how to run a script to start the treasure hunt • Find the ghosts and then quarantine them by creating your own safe directory Learn more about malware by inspecting the ghost files and getting rid of them Collect enough treasure points to complete the treasure hunt Your mission • Blinky Inky For this project, you will be Pac-Man: However, instead of just being a hungry yellow circle, you are an ethical hacker and you must defend your computer from attackers! This is the situation: there is a huge problem with your computer system - it's being attacked by nasty viruses. These viruses are the Pac-Man ghosts: Clyde Funky Spooky raspberrypi:- 3 cd Music/ Sue Pinky Your goal is to catch and get rid of all of these ghosts! Once you have caught all the ghosts, you can go about collecting your treasure. To catch the ghosts, you will need to navigate the maze that is your computer by using the command line. So, to complete the treasure hunt you must: 1. Find the ghosts 2. Trap the ghosts 3. Collect your treasure
Step #1 - Start the treasure hunt To start the treasure hunt, you will need to download a file that will unleash the Pac-Man ghosts! Please note that you will not download real viruses by completing this step. The files you'll download are completely safe and cannot do any damage to your computer. a) At the shell prompt: wget -O- http://rpf.io/pacmanstart | bash Press the Enter key to run this line of code. You will see a lot of text appear in the terminal. This means it is downloading the files to start the treasure hunt. Note: the | bash command at the end tells bash to automatically run the file after it is downloaded. Using this command is generally not very secure, because it means the downloaded files will be run without you checking them first. However, here it is the easiest way to start the treasure hunt, and it also shows you how easy it is to download viruses. I Press Ctrl I to clear the terminal window. Or type clear Next you'll navigate the command line so you can start finding and catching the ghosts. Move around the Pi terminal In this step, you will get Pac-Man to navigate the PI's terminal, just like when Pac-Man moves around his maze. Commands you may use [don't remember? man, help, info] Is pwd tree mkdir rmdir. cp rm touch cat less File Edit Tabs Help pi@raspberrypi:- S cd history Up arrow 210 LT HIGH. 210
Step #2 - Catch and quarantine your first ghost In this step, you will create a quarantine directory to put your ghosts in. You will then catch all of the ghosts and stick them in this folder so that they stop ghosting around and harming your computer like viruses do. A quarantine folder isolates suspicious files so they cannot harm your computer. They are usually made automatically by antivirus software and have additional programming attached to them - you will simulate what it is like to create one. a) Make a directory called quarantine within your home directory Let's catch our first ghost! b) Navigate into the Documents directory. List all the files and directories in the Documents directory. Look at the directories. Do you see anything strange that looks like it should not be there? I c) Copy the ghost and put it in the quarantine folder d) Now remove the ghost by typing the command from the Documents directory Note: be careful with using rm-it deletes things from your computer permanently! There isn't an 'undelete' command, so once you delete something with rm, it's gone forever. This is why we copied the file into a new directory before removing it. Step #3 - Catch all the ghosts Tips: 1. Remember to copy the ghosts to the quarantine folder before removing them 2. Navigate to your quarantine folder to see how many ghosts you've caught 3. If you want to navigate into a directory with a name that has more than one word in it (for example My Movies), use a \ before each blank space in the name (cd My\ Movies) 4. There are seven ghosts in total- can you catch them all?
5. List the path where you found your ghosts: et Blinky Inky. Clyde. Cherry Pinky. Once you have caught as many ghosts as possible, collect your treasure in the next step! Step #4 - Find the treasure Now that you have found all the ghosts and put them in a safe folder so they cannot damage our computer, you will look inside the files to collect your treasure. Here is all the treasure you can collect and the points you get when you find the treasure: Treasure Points Points Strawberry 300 Peach 100 Apple 500 Spooky /home/pi/Documents 700 Funky Sue Treasure Grapes Galaxian Boss 2000 Bell 1000 Key 3000 5000
pieraspberrypits cd quarantine/ pieraspberrypi:-/quarantine S is spooky.txt pi@raspberrypi:-/quarantine jalaxian boss grapes Cherry 5 cat sp00ky.txt pieraspberrypi:-/quarantine 5 Navigate to your quarantine/ directory, and then list the contents of the directory to see all the ghosts you have caught. See what treasure you got from catching ghosts! Tally up your treasure. How many points did you get? What command can you use to see all the contents of the quarantine directory at once? Step #5-Challenge: get rid of the quarantine folder Now that you have finished finding all the ghosts, you must clear your computer of any harmful files. • Delete the whole quarantine folder without copying any of the files in it. . Check the folder has been deleted by listing the contents of your home directory
please show each step
very confused
this is done through a command line, what additional info do you need?
Hack the Pi's terminal and learn basic cybersecurity skills through a Pac-Man themed treasure hunt. What you will make You will take the first steps towards being an awesome ethical hacker! This project will take you on a journey through your Pi's terminal and you'll learn to navigate the terminal and protect your computer against nasty attackers. During the treasure hunt, you will: • Be introduced to your mission: hack the terminal to find all the Pac-Man 'ghosts' Learn how to run a script to start the treasure hunt • Find the ghosts and then quarantine them by creating your own safe directory Learn more about malware by inspecting the ghost files and getting rid of them Collect enough treasure points to complete the treasure hunt Your mission • Blinky Inky For this project, you will be Pac-Man: However, instead of just being a hungry yellow circle, you are an ethical hacker and you must defend your computer from attackers! This is the situation: there is a huge problem with your computer system - it's being attacked by nasty viruses. These viruses are the Pac-Man ghosts: Clyde Funky Spooky raspberrypi:- 3 cd Music/ Sue Pinky Your goal is to catch and get rid of all of these ghosts! Once you have caught all the ghosts, you can go about collecting your treasure. To catch the ghosts, you will need to navigate the maze that is your computer by using the command line. So, to complete the treasure hunt you must: 1. Find the ghosts 2. Trap the ghosts 3. Collect your treasure
Step #1 - Start the treasure hunt To start the treasure hunt, you will need to download a file that will unleash the Pac-Man ghosts! Please note that you will not download real viruses by completing this step. The files you'll download are completely safe and cannot do any damage to your computer. a) At the shell prompt: wget -O- http://rpf.io/pacmanstart | bash Press the Enter key to run this line of code. You will see a lot of text appear in the terminal. This means it is downloading the files to start the treasure hunt. Note: the | bash command at the end tells bash to automatically run the file after it is downloaded. Using this command is generally not very secure, because it means the downloaded files will be run without you checking them first. However, here it is the easiest way to start the treasure hunt, and it also shows you how easy it is to download viruses. I Press Ctrl I to clear the terminal window. Or type clear Next you'll navigate the command line so you can start finding and catching the ghosts. Move around the Pi terminal In this step, you will get Pac-Man to navigate the PI's terminal, just like when Pac-Man moves around his maze. Commands you may use [don't remember? man, help, info] Is pwd tree mkdir rmdir. cp rm touch cat less File Edit Tabs Help pi@raspberrypi:- S cd history Up arrow 210 LT HIGH. 210
Step #2 - Catch and quarantine your first ghost In this step, you will create a quarantine directory to put your ghosts in. You will then catch all of the ghosts and stick them in this folder so that they stop ghosting around and harming your computer like viruses do. A quarantine folder isolates suspicious files so they cannot harm your computer. They are usually made automatically by antivirus software and have additional programming attached to them - you will simulate what it is like to create one. a) Make a directory called quarantine within your home directory Let's catch our first ghost! b) Navigate into the Documents directory. List all the files and directories in the Documents directory. Look at the directories. Do you see anything strange that looks like it should not be there? I c) Copy the ghost and put it in the quarantine folder d) Now remove the ghost by typing the command from the Documents directory Note: be careful with using rm-it deletes things from your computer permanently! There isn't an 'undelete' command, so once you delete something with rm, it's gone forever. This is why we copied the file into a new directory before removing it. Step #3 - Catch all the ghosts Tips: 1. Remember to copy the ghosts to the quarantine folder before removing them 2. Navigate to your quarantine folder to see how many ghosts you've caught 3. If you want to navigate into a directory with a name that has more than one word in it (for example My Movies), use a \ before each blank space in the name (cd My\ Movies) 4. There are seven ghosts in total- can you catch them all?
5. List the path where you found your ghosts: et Blinky Inky. Clyde. Cherry Pinky. Once you have caught as many ghosts as possible, collect your treasure in the next step! Step #4 - Find the treasure Now that you have found all the ghosts and put them in a safe folder so they cannot damage our computer, you will look inside the files to collect your treasure. Here is all the treasure you can collect and the points you get when you find the treasure: Treasure Points Points Strawberry 300 Peach 100 Apple 500 Spooky /home/pi/Documents 700 Funky Sue Treasure Grapes Galaxian Boss 2000 Bell 1000 Key 3000 5000
pieraspberrypits cd quarantine/ pieraspberrypi:-/quarantine S is spooky.txt pi@raspberrypi:-/quarantine jalaxian boss grapes Cherry 5 cat sp00ky.txt pieraspberrypi:-/quarantine 5 Navigate to your quarantine/ directory, and then list the contents of the directory to see all the ghosts you have caught. See what treasure you got from catching ghosts! Tally up your treasure. How many points did you get? What command can you use to see all the contents of the quarantine directory at once? Step #5-Challenge: get rid of the quarantine folder Now that you have finished finding all the ghosts, you must clear your computer of any harmful files. • Delete the whole quarantine folder without copying any of the files in it. . Check the folder has been deleted by listing the contents of your home directory