일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 클래스 관계
- 소프트웨어공학 디자인패턴
- 매크로를 바라보는 시각
- status diagram
- strucuture charat
- 팬인과 팬아웃
- nc reverse shell
- 암표거래
- prototypepattern 예시 example
- 상태다이어그램
- 모듈구조도
- usecase description
- 객체 상속 속성 인스턴스 메소드 오퍼레이션
- telnet
- cron
- ssh
- 생성패턴 행위패턴 구조패턴
- bandit21
- gof design pattern
- 구조적 설계
- base64
- sofrware architeture
- ui 디자인 기본원칙
- factory metohd pattern
- 디자인패턴
- fan-in fan-out
- madia designer ui design
- 리버스쉘
- UseCase
- Bandit
- Today
- Total
목록base64 (2)
2.log
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/bbjXei/btr5pbPxa6N/78JP3X8Ic21CKz0Hc7z9c0/img.png)
✅ 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..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/cMknEc/btr5nLqEPZi/IK5LRjybjEmWB4O9GWwR81/img.png)
인코딩? 데이터 표준화, 처리 속도 향상, 공간 절약, 보안 등의 이유로 사람이 인지할 수 있는 문자(언어)를 약속된 규칙에 따라 컴퓨터가 이해하는 언어(0 과 1)로 바꾸는 것, 크게 1) 문자 인코딩 2) 사진&오디오&비디오 인코딩으로 나뉨 문자인코딩(Character Encoding) 문자를 바이트(bytes)로 변환 (컴퓨터는 오직 binary data 만 이해하기 때문) 1. HTML Encoding HTML 페이지를 올바르게 나타내기 위해 사용되는 인코딩 종류 (UTF-8 등) 2. URL Encoding 인터넷을 통해 전송될 수 있는 포맷으로 문자를 변환시키는 인코딩 방식으로, ASCII character-set을 사용해 인터넷으로 URL 보내는데 사용 됨 (ex. URLEncode() ) ..