일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- javascript
- 코딩테스트
- js
- 백준
- mutation
- 프로그래머스
- 자바스크립트의 역사
- 카카오
- REST API
- typescript
- 코딩태스트
- RestAPI
- JavaStritp
- node
- graphql
- tr명령어
- 자바스크립트
- 실패율
- 피보나치 수
- Query
- typeorm
- html
- kakao
- linux
- 모던 자바스크립트
- ROT13
- Bandit
- await
- vanila js
- nestjs
- Today
- Total
목록linux (5)
꿀 떨어지는 코딩 양봉장
Level Goal The password for the next level can be retrieved by submitting the password of the current level to port 30001 on localhost using SSL encryption. Helpful note: Getting “HEARTBEATING” and “Read R BLOCK”? Use -ign_eof and read the “CONNECTED COMMANDS” section in the manpage. Next to ‘R’ and ‘Q’, the ‘B’ command also works in this version of that command… 다음 레벨의 비밀번호는 SSL 암호화를 사용하여 local..
Level Goal The password for the next level can be retrieved by submitting the password of the current level to port 30000 on localhost. 다음 레벨의 비밀번호는 현재 레벨의 비밀번호를 localhost의 포트 30000에 제출하여 검색할 수 있습니다. nc명령어를 사용해서 문제를 풀어보겠습니다. nc명령어 TCP 또는 UDP 프로토콜을 사용하는 네트워크 환경에서 데이터를 읽고 쓰는 간단한 프로그램. 일반적으로 상대 서버의 포트가 열렸는지 확인하거나, 직접 서버가 되어 원격 서버에서(클라이언트) 접속이 가능한지 확인하는 용도. 일반적으로 UNIX의 cat과 비슷한 사용법을 가지고 있지만 cat이 파일에..
Level Goal The password for the next level is stored in /etc/bandit_pass/bandit14 and can only be read by user bandit14 . For this level, you don’t get the next password, but you get a private SSH key that can be used to log into the next level. Note:localhost is a hostname that refers to the machine you are working on 다음 레벨의 비밀번호는 /etc/bandit_pass/bandit14에 저장되어 있으며 bandit14 사용자만 읽을 수 있습니다. 다음 ..
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 암호는 data.txt 파일 안에 저장되어있습니다. 요기서 모든 소문자(a-z)및 대문자(A-Z)가 13자리 회전되어있습니다. 풀이 알파벳이 13자리 회전되는 것을 "ROT13"암호라고 합니다. ROT13 ROT13은 단순한 카이사르 암호(간단한 치환 암호)의 일종으로 알파벳을 13자리씩 밀어서 만든다고 합니다. ROT13으로 인코딩 된 문장을 다시 디코딩해보겠습니다. tr이라는 명령어를 사용해보겠습니다. tr명령어 ..
Level Goal The password for the next level is stored in the file data.txt, which contains base64 encoded data base64로 인코딩 된 data.txt 파일 안에 비밀번호가 있을 것입니다. 풀이 base64로 인코딩된 파일을 다시 디코딩하는 방법을 찾아봤습니다. cat data.txt VGhlIHBhc3N3b3JkIGlzIElGdWt3S0dzRlc4TU9xM0lSRnFyeEUxaHhUTkViVVBSCg== data.txt 파일을 읽으면 base64로 인코딩 된 파일이 읽힙니다. base64로 인코딩된 파일을 다시 디코딩해보겠습니다. base64 -di data.txt The password is IFukwKGsFW8MO..