목록리눅스 (15)
메-모해봅시다.

Level Goal The password for the next level is stored in the file data.txt, where all lowercase (a-z) and uppercase (A-Z) letters have been rotated by 13 positions Commands you may need to solve this level grep, sort, uniq, strings, base64, tr, tar, gzip, bzip2, xxd 목표 다음 단계로 가는 비밀번호는 data.txt 파일에 있으며 모든 문자는 13자리씩 서로 바뀌어 있습니다.(ROT13) 이 단계를 해결할 때 유용한 명령어 grep, sort, uniq, strings, base64, tr, tar,..

Level Goal The password for the next level is stored in the file data.txt, which contains base64 encoded data Commands you may need to solve this level grep, sort, uniq, strings, base64, tr, tar, gzip, bzip2, xxd 목표 다음 단계로 가는 비밀번호는 data.txt 파일에 base64로 인코딩 되어 있습니다. 이 단계를 해결할 때 유용한 명령어 grep, sort, uniq, strings, base64, tr, tar, gzip, bzip2, xxd -어떻게 풀까? 이번 단계 역시 우선 data.txt 파일을 먼저 확인해 보자. 이번 단계의..

Level Goal 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. 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, gzi..

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 -어떻게 풀까? 우선 data.txt파일을 확인하고 cat 명령어로 내용..

Level Goal The password for the next level is stored in the file data.txt next to the word millionth Commands you may need to solve this level grep, sort, uniq, strings, base64, tr, tar, gzip, bzip2, xxd 목표 다음 단계로 가는 비밀번호는 data.txt 파일에 millionth라는 단어 뒤에 있습니다. 이 단계를 해결할 때 유용한 명령어 grep, sort, uniq, strings, base64, tr, tar, gzip, bzip2, xxd -어떻게 풀까? 우선, 파일을 확인하고 바로 열어보자. 파일을 확인했으니 이제 cat 명령어로 열어보면..

Level Goal The password for the next level is stored somewhere on the server and has all of the following properties: owned by user bandit7 owned by group bandit6 33 bytes in size Commands you may need to solve this level ls, cd, cat, file, du, find, grep 목표 다음 단계로 가는 비밀번호는 서버 어딘가에 저장되었으며 다음 특성을 가집니다. 사용자명 - bandit7 소유 그룹명 - bandit6 33바이트 크기 이 단계를 해결할 때 유용한 명령어 ls, cd, cat, file, du, find, grep ..

Level Goal The password for the next level is stored in a file somewhere under the inhere directory and has all of the following properties: human-readable 1033 bytes in size not executable Commands you may need to solve this level ls, cd, cat, file, du, find 목표 다음 단계로 가는 비밀번호는 inhere 디렉토리 속에 다음 조건들을 만족하는 파일에 있습니다. 사람이 읽을 수 있다. 1033 바이트 크기이다. 실행이 불가능하다. -어떻게 풀까? 바로 inhere 디렉토리로 들어가서 내용을 확인해 본 결과..
- a : 디렉토리 내의 모든 파일 출력(숨겨진 파일 포함) - l : 파일에 대한 자세한 내용 출력(권한, 소유자, 그룹, 파일 크기, 수정 날짜, 파일 이름 등) - r : 거꾸로 출력 - s : KB 단위로 파일 크기를 출력 - S : 파일 크기 순으로 정렬하여 출력 - h : human. K, M, G를 사용하여 파일 크기를 사람이 보기 좋게 표시 - R : 하위 디렉토리의 내용을 포함하여 출력 출처: https://soulhack.tistory.com/92?category=674147 [Soulhack]