일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 클래스 관계
- status diagram
- 소프트웨어공학 디자인패턴
- strucuture charat
- 모듈구조도
- 암표거래
- Bandit
- 팬인과 팬아웃
- nc reverse shell
- prototypepattern 예시 example
- 상태다이어그램
- madia designer ui design
- fan-in fan-out
- cron
- factory metohd pattern
- 생성패턴 행위패턴 구조패턴
- 매크로를 바라보는 시각
- 디자인패턴
- 리버스쉘
- 객체 상속 속성 인스턴스 메소드 오퍼레이션
- base64
- usecase description
- telnet
- 구조적 설계
- ssh
- ui 디자인 기본원칙
- UseCase
- sofrware architeture
- bandit21
- gof design pattern
- Today
- Total
목록base64 (2)
2.log
✅ Level 10 : The password for the next level is stored in the file data.txt, which contains base64 encoded data 🖊︎ base64로 인코딩된 데이터 디코딩하기 base64로 인코딩 된 데이터를 다시 디코딩 해주면 될 듯 함 base64 디코딩 방법은 $ base64 -d [파일명] bandit+) 인코딩과 디코딩 / base64 에 대하여 / https://kimkmg.tistory.com/32 ✅ Level 11 : The password for the next level is stored in the file data.txt, where all lowercase (a-z) and uppercase (A-Z) let..
인코딩? 데이터 표준화, 처리 속도 향상, 공간 절약, 보안 등의 이유로 사람이 인지할 수 있는 문자(언어)를 약속된 규칙에 따라 컴퓨터가 이해하는 언어(0 과 1)로 바꾸는 것, 크게 1) 문자 인코딩 2) 사진&오디오&비디오 인코딩으로 나뉨 문자인코딩(Character Encoding) 문자를 바이트(bytes)로 변환 (컴퓨터는 오직 binary data 만 이해하기 때문) 1. HTML Encoding HTML 페이지를 올바르게 나타내기 위해 사용되는 인코딩 종류 (UTF-8 등) 2. URL Encoding 인터넷을 통해 전송될 수 있는 포맷으로 문자를 변환시키는 인코딩 방식으로, ASCII character-set을 사용해 인터넷으로 URL 보내는데 사용 됨 (ex. URLEncode() ) ..