Level10Level GoalThe password for the next level is stored in the file data.txt, which contains base64 encoded data.Solutionroot@0xCAB: /writeups/overthewire/bandit/level10/$ cat data.txt^1000 `VGhlIHBhc3N3b3JkIGlzIDZ6UGV6aUxkUjJSS05kTllGTmI2blZDS3pwaGxYSEJNCg==`$ base64 -d data.txt^1000 `The password is 6zPeziLdR2RKNdNYFNb6nVCKzphlXHBM`$Base 64 is a binary-to-text encodig scheme. The base64 utility is used for the encoding/decoding of data from the command line. The -d flag is telling the utility to decode the base64 encoded data in the data.txt file. See the base64 man page for further reading.