일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Incognito
- xcz.kr
- 문자열
- CTF
- writeup
- 인코그니토
- Network
- Digital Forensics
- Web
- C
- 정렬
- 써니나타스
- SuNiNaTas
- 그리디 알고리즘
- 사칙연산
- misc
- HackCTF
- cryptography
- MySQL
- Database
- 수학
- 구현
- 백준
- Web Hacking
- Text
- Forensics
- php
- wargame
- Python
- N0Named
- Today
- Total
목록macOS/settings (3)
보안을 그리다, 훈이
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/wBVnA/btrmbkwmyEY/TuZvo84Go9SaW9ewvRaJhk/img.png)
Password crack tool인 John The Ripper를 macOS에서 사용할 일이 생겨 설치 및 설정을 여러번 해보았으나 zip2john을 사용하는데 있어 오류가 발생하여 시행착오를 줄이고자 설치 및 zip 파일 비밀번호 해제 방법을 공유한다. John The Ripper 설치 [john + zip2john] > git clone "https://github.com/magnumripper/JohnTheRipper.git" && cd JohnTheRipper/src && ./configure && sudo make -s clean && sudo make -sj4 https://www.openwall.com/john/ 에서도 본인 환경에 맞는 JTR을 직접 설치할 수 있다. John the Ri..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/b5El7u/btrjPP0bTpc/72SHJM92m6Qnfr2u8G8EKk/img.png)
Burp Suite Burp Suite는 대표적인 웹 프록시 툴이며, 이외에도 Fiddler, OWASP-ZAP, Acunetix 등이 있다. 서버와 클라이언트 간의 요청 및 응답 패킷을 Intercept 할 수 있어 웹 어플리케이션 테스트와 취약점 점검에 주로 사용된다. 설치 및 기본 설정 Burp Suite 공식 웹사이트에서 본인에게 맞는 버전을 선택하여 설치한다. Burp Suite - Application Security Testing Software Get Burp Suite. The class-leading vulnerability scanning, penetration testing, and web app security platform. Try for free today. portswigg..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/qEw2H/btrkxOmnRMf/KxGF7vbCjIzLTzmu2s23a0/img.png)
Fix zsh Parse error macOS를 통해 VScode로 작업하며 zsh을 연동하여 사용하고 있는데 아래와 같은 에러 문구가 등장했다. zsh: parse error near ')' CRLF error로 추정되는 이 현상을 해결하기 위해 TERMINAL에 다음과 같이 입력하니 정상적으로 작동했다. cd $ZSH git config core.autocrlf input git rm --cached -r . git reset --hard [관련 링크] Broken prompt after another oh-my-zsh upgrade · Issue #155 · agnoster/agnoster-zsh-theme After anothe oh-my-zsh upgrade my prompt is messed ..