Security Note
반응형
article thumbnail
서비스 통합 TLS 1.2 미만 사용 제한 설정
취약점 진단/기타 2022. 11. 10. 19:41

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..

article thumbnail
[Android] Frida를 이용한 android 앱 메모리 덤프

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..

article thumbnail
[Android] 취약점 점검 Drozer 설치 및 사용법 Github

설치 파일 다운로드 아래 2개 링크에서 파일을 다운로드를 진행한다. drozer-2.4.4.win32.msi Release 2.4.4 · WithSecureLabs/drozer [Build Process] AppVeyor updated to deploy Windows installer [Build Process] Fixed versioning of whl, deb and rpm packages [Bug Fixes] Several bug fixes github.com Drozer2.3.4.apk Drozer Comprehensive security and attack framework for Android. labs.withsecure.com 설치 진행 설치 전 주의사항은 Drozer가 Python2 기반..