๐ฎCase 1: Exposed Files
In the movies, you might often see "hackers" pounding away at a keyboard on a complicated-looking terminal... Learn about what they actually do and how to navigate a command line!
Tips and Tricks:
Basic Commands
ls
# Lists files
ls -a
# Lists HIDDEN files
cd ./folder
# Go into the folder called "folder"
cd ..
# Goes BACK a directory
cat hello.txt
# Prints out contents of "hello.txt"Finding Specific Phrases
grep "what you are looking for" *
# search in all files in current directory
grep -i "what you are looking for" *
# search in entire directory (not case sensitive)
grep -r "what you are looking for" *
# search in entire directory (go through each folder as well) ashLevel 1
Level 2
Last updated