반응형
SMALL
• 문제 4 -> 5
■ 풀이
- bandit4 로그인 후 ls 로 현재 디렉토리의 구성요소 확인
bandit4@bandit:~$ ls
inhere
- cd 명령어를 통해 inhere 디렉토리로 이동
- 그 후 ls 명렁어를 해보면 0 ~ 9 개의 파일 있음
bandit4@bandit:~$ cd inhere/
bandit4@bandit:~/inhere$ ls
-file00 -file01 -file02 -file03 -file04 -file05 -file06 -file07 -file08 -file09
bandit4@bandit:~/inhere$ ls -al
total 48
drwxr-xr-x 2 root root 4096 Sep 19 07:08 .
drwxr-xr-x 3 root root 4096 Sep 19 07:08 ..
-rw-r----- 1 bandit5 bandit4 33 Sep 19 07:08 -file00
-rw-r----- 1 bandit5 bandit4 33 Sep 19 07:08 -file01
-rw-r----- 1 bandit5 bandit4 33 Sep 19 07:08 -file02
-rw-r----- 1 bandit5 bandit4 33 Sep 19 07:08 -file03
-rw-r----- 1 bandit5 bandit4 33 Sep 19 07:08 -file04
-rw-r----- 1 bandit5 bandit4 33 Sep 19 07:08 -file05
-rw-r----- 1 bandit5 bandit4 33 Sep 19 07:08 -file06
-rw-r----- 1 bandit5 bandit4 33 Sep 19 07:08 -file07
-rw-r----- 1 bandit5 bandit4 33 Sep 19 07:08 -file08
-rw-r----- 1 bandit5 bandit4 33 Sep 19 07:08 -file09
- inhere 폴더에서 file ./* 명렁어 입력
- 유일한 아스키 텍스트 형식 파일 확인
- cat 으로 해당 파일 출력
bandit4@bandit:~/inhere$ file ./*
./-file00: data
./-file01: data
./-file02: data
./-file03: data
./-file04: data
./-file05: data
./-file06: data
./-file07: ASCII text
./-file08: data
./-file09: data
bandit4@bandit:~/inhere$ cat ./-file07
이하 정답
• 문제 5 -> 6
■ 풀이
- bandit5 로그인 후 cd 명령어로 inhere 폴더로 이동 ls 로 현재 디렉토리의 구성요소 확인
bandit5@bandit:~/inhere$ ls
maybehere00 maybehere02 maybehere04 maybehere06 maybehere08 maybehere10 maybehere12 maybehere14 maybehere16 maybehere18
maybehere01 maybehere03 maybehere05 maybehere07 maybehere09 maybehere11 maybehere13 maybehere15 maybehere17 maybehere19
- 현재 디렉토리에서 find 명령어를 통해 조건에 맞는 파일 검색
- . 을 통해 해당 디렉토리 모두 선택 및 fint -size 를 통해 1033c ( 1033 바이트 ) 인 조건의 파일 검새
bandit5@bandit:~/inhere$ find . -size 1033c
./maybehere07/.file2
- cat 으로 해당 파일 출력
bandit5@bandit:~/inhere$ cat ./maybehere07/.file2
이하 정답
LIST
'Programming > Cs' 카테고리의 다른 글
[ Hacking ] Nessusd 를 사용한 Os 취약점 스캔 (1) | 2024.12.05 |
---|---|
[ Cs ] 데이터의 역사와 현대 시대별 특징 (2) | 2024.11.25 |
[ linux ] overthewire bandit 0 ~ 3 문제 (2) | 2024.10.29 |
[ IDE ]Vscode Extension으로 폴더 및 파일 직관적인 아이콘으로 변경하기 (0) | 2024.09.13 |
[ Docker ] 로컬 도커이미지 가상우분투서버에서 실행하기 (2) | 2024.06.13 |