The password for the next level is stored in the file data.txt in one of the few human-readable strings, beginning with several ‘=’ characters.
解密
bandit9@bandit:~$ strings data.txt | grep -e '^='
========== password
========== isa
=FQ?P\U
= F[
=)$=
========== truKLdjsbJ5g7yyJ2X2R0o3a5HQJFuLk
知识点
-
strings
读取文件中可打印内容 -
grep -e
正则方式匹配,^=
正则表达表示=
开头