
1. find / -name "password": Serch for the file name "password" in the entire file system.
2. grep -r "password" /: Serch for the character "password" in the entire file system.
3. ls -IR | grep "password": Displays a list of files in the current directory and subdirectories, filtering and outputting the string "password" from that list.
4. chmod -R 777 / | grep "password": Trying to change permissions for all files and directories while also finding lines containing the string "password".
'Wargame & CTF > RACCOON CITY' 카테고리의 다른 글
[RACCOON CITY] Operation RCity7 (0) | 2024.02.13 |
---|---|
[RACCOON CITY] Operation RCity6 (0) | 2024.02.09 |
[RACCOON CITY] Operation RCity5 (0) | 2024.02.09 |
[RACCOON CITY] Operation RCity4 (0) | 2024.02.08 |
[RACCOON CITY] Operation RCity3 (0) | 2024.02.08 |