OvertheWire:bandit:Level9

CTF수상까지...!!·2023년 11월 1일
0

OvertheWire:문제풀이

목록 보기
10/26

Level 9


문제

Level Goal

The password for the next level is stored in the file data.txt and is the only line of text that occurs only once

Commands you may need to solve this level

grep, sort, uniq, strings, base64, tr, tar, gzip, bzip2, xxd

문제풀이

data.txt 파일에 비밀번호가 저장되어 있으며, 한 줄이 한 번만 나타난다.!

grep, sort, uniq, strings, base64, tr, tar, gzip, bzip2, xxd 이런 걸 이용해서 풀 수 있다..

한 번만 나타나니까 sort data.txt | uniq -u 를 쓰면 될 것 같다.

sort = 파일의 행을 특정 기준에 따라 정렬하는데 사용된다.

uniq = 인접한 중복 행을 필터링하는데 사용됩니다.

(잘 안써서 까먹었었다….ㅎㅁㅎ 이 문제를 이렇게 해석을 하는구나….ㅎㅁㅎ)

sort data.txt | uniq -u

비밀번호 : EN632PlfYiZbn3PhVK3XOGSlNInNE00t

profile
보안 공부...내 공부...

0개의 댓글