Fascination
article thumbnail
[Bandit] Level 0 → Level 1

[Bandit] Level 0 → Level 1 Bandit: https://overthewire.org/wargames/bandit/bandit1.html 1. Level Goal 다음 레벨의 password는 홈 디렉토리에 있는 readme라는 파일에 저장된다 ssh를 사용하여 bandit1에 로그인하려면 해당 password가 필요하다 각 level의 password를 찾을 때마다 ssh(port: 2220)을 사용하여 해당 레벨에 로그인하고 게임을 진행할 수 있다 2. Commands you may need to solve this level ls cd cat file du find 3. 개념 정리 및 풀이 방법 ls 명령어: list의 줄임말로 현재 위치나 특정 경로의 디렉토리 내용의 리스트를 ..

article thumbnail
[Linux] 파일 위치 검색
Study/Linux 2021. 10. 24. 15:36

# 파일 위치 검색 # find 경로 옵션 조건 action - 옵션 > -name > -user(소유자) > -newer(전, 후) > -perm(허가권) > -size(크기) - action > -print(기본 값) > -exe(외부 명령 실행) - 기본 사용 예 find /etc -name "*.conf" // '/etc' 디렉터리 하위에 확장명이 *.conf인 파일 검색 파일명에 공백이 있으면 " "로 묶어주는 것이 좋음 find /home -user centos // '/home' 디렉터리 하위에 소유자가 centos인 파일 검색 find ~ -perm 644 // 현재 사용자의 홈 디렉터리의 하위에 허가권이 644인 파일 검색 find /user/bin -size +10k -size -100..