Level Goal
A program is running automatically at regular intervals from cron, the time-based job scheduler. Look in /etc/cron.d/ for the configuration and see what command is being executed.
시간 기반 작업 스케줄러인 cron에서 일정 간격으로 프로그램이 자동으로 실행됩니다. /etc/cron.d/에서 구성을 찾고 어떤 명령이 실행되고 있는지 확인하십시오.
Hint
1. cron
Write Up
더보기
나는 문제 설명을 읽고, crontab 명령어를 통해 작업 스케줄을 확인해보려고 했지만 권한이 없어서 불가능하였다.
cron 데몬의 디렉토리에 들어가서 확인해보니, bandit22의 cron 설정 파일이 보였다.
내용을 확인하니, 부팅 시 /usr/bin/cronjob_bandit22.sh 파일을 실행하는 것을 알 수 있었다.
한번 실행해보니, 임시 파일이 생성되는 것을 알 수 있었다.
임시 파일을 확인해본 결과, bandit22의 pw 같은 것이 있었다.
로그인을 시도하니, 성공하는 것으로 보아 bandit22의 pw가 확실하다.
bandit22 :: Yk7owGAcWjwMVRwrTesJEwB7WVOiILLI
'Wargame > OverTheWire' 카테고리의 다른 글
[OverTheWire System - Bandit] Level 23 >> Level 24 (0) | 2021.11.05 |
---|---|
[OverTheWire System - Bandit] Level 22 >> Level 23 (0) | 2021.11.05 |
[OverTheWire System - Bandit] Level 20 >> Level 21 (0) | 2021.11.04 |
[OverTheWire System - Bandit] Level 19 >> Level 20 (0) | 2021.11.01 |
[OverTheWire System - Bandit] Level 18 >> Level 19 (0) | 2021.11.01 |
Comment