반응형
반응형
🖐️ 문제 🖐️The password for the next level is stored in the file data.txt, which contains base64 encoded data다음 레벨의 비밀번호는 base64로 인코딩된 데이터가 포함된 data.txt 파일에 저장됩니다. hint commandsgrep, sort, uniq, strings, base64, tr, tar, gzip, bzip2, xxdgrep : 파일 내 특정 문자열 검색uniq : 중복된 내용 제거strings : 문자열만 추출하여 출력tr : 지정한 문자를 변환하거나 삭제tar : 여러 개의 파일을 하나의 파일로 묶거나 풀때 사용gzip : 압축base64 : 이진 데이터를 ASCII 영역의 문자들로만 이루어진 일련..
🖐️ 문제 🖐️The password for the next level is stored in the file data.txt in one of the few human-readable strings, preceded by several ‘=’ characters.다음 레벨의 비밀번호는 여러 개의 '=' 문자 앞에 사람이 읽을 수 있는 소수의 문자열 중 하나로 data.txt 파일에 저장된다 hint commandsgrep, sort, uniq, strings, base64, tr, tar, gzip, bzip2, xxdgrep : 파일 내 특정 문자열 검색uniq : 중복된 내용 제거strings : 문자열만 추출하여 출력tr : 지정한 문자를 변환하거나 삭제tar : 여러 개의 파일을 하나의 파일..
🖐️ 문제 🖐️The password for the next level is stored in the file data.txt and is the only line of text that occurs only once다음 레벨의 비밀번호는 data.txt 파일안에 들어있는데. 오직 한번만 발생되는 라인에 있는 듯 하다.중복되지 않는 줄을 찾으면 비밀번호를 찾을 수 있다. hint commandsgrep, sort, uniq, strings, base64, tr, tar, gzip, bzip2, xxdgrep : 파일 내 특정 문자열 검색uniq : 중복된 내용 제거strings : 문자열만 추출하여 출력tr : 지정한 문자를 변환하거나 삭제tar : 여러 개의 파일을 하나의 파일로 묶거나 풀때 사용g..
🖐️ 문제 🖐️The password for the next level is stored in the file data.txt next to the word millionth다음 레벨의 비밀번호는 data.txt 파일안에 들어있는데. millionth 단어 옆에 있다고 한다. 그러면 특정 문자열을 찾는 명령어를 사용하여 찾으면 쉽게 찾을 수 있을 것 같다. hint commandsman, grep, sort, uniq, strings, base64, tr, tar, gzip, bzip2, xxdgrep : 파일 내 특정 문자열 검색 ☀️해결☀️01 ls -l 명령어 사용 : 파일 확인👉 ls -l 명령어를 통해 현재 위치에 있는 data.txt 파일을 확인한다.bandit7@bandit:~$ ls ..
🖐️ 문제 🖐️The password for the next level is stored somewhere on the server and has all of the following properties:owned by user bandit7owned by group bandit633 bytes in size다음 레벨의 비밀번호는 inhere 서버 어딘가에 존재하는데 다음과 같은 속성을 가지고 있다 hint commandsls , cd , cat , file , du , find , grepfile : 파일 종류(type) 확인du(disk usage) : 파일, 디렉토리 용량 확인find : 파일 검색grep : 파일 내 특정 문자열 검색 명령어 뜻-name해당 이름의 파일을 찾음. 해당 이름에는 ..
🖐️ 문제 🖐️The password for the next level is stored in a file somewhere under the inhere directory and has all of the following properties:human-readable1033 bytes in sizenot executable다음 레벨의 비밀번호는 inhere 디렉토리 아래 파일 어딘가에 존재하는데 다음과 같은 속성을 가지고 있다그래서 사람만이 읽을 수 있으며 1033bytes의 사이즈이며 실행시킬 수 없는 파일을 찾아보면 된다. hint commandsls , cd , cat , file , du , findfile : 파일 종류(type) 확인du(disk usage) : 파일, 디렉토리 용량 확..