
소스코드 진단을 위해 GitLab Project를 Clone하기 위해 git 명령을 사용하려는데 오류가 발생했다. 이를 해결한 방법을 정리한다. Authentication Failed for 오류 git clone 명령으로 git 파일을 클론하려하는데 Authentication Failed for 오류가 발생 오류 해결 아래 명령어은 Credential 정보를 초기화하는 명령이다. Credential 정보를 초기화하여 인증을 다시 진행하는거로 확인된다. git config --local --unset credential.helper git config --global --unset credential.helper git config --system --unset credential.helper

Apache 사전설정 1) ./{Apache 디렉토리}/conf/httpd.conf 2) 파일 내 httpd-ssl.conf Include를 위해 주석(#)제거 http.conf //전 #Include conf/extra/httpd-ssl.conf //후 Include conf/extra/httpd-ssl.conf TLS 1.2 설정 적용 httpd-ssl.conf 파일을 vi로 오픈 후 SSLProtocol 라인의 주석을 제거해야한다. 참고로 -는 비활성화 +는 활성화로 보면된다. all은 모든 ssl 버전이다. /conf/extra/httpd-ssl.conf //전 #SSLProtocol all -SSLv2 -SSLv3 -TLSv1 -TLSv1.1 //후 SSLProtocol -all +TLSv1.2..

Fridump&Frida 설치 Frida 설치는 아래 링크 참고 [Frida] Frida 설치, 주의 사항, 오류 해결 방법 총 정리 프리다 설치 시 각종 오류가 났었고 이것을 정리하고자 긍을 작성한다. 작성 기준(설치 버전 방식 등)은 당시 상황에 맞춰 작성한다. 1. Window Python Install - 다운로드 페이지(https://www.python.org/downloa secuhh.tistory.com Fridump 설치 아래 링크 접속하여 frudymp3.py Download 진행 GitHub - rootbsd/fridump3: A universal memory dumper using Frida for Python 3 A universal memory dumper using Frida f..